WSDL很重要的几个Elements:
<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 |
1.从<service>作为入口,<service>的子元素<address>定义了webservice 的URL ,子元素<port>与一个binding相关联
2.在<binding>中定义了跟什么<portType>进行绑定,及其怎样绑定,使用的是rpc还是document,还定义了绑定了哪些方法<operation>,及其方法里面的<input>和<output>的message内容。这里就和<message>相关联了
3.在<message>中使用<part>详细的规定了message中内容。其中内容的规范<type>就和<types>联系起来了
4.<types>主要是定义了具体的schema