I get this exception because response is soapFault. Is there options how I can get whole xml response from this exception ? I need this because important content of this xml inst in ex.getFaultStringOrReason() but as comment at the end of this xml

link|improve this question

77% accept rate
feedback

1 Answer

up vote 0 down vote accepted

ex.getSoapFault().getSource() will give you a Source which you can then inspect manually or marshall.

(e.g. with TransformerFactory.newInstance().newTransformer().transform(source, new StringResult() then call toString() on the StringResult)

link|improve this answer
thx a lot it works – hudi Jan 13 at 10:55
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.