[jboss-user] [JBossWS] - Re: How do you set the transfer-encoding

maeste do-not-reply at jboss.com
Thu Sep 14 12:31:37 EDT 2006


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

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



More information about the jboss-user mailing list