I\'m calling an external HTTPS webservice.
In order to check what is wrong, the owner needs the SOAP request I\'m sending.
I have a web reference and the gen
If you work in a more restricted environment and don't have the luxury of using an application like Fiddler, you can do the following:
using (var reader = new System.IO.StreamReader(Request.InputStream))
{
result = reader.ReadToEnd();
}
It's not an ideal or pretty solution, but if you are working in a moderately restricted environment, it gets the job done.