2

看完这篇文章后:

使用 XML 消息设计提高 Web 服务互操作性

我决定尝试将我们现有的消息设计模式导入新的 SOAP 服务的 WSDL。

这都是在 VS2008 和 .NET 3.5 中,Altova XMLSpy 2009 用于模式和 wsdl 设计。

所以我做了以下事情:

  1. 编写自定义 WSDL,导入我们的 XSD 接口规范。
  2. 使用 WSDL.EXE 生成服务器存根代码
  3. 在 Web 服务项目中包含 XSD
  4. 使用Linq To Xsd生成我们使用的强类型 XDocument 包装器
  5. 手动编辑生成的存根代码以删除多余的自动生成的包装类
  6. 手动编辑存根代码以将 WSDL 中的类型映射到 Linq2Xsd 生成的包装器
  7. 禁用 WSDL 生成并使用WebServiceBindingAttribute
  8. 使用常规 Web 参考创建 win forms 测试平台

好的,问题来了:

SOAP 请求工作完美,参数的序列化和反序列化工作。问题中的 SOAP 响应,序列化创建了格式不正确的 Xml,而客户端反序列化只是无法工作。

这是 SOAP 响应:

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <soap:Body>
        <GetCameraLocationsTableResponse xmlns="http://blah">
            <GetCameraLocationsTableResponse Version="1.0rc2">
                <Response>
                    <Success>true</Success>
                </Response>
                <CameraLocationsTable/>
            </GetCameraLocationsTableResponse>
        </GetCameraLocationsTableResponse>
    </soap:Body>
</soap:Envelope>

注意嵌套GetCameraLocationsTableResponse元素,这是错误的。我已经确认我们的 XDocument 包装器创建了内部GetCameraLocationsTableResponse,并且在 SOAP 消息生成器的内部工作中添加了外部GetCameraLocationsTableResponse 它应该是:

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <soap:Body>
        <GetCameraLocationsTableResponse Version="1.0rc2" xmlns="http://blah">
            <Response>
                <Success>true</Success>
            </Response>
            <CameraLocationsTable/>
        </GetCameraLocationsTableResponse>
    </soap:Body>
</soap:Envelope>

所以我很难过,客户端代理代码正确序列化但服务器代理代码没有。当然,这是我搞砸的服务器代码!

名称已更改为Blah保护无辜者。

作为参考,这是我编辑的服务器端代理代码:

[System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")]
[System.Web.Services.WebServiceBindingAttribute(Name = "Blah", Namespace = "http://Blah", Location = @"http://localhost:57264/wsdl/Blah.wsdl")]
public interface IBlah
{

    [System.Web.Services.WebMethodAttribute()]
    [SoapLogger]
    [System.Web.Services.Protocols.SoapDocumentMethodAttribute("", Use=System.Web.Services.Description.SoapBindingUse.Literal, ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Bare)]
    [return: System.Xml.Serialization.XmlElementAttribute("GetCameraLocationsTableResponse", Namespace="http://Blah")]
    GetCameraLocationsTableResponse GetCameraLocationsTable([System.Xml.Serialization.XmlElementAttribute(Namespace="http://Blah")] NativeCaseInterfaceDelegateRequest NativeCaseInterfaceDelegateRequest);
}

这是我为将上述内容实现为 Web 服务而编写的代码:

[WebService(Namespace = "http://blah")]
public class Blah : WebService, IBlah
{
    #region IBlah Members

    public GetCameraLocationsTableResponse GetCameraLocationsTable(Blah BlahRequest)
    {
        return BlahTools.GetCameraLocationsTable(BlahRequest);
    }

    #endregion
}

从这里使用 system.diagnostics 开关,我设法提取了自动生成的序列化代码:

    protected override void Serialize(object objectToSerialize, System.Xml.Serialization.XmlSerializationWriter writer) {
        ((XmlSerializationWriter1)writer).Write3_Item((object[])objectToSerialize);
    }

    public void Write3_Item(object[] p) {
        WriteStartDocument();
        TopLevelElement();
        int pLength = p.Length;
        if (pLength > 0) {
            WriteSerializable((System.Xml.Serialization.IXmlSerializable)((global::blah.GetCameraLocationsTableResponse)p[0]), @"GetCameraLocationsTableResponse", @"http://blah", false, true);
        }
    }

这是自定义 WSDL

<?xml version="1.0" encoding="UTF-8"?>
<wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:sis="http://Blah" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" targetNamespace="http://Blah">
    <wsdl:import namespace="http://Blah" location="Blah.xsd"/>
    <wsdl:message name="BlahRequestMessage">
        <wsdl:part name="in" element="sis:BlahRequest"/>
    </wsdl:message>
    <wsdl:message name="GetCameraLocationsTableResponseMessage">
        <wsdl:part name="out" element="sis:GetCameraLocationsTableResponse"/>
    </wsdl:message>
    <wsdl:portType name="BlahPort">
        <wsdl:operation name="GetCameraLocationsTable">
            <wsdl:input message="sis:BlahRequestMessage"/>
            <wsdl:output message="sis:GetCameraLocationsTableResponseMessage"/>
        </wsdl:operation>
    </wsdl:portType>
    <wsdl:binding name="Blah" type="sis:BlahPort">
        <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
        <wsdl:operation name="GetCameraLocationsTable">
            <soap:operation soapAction="" style="document"/>
            <wsdl:input>
                <soap:body use="literal"/>
            </wsdl:input>
            <wsdl:output>
                <soap:body use="literal"/>
            </wsdl:output>
        </wsdl:operation>
    </wsdl:binding>
</wsdl:definitions>

谢谢阅读,

詹姆士。

4

0 回答 0