调用 Java Web Service 时 C# 响应对象包含 null [英] C# response object contains null when calling Java Web Service

查看:43
本文介绍了调用 Java Web Service 时 C# 响应对象包含 null的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我收到了以下 wsdl.我使用 wsdl.exe 生成了 C# 代理,还创建了我的 C# 网页.使用 Fiddler 我查看了 SOAP 响应,它包含数据.有关需要进行哪些修改以使 C# 程序接受 SOAP 响应的任何指导.请原谅我不确定使用哪种格式以获得最佳效果的 wsdl 格式.

I've been sent the following wsdl. I generated the C# proxy using wsdl.exe and also created my c# web page. Using Fiddler I have looked at the SOAP response and it contains data. Any guidance on what modification is needed in order to get the C# program to accept the SOAP response. Please excuse the formatting of the wsdl I was uncertain as to which format to use for best results.

WSDL

<?xml version="1.0" encoding="UTF-8" ?>
   <wsdl:definitions xmlns:tns="https://wwf.web.spiritaero.com/tot/moves" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" name="CreateMoveHistory" targetNamespace="https://wwf.web.spiritaero.com/tot/moves" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/">
   <wsdl:types>
     <xsd:schema targetNamespace="https://wwf.web.spiritaero.com/tot/moves" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
      <xsd:element name="CreateMoveHistoryResponse" type="tns:ReturnMessage" />
      <xsd:element name="CreateMoveHistoryRequest" type="tns:CreateMoveHistoryContract" />
       <xsd:complexType name="CreateMoveHistoryContract">
         <xsd:sequence minOccurs="1" maxOccurs="1">
          <xsd:element name="FromApplication" type="xsd:string" />
          <xsd:element name="ActionName" type="xsd:string" />
          <xsd:element name="OrderNumber" nillable="false" type="xsd:string" minOccurs="1" maxOccurs="1" />
          <xsd:element name="WorkCenter" nillable="false" type="xsd:string" minOccurs="1" maxOccurs="1" />
          <xsd:element name="Zone" nillable="false" type="xsd:string" minOccurs="1" maxOccurs="1" />
          <xsd:element name="Building" nillable="false" type="xsd:string" minOccurs="1" maxOccurs="1" />
          <xsd:element name="Floor" nillable="false" type="xsd:string" minOccurs="1" maxOccurs="1" />
          <xsd:element name="Post" nillable="false" type="xsd:string" minOccurs="1" maxOccurs="1" />
          <xsd:element name="SubCode" nillable="false" type="xsd:string" minOccurs="1" maxOccurs="1" />
          <xsd:element name="SubId" nillable="false" type="xsd:string" minOccurs="1" maxOccurs="1" />
          <xsd:element name="ScanDate" nillable="false" type="xsd:string" minOccurs="1" maxOccurs="1" />
          <xsd:element name="AntennaId" nillable="false" type="xsd:string" minOccurs="1" maxOccurs="1" />
          <xsd:element name="AntennaDescription" nillable="false" type="xsd:string" minOccurs="1" maxOccurs="1" />
          <xsd:element name="PartNumber" nillable="false" type="xsd:string" minOccurs="1" maxOccurs="1" />
        </xsd:sequence>
      </xsd:complexType>
       <xsd:complexType name="CreateMoveHistoryFacade">
         <xsd:sequence minOccurs="1" maxOccurs="1">
          <xsd:element name="FromApplication" type="xsd:string" />
          <xsd:element name="ActionName" type="xsd:string" />
          <xsd:element name="OrderNumber" nillable="false" type="xsd:string" minOccurs="1" maxOccurs="1" />
          <xsd:element name="WorkCenter" nillable="false" type="xsd:string" minOccurs="1" maxOccurs="1" />
          <xsd:element name="Zone" nillable="false" type="xsd:string" minOccurs="1" maxOccurs="1" />
          <xsd:element name="Building" nillable="false" type="xsd:string" minOccurs="1" maxOccurs="1" />
          <xsd:element name="Floor" nillable="false" type="xsd:string" minOccurs="1" maxOccurs="1" />
          <xsd:element name="Post" nillable="false" type="xsd:string" minOccurs="1" maxOccurs="1" />
          <xsd:element name="SubCode" nillable="false" type="xsd:string" minOccurs="1" maxOccurs="1" />
          <xsd:element name="SubId" nillable="false" type="xsd:string" minOccurs="1" maxOccurs="1" />
          <xsd:element name="ScanDate" nillable="false" type="xsd:string" minOccurs="1" maxOccurs="1" />
          <xsd:element name="AntennaId" nillable="false" type="xsd:string" minOccurs="1" maxOccurs="1" />
          <xsd:element name="AntennaDescription" nillable="false" type="xsd:string" minOccurs="1" maxOccurs="1" />
          <xsd:element name="PartNumber" nillable="false" type="xsd:string" minOccurs="1" maxOccurs="1" />
          <xsd:element name="ReturnCode" nillable="false" type="xsd:string" minOccurs="1" maxOccurs="1" />
          <xsd:element name="ReturnMessage" nillable="false" type="xsd:string" minOccurs="1" maxOccurs="1" />
        </xsd:sequence>
      </xsd:complexType>
       <xsd:complexType name="ReturnMessage">
         <xsd:sequence minOccurs="1" maxOccurs="1">
          <xsd:element name="Message" nillable="false" type="xsd:string" minOccurs="1" maxOccurs="1" />
        </xsd:sequence>
      </xsd:complexType>
    </xsd:schema>
  </wsdl:types>
   <wsdl:message name="createMoveHistoryResponse">
    <wsdl:part element="tns:CreateMoveHistoryResponse" name="createMoveHistoryResponse" />
  </wsdl:message>
   <wsdl:message name="createMoveHistoryRequest">
    <wsdl:part element="tns:CreateMoveHistoryRequest" name="createMoveHistoryRequest" />
  </wsdl:message>
   <wsdl:portType name="CreateMoveHistoryPort">
     <wsdl:operation name="createMoveHistory">
      <wsdl:input message="tns:createMoveHistoryRequest" />
      <wsdl:output message="tns:createMoveHistoryResponse" />
    </wsdl:operation>
  </wsdl:portType>
   <wsdl:binding name="CreateMoveHistorySoap" type="tns:CreateMoveHistoryPort">
    <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http" />
     <wsdl:operation name="createMoveHistory">
      <soap:operation soapAction="https://wwf.web.spiritaero.com/tot/moves/CreateMoveHistory" />
       <wsdl:input>
        <soap:body use="literal" />
      </wsdl:input>
       <wsdl:output>
        <soap:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
  </wsdl:binding>
   <wsdl:service name="CreateMoveHistory">
     <wsdl:port binding="tns:CreateMoveHistorySoap" name="CreateMoveHistory">
      <soap:address location="http://pc790503.corp.spiritaero.com:8080/tot/moves?action=CreateMoveHistory" />
    </wsdl:port>
  </wsdl:service>
