Is there any way to intercep my raw SOAP request?

  • Thread starter Thread starter aaa
  • Start date Start date
A

aaa

I need to debug a SOAP request that I am making to a third party web
service. Is there any way I can spit this request out to a file so that I
can in turn put it into XMLSpy to see what problems I am having with the
request?
 
You can save a HTTP request directly to a file (assuming the asp.net
process is granted access):

this.Context.Request.SaveAs(path);
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top