I have a NetWebServiceMethod and would like to get access to the request information. in the example below I want access to POST and all the header and body information.
POST /database/databaseCMUSERW HTTP/1.1
Accept: application/json; charset=utf-8
...
...
...
{
"CurrentClientVersion" : 2,
"CurrentUserLogin" : "MARATHON"
}
If I cant have that can I get access to just the body part of the post without knowing what will be in the body section without declaring individual parameter's? I just want the entire request data as its not in xml nor json format. I am looking for something like p_web.GetRequestText I found p_web.WholeURL but thats just this part "POST /database/databaseCMUSERW HTTP/1.1".
{
"CurrentClientVersion" : 2,
"CurrentUserLogin" : "MARATHON"
}
Jeff