I want to create a listener for soap messages. Can this be done using a web service in c sharp?
The soap messages contain xml data inside the soap body. I want the web service listener to be able to extract this xml data from the soap message.
Appreciate your help!
Web Services are SOAP listeners, but abstract away all the messy XML.
If you want to get into the message and read or modify it, you can do so in WCF using custom behaviours with message inspectors and interceptors:
http://msdn.microsoft.com/en-us/library/ms751495.aspx
http://msdn.microsoft.com/en-us/library/aa717047.aspx