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

2006-11-17 Thread ge0ffrey
Thanks for opening the issue! View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3986907#3986907 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3986907 ___ jboss-user mailing list

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

2006-11-16 Thread [EMAIL PROTECTED]
http://jira.jboss.com/jira/browse/JBWS-1381 As a workaround you can install your own service endpoint servlet that does the double buffering and uses the desired HTTP response semantics. Also, see http://www.jboss.com/index.html?module=bbop=viewtopicp=3981166#3981166 View the original post :

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

2006-11-12 Thread maeste
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 :