</wsdl:definitions>

提琴手

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">  
<soapenv:Header/>   
 <soapenv:Body> 
  <ReturnMessage xmlns="https://wwf.web.spiritaero.com/tot/moves">           
   <Message>Successful</Message>      
  </ReturnMessage>   
 </soapenv:Body> 
</soapenv:Envelope>

为响应生成的 C# 代码

C# Code Generated for response

    [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "2.0.50727.3038")]
    [System.SerializableAttribute()]
    [System.Diagnostics.DebuggerStepThroughAttribute()]
    [System.ComponentModel.DesignerCategoryAttribute("code")]
    [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="https://wwf.web.spiritaero.com/tot/moves")]
    public partial class CreateMoveHistoryResponse {

    private string messageField;

    /// <remarks/>
    public string Message {
        get {
            return this.messageField;
        }
        set {
            this.messageField = value;
        }
    }
}

C# 代码调用网络服务

C# code calling web service

CreateMoveHistory proxy;
        CreateMoveHistoryRequest cmhRequest;
        CreateMoveHistoryResponse msg;
....

            msg = new CreateMoveHistoryResponse();
            proxy = new CreateMoveHistory();
            cmhRequest = new CreateMoveHistoryRequest();
            cmhRequest.OrderNumber = "12345";
            cmhRequest.Zone = "2";
            cmhRequest.Building = "297F";
            cmhRequest.Floor = "1";
            cmhRequest.Post = "XX";
            msg = proxy.createMoveHistory(cmhRequest);

问候,

D.富勒

推荐答案

如果您使用 WebReferences,请检查 wsdl 文件以确保 targetNamespace 和命名空间相同.

If you use WebReferences, let check wsdl file to be sure targetNamespace and name space are same.

希望这有帮助!

这篇关于调用 Java Web Service 时 C# 响应对象包含 null的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