Re: Raw SOAP XML response

2016-11-02 Thread Andreas Veithen
This is by design. To avoid the overhead of building a complete DOM like representation of the message, Axis2 actually consumes the message (more specifically the content of the SOAP Body element) when converting it to a Java object. Once that is done, the original message can no longer be

Re: Re[2]: Raw SOAP XML response

2016-11-02 Thread Martin Gainty
From: Sterpu Victor Sent: Wednesday, November 2, 2016 11:57 AM To: Martin Gainty; java-user@axis.apache.org Subject: Re[2]: Raw SOAP XML response It didn't work. This is what I did: I deleted from the directory of Axis2\lib 4 files:

Re[2]: Raw SOAP XML response

2016-11-02 Thread Sterpu Victor
It didn't work. This is what I did: I deleted from the directory of Axis2\lib 4 files: axiom-jaxb-1.2.19.jar, axiom-api-1.2.19.jar, axiom-dom-1.2.19.jar, axiom-impl-1.2.19.jar and I added these 4 files: axiom-api-1.2.20.jar,axiom-dom-1.2.20.jar,axiom-impl-1.2.20.jar,axiom-jaxb-1.2.20.jar. I

Re: Raw SOAP XML response

2016-11-02 Thread Martin Gainty
possible outdated version of axiom * In Axiom versions prior to 1.2.9, the sequence of events was inconsistent if the * underlying stream is XOP encoded and caching is disabled (see WSCOMMONS-485). * This made it necessary for the caller to (partially) handle the XOP processing