[jboss-user] [JBossWS] - Re: How do I disable HTTP chunking?

maeste do-not-reply at jboss.com
Sun Nov 12 08:18:14 EST 2006


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#3985194

Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3985194



More information about the jboss-user mailing list