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);
}
link|improve this question

feedback

1 Answer

The namespace "http://schemas.datacontract.org/2004/07/" is generated by the data contract serializer. By default WCF services use DataContractSerializer unless you mark your Interface or service class to use a XmlSerializerFormat.

If you are building an XElement try specify the namespace along with the XElement attribute in your code.

link|improve this answer
See my update. Even if I explicitly use a DataContractSerializer, I still get the other namespace. I am using .NET 4; does that make a difference? – Jacob Nov 22 '11 at 21:01
You dont need to explicitly use DataContractSerializer as its the default. Try using XmlSerializer and see if you still get that namespace – Rajesh Nov 23 '11 at 9:31
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.