Tomcat in last versions use http-1.1 chunked encoding.
As far as I know you can downgrade to http 1.0 in the client connection or better using
1.1 setting in the HTTP HEADER Connection=close.
In java:
| HttpURLConnection conn = (HttpURLConnection) conn.openConnection();
| conn.setRequestProperty("Connection","close");
|
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3971616#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...