Web Service中有關WSDL的學習心得
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 |
2.在<binding>中定義了跟什么<portType>進行綁定,及其怎樣綁定,使用的是rpc還是document,還定義了綁定了哪些方法<operation>,及其方法里面的<input>和<output>的message內容。這里就和<message>相關聯了
3.在<message>中使用<part>詳細的規定了message中內容。其中內容的規范<type>就和<types>聯系起來了
4.<types>主要是定義了具體的schema
posted on 2008-01-11 10:20 劉錚 閱讀(332) 評論(0) 編輯 收藏 所屬分類: WebService