从具有复杂类型返回的C#.Net应用程序中使用Java Web服务

时间:2014-08-15 16:00:53

标签: c# web-services java-ee soap complextype

我遇到这个问题:
我已经开发了一个在Java EE应用程序中公开的WS,这是wsdl:types定义

    <wsdl:types>
  <schema elementFormDefault="qualified" targetNamespace="http://endpoint.ws.solution.client.com" xmlns="http://www.w3.org/2001/XMLSchema">
   <import namespace="http://model.ws.solution.client.com"/>
   <element name="invoke">
    <complexType>
     <sequence>
      <element name="cbte_modo" type="xsd:string"/>
      <element name="cuit_emisor" type="xsd:string"/>
      <element name="pto_vta" type="xsd:int"/>
      <element name="cbte_tipo" type="xsd:int"/>
      <element name="cbte_nro" type="xsd:int"/>
      <element name="cbte_fch" type="xsd:string"/>
      <element name="imp_total" type="xsd:double"/>
      <element name="cod_autorizacion" type="xsd:string"/>
     </sequence>
    </complexType>
   </element>
   <element name="invokeResponse">
    <complexType>
     <sequence>
      <element name="invokeReturn" type="tns1:ComprobanteConstatarResponse"/>
     </sequence>
    </complexType>
   </element>
  </schema>
  <schema elementFormDefault="qualified" targetNamespace="http://model.ws.solution.client.com" xmlns="http://www.w3.org/2001/XMLSchema">
   <complexType name="ComprobanteConstatarResponse">
    <sequence>
     <element name="code" nillable="true" type="xsd:string"/>
     <element name="fch_proceso" nillable="true" type="xsd:string"/>
     <element name="msg" nillable="true" type="xsd:string"/>
     <element name="resultado" nillable="true" type="xsd:string"/>
    </sequence>
   </complexType>
  </schema>
 </wsdl:types>

这个Web服务只公开一个名为“Invoke”的方法,这是它的java类中的方法定义:

@WebMethod
    public ComprobanteConstatarResponse invoke(String cbte_modo, String cuit_emisor, Integer pto_vta, Integer cbte_tipo,
                                                Integer cbte_nro, String cbte_fch, Double imp_total, String cod_autorizacion){

        ComprobanteConstatarRequest request = new ComprobanteConstatarRequest(cbte_modo, cuit_emisor, pto_vta, cbte_tipo, cbte_nro, cbte_fch, imp_total, cod_autorizacion);
        ComprobanteConstatarResponse response = this.wsConnectorFacade.validateComprobante(request);
        return response;
    }

如您所见,响应是一个名为“ComprobanteConstatarResponse”的Java类。
此外,我开发了一个简单的C#控制台应用程序来测试从.NET应用程序调用WS。所以我添加了服务参考,因为许多教程说并编码了这个电话:

 static void Main(string[] args)
        {
            ComprobanteConstatarService webService = new ComprobanteConstatarService();

            ComprobanteConstatarResponse response = new ComprobanteConstatarResponse();
            response = webService.invoke("CAE","20351240181",4001,1,1223,"20140815",100.5,"CAE999999");
            Console.WriteLine("Resultado: " + response.resultado + " - MSG: " + response.msg);
            Console.ReadLine();
        }

调用成功执行,但服务返回包含所有空值的复杂类型(ComprobanteConstatarResponse)。我已经对代码进行了debbuged,并且可以看到java应用程序接收所有参数并正确构建响应,但是当它返回到C#应用程序时,该对象具有空值。

有什么想法吗?

1 个答案:

答案 0 :(得分:2)

找到了解决方案!

在visual studio中,我去了ComprobanteConstatarResponse定义(在添加服务引用时创建。这将打开一个Reference.cs文件)并且我评论了包含命名空间的XmlTypeAttribute:

 /// <remarks/>
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Xml", "4.0.30319.33440")]
    [System.SerializableAttribute()]
    [System.Diagnostics.DebuggerStepThroughAttribute()]
    [System.ComponentModel.DesignerCategoryAttribute("code")]
    //[System.Xml.Serialization.XmlTypeAttribute(Namespace="http://model.ws.solution.client.com")]
    public partial class ComprobanteConstatarResponse {

        private string codeField;

        private string fch_procesoField;

        private string msgField;

        private string resultadoField;

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

        /// <remarks/>
        [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)]
        public string fch_proceso {
            get {
                return this.fch_procesoField;
            }
            set {
                this.fch_procesoField = value;
            }
        }

        /// <remarks/>
        [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)]
        public string msg {
            get {
                return this.msgField;
            }
            set {
                this.msgField = value;
            }
        }

        /// <remarks/>
        [System.Xml.Serialization.XmlElementAttribute(IsNullable=true)]
        public string resultado {
            get {
                return this.resultadoField;
            }
            set {
                this.resultadoField = value;
            }
        }
    }

然后我再次测试并填充了响应值。