I have a JBoss application server running serving up the Novell User Application for Identity Management. I'm trying to customize the initial page that is viewed when a user browses to the site and am unable to figure it out. Can someone point me in the right direction? Am I being foolish trying to find a default location for default images and pages?
Any help would be GREATLY appreciated.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4049480#4049480
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4049480
"jwcone" wrote : "kstrunk" wrote :
| | Except for that part about "Using your own log4j.xml file (with EJB JAR files )"...
|
| You're right. I found it. Just needed to scroll down a bit more.
|
| I added the ContextRepositorySelector to my ejb.jar and altered it to use property files instead of xml files. Now I can log from within my ejb.jar. But I cannot log from my WebApp at the same time.
| If I put the log4j.jar in my WebApp under WEB-INF/lib logging from WebApp works fine, but ejb logging dosen't work. I get no exception or any other error message. If I remove log4.jar from my WebApp und put it just in the ear-file it's the other way round. I can log from ejb classes but not from the WebApp. It looks like a classloading problem, doesn't it?
|
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4049470#4049470
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4049470
When I start my jboss server i see an error message on the dos promt whcih says:
java.net.BindException: Address already in use: JVM_Bind:8080 at org.apache.tomcat.util.net.PoolTcpEndpoint.initEndpoint(PoolTcpEndpoi
nt.java:297)
at org.apache.coyote.http11.Http11Protocol.init(Http11Protocol.java:142)
at org.apache.catalina.connector.Connector.initialize(Connector.java:928
)
at org.jboss.web.tomcat.tc5.StandardService.initialize(StandardService.j
ava:688)
at org.apache.catalina.core.StandardServer.initialize(StandardServer.jav
a:764)
How can I avoid this error. I do not run any other applications on port 8080 when I start my jboss.
Thanks,
P
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4049469#4049469
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4049469
An MDB is a consumer of messages.
Consumers buffer messages locally (default size = 200 if I remember rightly - see userguide for details).
So if you create a consumer and there are say 1000 messages on the queue, then the first 200 messages will be taken off the queue and buffered in the consumer.
Therefore you won't see them when you browse - since they're no longer on the queue.
If you have < 200 messages then you won't see any until you close the consumer (or the MDB).
This is expected behaviour.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4049462#4049462
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4049462