wsdl文檔解釋

WSDL文檔主要結構

<definitions>
    <types>
        <schema>
            <element></element>
        <schema>
    </types>

    <message>
        <part></part>

    <portType>
        <operation>
            <input></input>
            <output></output>
        </operation>
    </portType>

    <binding>
        <operation>
            <input></input>
            <output></output>
        </operation>

    <service>
        <port>
        </port>
    </service>
</definitions>

結構和關係如下圖:
這裏寫圖片描述

1.wsdl文件頭:
這裏寫圖片描述

2.types部分:
這裏寫圖片描述

3.message部分
這裏寫圖片描述

4.portType部分
這裏寫圖片描述

5.binding部分
這裏寫圖片描述

6.service部分
這裏寫圖片描述

理解不到位的地方希望各位指出來,謝謝!

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章