Skip to Main Content

Integration

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

How do you print the request and response of a SOAP message within a java

429549Oct 13 2008 — edited Oct 13 2008
How do you print the request and response of a SOAP message within java... I tried this

org.apache.axis.MessageContext mcontext = _call.getMessageContext();
org.apache.axis.Message reqmes = mcontext .getRequestMessage();
org.apache.axis.Message repm = mcontext.getResponseMessage();
System.out.println(mc.getSOAPActionURI());
System.out.println(reqmes);
System.out.println(repmes);

but that doesn work
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Nov 10 2008
Added on Oct 13 2008
1 comment
589 views