After some while, Tomcat (6.0.18) gets stuck: When I did netstat -an | grep 8080 everything seems stuck! For example, recv-Q and send-Q remain with the same numbers.
and when I try to run a simple Http client code:
URL u = new java.net.URL("http://localhost:8080/my/test")
c = u.openConnection();
c.getInputStream();
The client waits (until timeout) during getInputStream.
Any known issues with 6.0.18? Any parameters I should check?
Thank you