On Wed, Apr 2, 2014 at 10:08 PM, Chris Hyzer <mchy...@yahoo.com> wrote:
> I"m using Axis 2 1.6.1, we made beans, did java2wsdl, and axis handles
> everything for us.
>
> We had an error report that occasionally clients are failing because an
> extra 0 is sent after the response.
>
<snip>
> </soapenv:Envelope>
> 0

On the client side you can disable chunking, ie the 0 indicates the
size of the next chunk
(0) meaning the message is finished. You would then be using
content-length instead, IIRC.

         Options option = client.getOptions();
         option.setProperty(HTTPConstants.CHUNKED,false);

---------------------------------------------------------------------
To unsubscribe, e-mail: java-user-unsubscr...@axis.apache.org
For additional commands, e-mail: java-user-h...@axis.apache.org

Reply via email to