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);
 
Back
Top