WSDL Web 服务描述语言。
WSDL 用 XML 写。
WSDL 是一个 XML 文档。
WSDL 用来描述 Web 服务。
WSDL 用来定位 Web 服务。
WSDL 仍然不是 W3C 标准。
Element | Defines |
---|---|
<portType> | The operations performed by the web service |
<message> | The messages used by the web service |
<types> | The data types used by the web service |
<binding> | The communication protocols used by the web service |
WSDL 文档的主要结构如下:
xml 代码
- < definitions >
- < types >
- definition of types........
- </ types >
- < message >
- definition of a message....
- </ message >
- < portType >
- definition of a port.......
- </ portType >
- < binding >
- definition of a binding....
- </ binding >
- </ definitions >