I am a classic ASP developer. I know, I should learn .NET, but only have a couple more years left at this. I would consider myself advanced.
I have a third party application that will export data to a web service if I develop it. I am curious to see I can build it in ASP rather than having to learn .NET.
My problem is I haven't figured out how to retrieve the request it makes.
Neither the Request.Querystring or Request.Form or Request.ServerVariables collection methods reveal anything. I have used CharlesProxy to see what the XML/SOAP request that it sends looks like, but I just haven't figured out how to capture it in ASP.
I have noticed the ServerVariables request of HTTP_SOAPACTION being passed that reveals the operation being called, but I simply can't figure out how to retrieve the XML string being passed.
Any help would be greatly appreciated.