views:

80

answers:

1

I have created a web service in visual studio. How do I read the HTTP post data when someone sends a request to one of my methods.

The message they are sending me is a soap wrapped xml file.

A: 

You can create a method in the BeginRequest method in the Global.asax, here you can find the raw request.

Jan Jongboom