Re: Log xml request file
"robertlazarski ." <[email protected]>
| Newsgroups | gmane.text.xml.axis.user |
|---|---|
| Message-ID | <CABpPLBX3Faw_2B0U9VP9pYrX-UBt7WHvpVsJW=0bJXz+nSy2Nw@mail.gmail.com> |
On Fri, Mar 6, 2015 at 3:29 PM, Oscar Rugama <[email protected]> wrote: > So because I have changed the soap header I want to know how exactly the > soap envelope will go I mean the soap request which is a xml file just to > compare with the structure I know that should be sent. > > For me it is ok if something like system.out.printl(request) and appears in > the log the all soap request xml file > > Does it make sense now? > > Thanks your support is her appreciated. > > Un saludo, > Oscar This may help: MessageContext messageContext = MessageContext. getCurrentMessageContext(); String request = messageContext.getEnvelope().toString(); - R