Can someone explain to me what would cause the message body to differ from the serialized data contract it's supposed to be returning. I'm writing an app that swaps out pre-canned message bodies. The body is determined by the data contract. As you can see below, what the serialized contract looks like and what the message inspector wrote out as the message body differs. I'm using BasicHttpBinding. Any suggestions on how to get them to look the same
Serialized Contract:
<AddSubscriptionResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://tempuri.org">
<Result>
<success>true</success>
</Result>
</AddSubscriptionResponse>
Message Body:
<AddSubscriberResponse xmlns="http://tempuri.org">
<AddSubscriberResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<Result>
<success>true</success>
</Result>
</AddSubscriberResult>
</AddSubscriberResponse>