I am writing a tool (MyTool) that works in conjunction with another programmer's tool (HisTool). Both of our tools deal with a WCF service that is not under our control. HisTool generates a mock implementation of a service based on its WSDL, and MyTool generates XML to feed this mock, controlling the data it outputs. Unfortunately, some of the implementation details of HisTool are obscured, since a core part of his project uses a third-party library.
Anyway, given all this, we are having an issue where the output of MyTool does not match the expectation of HisTool. Specifically, the XML namespace that MyTool outputs is what I would expect; it matches what is specified by the WSDL, for example: http://division.company.com/version/area/layer. However, the mysterious serialization of HisTool expects the namespace http://schemas.datacontract.org/2004/07/.
What serialization method is generating this weird http://schemas.datacontract.org/2004/07/? Is there a way in WCF to modify which XML namespace is used? Here's how I serialize the Message object acquired from my IClientMessageInspector:
Message responseMsg;
// ...
var responseMsgElement = new XElement("ResponseMessage");
using (var writer = responseMsgElement.CreateWriter())
{
using (var dictWriter = XmlDictionaryWriter.CreateDictionaryWriter(writer))
{
responseMsg.WriteBodyContents(dictWriter);
}
}
Update
I've now tried a different technique for serializing the message, explicitly using DataContractSerializer, and the XML namespace is still not http://schemas.datacontract.org/2004/07/. Here's that code:
Message responseMsg;
ClientOperation operation;
// ...
var operationMethod = operation.SyncMethod;
var returnType = operationMethod.ReturnType;
var outParameterCount = operationMethod
.GetParameters()
.Count(p => p.IsOut);
var responseObj = operation.Formatter.DeserializeReply(
responseMsg, new object[outParameterCount]);
DataContractSerializer serializer = new DataContractSerializer(returnType);
var responseMsgElement = new XElement("ResponseMessage");
using (var writer = responseMsgElement.CreateWriter())
{
serializer.WriteObject(writer, responseObj);
}