I\'m having a bit of trouble with what should be a simple problem.
I have a service method that takes in a c# Message type and i want to just extract the body of tha
You can access the body of the message by using the GetReaderAtBodyContents method on the Message:
using (XmlDictionaryReader reader = message.GetReaderAtBodyContents()) { string content = reader.ReadOuterXml(); //Other stuff here... }