【问题标题】:Why does the generated .NET proxy for this WSDL drop some data?为什么为此 WSDL 生成的 .NET 代理会丢弃一些数据?
【发布时间】:2009-12-30 16:05:23
【问题描述】:

我使用此 WSDL 向 .NET 项目添加了 WCF 服务引用: https://interop.cmiservices.org/axis/services/CAP1_1?wsdl

它生成代理类等,我可以调用这些方法。但是,当调用“getCAPAlerts”或“getCAPAlert”时,返回值似乎缺少数据。例如,'getCAPAlert' 返回一个 'alert' 实例,但它的 'info' 属性始终为空。使用 Fiddler,我可以检查 XML 并查看从服务器返回的元素(见下文)。一个可能相关的注释:'info' 在 wsdl 中的 'alert' 上定义为 0..unbounded,并且在代理中生成了一个数组。此外,该行为与使用 WSE3 的 .net 2.0 样式 Web 引用相同。

作为一种解决方法,我编写了自己的 XML 序列化类(即实现 IXmlSerializable),并且这些类会按预期反序列化(即 info != null)。然而,手工编码这些很容易出错并且有一些其他的缺点。

为什么生成的代理类不能正确反序列化?纠正此问题的最佳方法是什么?

SOAP 响应:

<?xml version="1.0" encoding="utf-8"?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<soapenv:Header>
    <ns1:serverTime soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next" soapenv:mustUnderstand="0" xmlns:ns1="http://dmi-services.org/CAP/1.0"></ns1:serverTime>
</soapenv:Header>
<soapenv:Body>
    <ns2:getCAPAlertResponse soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:ns2="http://dmi-services.org">
        <getCAPAlertReturn>
            <identifier>EINC171254539121009-6228</identifier>
            <sender>dmis@cmiservices.org</sender>
            <sent>2009-12-10T17:12:05</sent>
            <status>Test</status>
            <msgType>Alert</msgType>
            <source xsi:nil="true"/>
            <scope>Private</scope>
            <restriction xsi:nil="true"/>
            <addresses xsi:nil="true"/>
            <code></code>
            <note xsi:nil="true"/>
            <references xsi:nil="true"/>
            <incidents xsi:nil="true"/>
            <info>
                <language xsi:nil="true"/>
                <category>Other</category>
                <event>TEST TEST TEST Automobile Accident</event>
                <urgency>Past</urgency>
                <severity>Minor</severity>
                <certainty>Unlikely</certainty>
                <audience xsi:nil="true"/>
                <effective xsi:nil="true"/>
                <onset xsi:nil="true"/>
                <expires xsi:nil="true"/>
                <senderName>Customer Name</senderName>
                <headline>TEST TEST FROM ETEAM INCIDENT</headline>
                <description>desctiption</description>
                <instruction xsi:nil="true"/>
                <web xsi:nil="true"/>
                <contact xsi:nil="true"/>
            </info>
        </getCAPAlertReturn>
    </ns2:getCAPAlertResponse>
</soapenv:Body>

生成的“警报”代理类:

    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "2.0.50727.4927")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.SoapTypeAttribute(Namespace="urn:oasis:names:tc:emergency:cap:1.1")]
public partial class Alert : object, System.ComponentModel.INotifyPropertyChanged {

    private string identifierField;

    private string senderField;

    private string sentField;

    private status statusField;

    private msgType msgTypeField;

    private string sourceField;

    private System.Nullable<scope> scopeField;

    private string restrictionField;

    private string addressesField;

    private string[] codeField;

    private string noteField;

    private string referencesField;

    private string incidentsField;

    private info[] infoField;

    /// <remarks/>
    public string identifier {
        get {
            return this.identifierField;
        }
        set {
            this.identifierField = value;
            this.RaisePropertyChanged("identifier");
        }
    }

    /// <remarks/>
    public string sender {
        get {
            return this.senderField;
        }
        set {
            this.senderField = value;
            this.RaisePropertyChanged("sender");
        }
    }

    /// <remarks/>
    public string sent {
        get {
            return this.sentField;
        }
        set {
            this.sentField = value;
            this.RaisePropertyChanged("sent");
        }
    }

    /// <remarks/>
    public status status {
        get {
            return this.statusField;
        }
        set {
            this.statusField = value;
            this.RaisePropertyChanged("status");
        }
    }

    /// <remarks/>
    public msgType msgType {
        get {
            return this.msgTypeField;
        }
        set {
            this.msgTypeField = value;
            this.RaisePropertyChanged("msgType");
        }
    }

    /// <remarks/>
    [System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
    public string source {
        get {
            return this.sourceField;
        }
        set {
            this.sourceField = value;
            this.RaisePropertyChanged("source");
        }
    }

    /// <remarks/>
    [System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
    public System.Nullable<scope> scope {
        get {
            return this.scopeField;
        }
        set {
            this.scopeField = value;
            this.RaisePropertyChanged("scope");
        }
    }

    /// <remarks/>
    [System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
    public string restriction {
        get {
            return this.restrictionField;
        }
        set {
            this.restrictionField = value;
            this.RaisePropertyChanged("restriction");
        }
    }

    /// <remarks/>
    [System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
    public string addresses {
        get {
            return this.addressesField;
        }
        set {
            this.addressesField = value;
            this.RaisePropertyChanged("addresses");
        }
    }

    /// <remarks/>
    [System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
    public string[] code {
        get {
            return this.codeField;
        }
        set {
            this.codeField = value;
            this.RaisePropertyChanged("code");
        }
    }

    /// <remarks/>
    [System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
    public string note {
        get {
            return this.noteField;
        }
        set {
            this.noteField = value;
            this.RaisePropertyChanged("note");
        }
    }

    /// <remarks/>
    [System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
    public string references {
        get {
            return this.referencesField;
        }
        set {
            this.referencesField = value;
            this.RaisePropertyChanged("references");
        }
    }

    /// <remarks/>
    [System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
    public string incidents {
        get {
            return this.incidentsField;
        }
        set {
            this.incidentsField = value;
            this.RaisePropertyChanged("incidents");
        }
    }

    /// <remarks/>        
    [System.Xml.Serialization.SoapElementAttribute(IsNullable=true)]
    public info[] info {
        get {
            return this.infoField;
        }
        set {
            this.infoField = value;
            this.RaisePropertyChanged("info");
        }
    }

    public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;

    protected void RaisePropertyChanged(string propertyName) {
        System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
        if ((propertyChanged != null)) {
            propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
        }
    }
}

【问题讨论】:

  • info 属性返回一个info 对象数组。 info 对象/类是否可序列化?
  • webservice 是你的,这样你就可以调整 wsdl xsd 架构了吗?
  • 抱歉放弃这篇文章。信息也是由 wsdl 工具生成的,不幸的是,不,这不是我们控制的服务。拍得对,这个来源没有正确实现规范。此外,.net 序列化在 0..* 元素方面存在问题...

标签: c# asp.net wcf soap wsdl


【解决方案1】:

DMIS 未正确实施警报对象。

他们的版本使用大写字母 A &lt;Alert&gt;,而绿洲将其定义为 &lt;alert&gt;

命名空间也存在问题,您需要确保包含正确的命名空间以进行反序列化。

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2018-06-22
    • 2012-09-21
    • 2011-07-03
    • 1970-01-01
    • 2015-05-22
    相关资源
    最近更新 更多