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 - <message>
WSDL - <message> Element
<message> 内容介绍了网络服务提供者与消费者之间正在交换的数据。
每个网络服务处有两个信息:投入和产出。
这些投入说明了网络服务的参数,产出介绍了网络服务的回报数据。
每一信息均包含0或更多<part>。 参数,每个参数的网络服务功能。
每一<part> 参数与<types>界定的具体类型有关。 集装箱元素。
让我们从《妇女发展权利宣言》的例章中抽取一部法典。
<message name = "SayHelloRequest"> <part name = "firstName" type = "xsd:string"/> </message> <message name = "SayHelloResponse"> <part name = "greeting" type = "xsd:string"/> </message>
这里界定了两个信息内容。 第一项是请求信息SayHelloRequest,第二项是回复信息SayHelloResponse。
这些信息中的每一部分都包含一个部分内容。 就请求而言,该部分具体规定了职能参数;在这种情况下,我们规定了一个单一的firstName参数。 对答复而言,该部分具体规定了职能回报值;在这种情况下,我们具体说明了一次问候回报值。
Advertisements