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