Hi,
in a standard .NET webservice (lie the basic sample "hello word" one created by VisualStudio), how can I access the raw call coming from a client? Thanks
Hi,
in a standard .NET webservice (lie the basic sample "hello word" one created by VisualStudio), how can I access the raw call coming from a client? Thanks
On Firefox you can view requests and response with Firebug, I like fiddle as well.
HttpContext.Current.Request
contains the information of the incoming request.