You have to disable it client side setting Connection=close in http header.
| HttpURLConnection conn = (HttpURLConnection)endpoint.openConnection();
| [...]
| conn.setRequestProperty("Connection","close");
| [...]
|
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3985194#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...