[JBossMQ] - Re: Socket closed exception in JBossMQ
by b.eckenfels
"vons1234" wrote : Hi,
| Every now and then i am seeing following exception in my server.log
|
| java.net.SocketException: Socket closed
| | at java.net.SocketInputStream.read(SocketInputStream.java:162)
| | ...
| | at java.io.ObjectInputStream.readByte(ObjectInputStream.java:875)
| | at org.jboss.mq.il.uil2.SocketManager$ReadTask.run(SocketManager.java:31
| |
|
This happens when the network connection is terminated (either by hardware problems, firewall, router, os buffer shortage, jmx-stop of server or restart of the other side).
I dont think your (client) code can or is causing this.
However your client code is missing proper error and resource handling. Especially you should use finally blocks to close the connection. This can explain leaking connections, which lead to leaking threads and this quickly (on hpux) leads to out of native memory.
View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4234335#4234335
Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4234335
15 years, 7 months
[Tomcat, HTTPD, Servlets & JSP] - Application home page from servlet
by antony_s
Hi,
I am developing a web application in Java EE, which will be deployed on JBoss at the root of a public web server. The home page needs to be served through a servlet, not just an index file.
I have set the context-root of the application to '/', and also tried setting the the url-pattern of a servlet to '/' - but of course, all requests are now being routed through this, so static resources such as images and CSS files are not being served.
It is a very simple objective to want to achieve, yet seems complex in practice. Do you have any suggestions on what I should try, or if there are any documentation resources may have missed?
I appreciate your support.
View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4234324#4234324
Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4234324
15 years, 7 months