如何在.NET SoapFormatter中控制命名空间?

时间:2009-08-31 20:35:51

标签: c# serialization soap

我正在编写一些代码,这些代码需要与使用SOAP序列化某些对象的EXISTING远程代码向后兼容。

我的困难在于我不得不将一些对象移动到新的程序集中,因此远程处理已被破坏。

例如,我使用.NET SoapFormatter序列化对象,如下所示:

Person p=new Person();
string path=@"c:\myfile.soap";
using (System.IO.FileStream fs = new System.IO.FileStream(path, System.IO.FileMode.OpenOrCreate, System.IO.FileAccess.Write))
{
    System.Runtime.Serialization.Formatters.Soap.SoapFormatter
    f = new System.Runtime.Serialization.Formatters.Soap.SoapFormatter();
    f.Serialize(fs, p);
    fs.Close();
}

生成的xml如下所示:

<SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:clr="http://schemas.microsoft.com/soap/encoding/clr/1.0" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
    <SOAP-ENV:Body>
        <a1:Person id="ref-1" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/Serialization/dotneat_net.Serialization%2C%20Version%3D0.0.0.0%2C%20Culture%3Dneutral%2C%20PublicKeyToken%3Dnull">
            <FirstName id="ref-3">Joe</FirstName>
            <LastName id="ref-4">Doe</LastName>
            <_Address id="ref-5">dotneat.net Street, Zaragoza, Spain</_Address>
            <_ZIPCode id="ref-6">50007</_ZIPCode>
        </a1:Person>
    </SOAP-ENV:Body>
</SOAP-ENV:Envelope>

在那个XML中,我想对a1:Person对象上的xmlns有一些控制权:

<a1:Person id="ref-1" xmlns:a1="http://schemas.microsoft.com/clr/nsassem/Serialization/dotneat_net.Serialization%2C%20Version%3D0.0.0.0%2C%20Culture%3Dneutral%2C%20PublicKeyToken%3Dnull">

原因是我的新Person对象与原始对象不在同一个程序集中。因此,稍后在反序列化发生时(在较旧的项目中),由于错误的汇编而失败。

如何控制xmlns中的文本?我尝试了一些事情,比如在序列化的类上使用[SoapType Namespace =“xxx”]属性。没有运气。

我宁愿避免手动修改XML。

2 个答案:

答案 0 :(得分:2)

我能够使用SoapType属性设置命名空间。

[Serializable]
[System.Runtime.Remoting.Metadata.SoapType(XmlNamespace = "MY_NAMESPACE")]
public class Person
{
    public string FirstName;
    public string LastName;
    public string _Address;
    public string _ZIPCode;
}


这生成了以下序列化XML:

<SOAP-ENV:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:clr="http://schemas.microsoft.com/soap/encoding/clr/1.0" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
  <SOAP-ENV:Body>
    <i2:Person id="ref-1" xmlns:i2="MY_NAMESPACE">
      <FirstName id="ref-3">John</FirstName>
      <LastName id="ref-4">Doe</LastName>
      <_Address id="ref-5">otneat.net Street, Zaragoza, Spain</_Address>
      <_ZIPCode id="ref-6">50007</_ZIPCode>
    </i2:Person>
  </SOAP-ENV:Body>
</SOAP-ENV:Envelope>


但是,我无法验证远程通道另一侧的反序列化。希望这对你有帮助。

答案 1 :(得分:0)

你试过SoapAttribute吗?它有一个XmlNamespace属性。可能会有用。您还可以使用Reflector查看SoapFormatter.Serialize正在执行的操作。您可以尝试一些想法。