快速业务通道

提高J2EE与.NET之间的互操作性,第2部分 - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-18
ic float price;    }    [WebMethod]    [XmlInclude(typeof(Product))]    public ArrayList updateProductPrice(ArrayList products)    {      ArrayList newList = new ArrayList();      IEnumerator eList = products.GetEnumerator();      while(eList.MoveNext())      {       Product item = (Product)(eList.Current);       item.price = item.price * (1 + inc_rate);       newList.Add(item);      }      return newList;    }   } }

在 .NET 框架中的 WSDL 引擎生成了用于 Collection 类型、ArrayList 以及 Product 复合类型的如下的 XML Schema:

清单 2. 用于 ArrayList 和 Product 的 XML Schema

1.  <types> 2.  <s:schema xmlns:s="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" targetNamespace="http://services.inventory"> 3.  <s:element name="updateProductPrice"> 4.  <s:complexType> 5.  <s:sequence> <s:element maxOccurs="1" minOccurs="0" name="products" type="s0:ArrayOfAnyType"/> 6.  </s:sequence> 7.  </s:complexType> 8.  </s:element> 9.  <s:complexType name="ArrayOfAnyType"> 10.  <s:sequence> 11.  <s:element maxOccurs="unbounded" minOccurs="0" name="anyType" nillable="true"/> 12.  </s:sequence> 13.  </s:complexType> 14.  <s:complexType name="Product"> 15.  <s:sequence> 16.  <s:element maxOccurs="1" minOccurs="0" name="name" type="s:string"/> 17.  <s:element maxOccurs="1" minOccurs="1" name="qty" type="s:int"/> 18.  <s:element maxOccurs="1" minOccurs="1" name="price" type="s:float"/> 19.  </s:sequence> 20.  </s:complexType> 21.  <s:element name="updateProductPriceResponse"> 22.  <s:complexType> 23.  <s:sequence> <s:element maxOccurs="1" minOccurs="0" name="updateProductPriceResult" type="s0:ArrayOfAnyType"/> 24.  </s:sequence> 25.  </s:complexType> 26.  </s:element> 27.  </s:schema> 28.  </types>

提高J2EE与.NET之间的互操作性,第2部分(3)

时间:2011-03-14 IBM

从第 9 行到第 13 行(详见清单 2)定义了复合类型 xsd:ArrayOfAnyType,连同 anyType 元素的无界序列。Products 的 ArrayList 已经被翻译成了 XML Schema 定义中的匿名元素序列。这是所期望的;但是,它也引发了两个问题。首先,其它的 Collection 类型也将被翻译成 xsd:ArrayOfAnyType。因此,在另一个平台上的 SOAP 工具包如何确定将它映射成哪种 Collection 类型?

其次,当没有指定类型的时候 xsd:anyType 就是缺省的类型。清单 2 中的第 11 行是需要的,因为 Collection 中的对象是通用的参照——在运行之前并不知道类型。当在另一个平台上的 SOAP 工具包接收到序列化的对象时问题发生了。您如何找出正确的序列化器来将 XML 载荷反序列化到具

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号