WSDL Tutorial
WSDL Elements
WSDL References
WSDL Useful Resources
Selected Reading
WSDL Elements
- WSDL - <service>
- WSDL - <ports>
- WSDL - <binding>
- WSDL - <portType>
- WSDL - <message>
- WSDL - <types>
- WSDL - <definitions>
WSDL References
WSDL Useful Resources
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
WSDL - <types>
WSDL - <types> Element
网上服务需要界定其投入和产出,以及它们如何被绘制成地图并脱离这些服务。 WSDL <types> 内容是确定网络服务所使用的数据类型。 类型为XML文件或文件部分。
类型<-i>要素说明用户与服务器之间使用的所有数据类型。
WSDL并不完全与具体的打字系统挂钩。
W3C XML Schema规格作为确定数据类型的缺省选择。
如果该服务只使用XML Schema的简单类型,例如插图和分类,则不需要 类型。
WSDL允许以单独要素界定这些类型,以便这些类型能够用多种网络服务加以重新使用。
这里是摘自W3C规格的法典。 该法典描述了如何在妇女地位部内使用型元件。
<types> <schema targetNamespace = "http://example.com/stockquote.xsd" xmlns = "http://www.w3.org/2000/10/XMLSchema"> <element name = "TradePriceRequest"> <complexType> <all> <element name = "tickerSymbol" type = "string"/> </all> </complexType> </element> <element name = "TradePrice"> <complexType> <all> <element name = "price" type = "float"/> </all> </complexType> </element> </schema> </types>
数据类型涉及确定数据类型和你打算使用网络服务的格式的问题。 发送人与接收人共享信息类型。 因此,信息的接收者需要获得你用来编码数据的信息,并且必须了解如何编码数据。
Advertisements