1

我在我的 WCF 应用程序中使用自定义编码器来写出 SOAP 消息 XML。textMessageEncoding当我使用WCF 中内置的默认 XML时,这很好,但是当我使用自定义编码器时,我遇到了命名空间的问题 - 下面的xmlns:a标记(在元素和元素中)为两个不同的命名空间定义了两次,这解析时导致服务端出现问题

<s:Envelope xmlns:a="http://www.w3.org/2005/08/addressing" xmlns:u="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
  <s:Header>
    <Action a:mustUnderstand="1" u:Id="_3" xmlns="http://www.w3.org/2005/08/addressing" **xmlns:a="http://schemas.xmlsoap.org/soap/envelope/"**></Action>
    <MessageID u:Id="_4" xmlns="http://www.w3.org/2005/08/addressing">
      <!--Omitted-->
    </MessageID>
    <ActivityId CorrelationId="1" xmlns="http://schemas.microsoft.com/2004/09/ServiceModel/Diagnostics">
      <!--Omitted-->
    </ActivityId>

关于如何解决这个问题的任何想法?我XmlWriter在自定义编码器中使用 C# 来编写 XML,这似乎是导致问题的原因。

另外,我如何让上面XmlWriter的标签使用前缀,而不是为每个声明使用 xmlns -<Action><a:Action>

<Action a:mustUnderstand="1" u:Id="_3" xmlns="http://www.w3.org/2005/08/addressing"

这是我的 XmlWriterSettings

XmlWriterSettings writerSettings = new XmlWriterSettings();
writerSettings.Encoding = Encoding.GetEncoding(factory.CharSet);
writerSettings.OmitXmlDeclaration = true;
writerSettings.NamespaceHandling = NamespaceHandling.OmitDuplicates;  
4

1 回答 1

0

通过使用 aXmlDictionaryWriter而不是XmlWriter. 幸运的是,我使用的是 Utf-8 编码并且可以选择这样做

于 2012-04-27T08:47:57.323 回答