http://localhost:8080/hello?wsdl


<definitions
    xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd"
    xmlns:wsp="http://www.w3.org/ns/ws-policy" xmlns:wsp1_2="http://schemas.xmlsoap.org/ws/2004/09/policy"
    xmlns:wsam="http://www.w3.org/2007/05/addressing/metadata" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
    xmlns:tns="http://impl.service.zno.cn/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://impl.service.zno.cn/"
    name="HelloServiceImplService">
    <types>
        <xsd:schema>
            <xsd:import namespace="http://impl.service.zno.cn/" schemaLocation="http://localhost:8080/hello?xsd=1" />
        </xsd:schema>
    </types>
    <message name="say">
        <part name="parameters" element="tns:say" />
    </message>
    <message name="sayResponse">
        <part name="parameters" element="tns:sayResponse" />
    </message>
    <portType name="HelloService1">
        <operation name="say">
            <input wsam:Action="http://impl.service.zno.cn/HelloService1/sayRequest" message="tns:say" />
            <output wsam:Action="http://impl.service.zno.cn/HelloService1/sayResponse" message="tns:sayResponse" />
        </operation>
    </portType>
    <binding name="HelloService1PortBinding" type="tns:HelloService1">
        <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document" />
        <operation name="say">
            <soap:operation soapAction="" />
            <input>
                <soap:body use="literal" />
            </input>
            <output>
                <soap:body use="literal" />
            </output>
        </operation>
    </binding>
    <service name="HelloServiceImplService">
        <port name="HelloService1Port" binding="tns:HelloService1PortBinding">
            <soap:address location="http://localhost:8080/hello" />
        </port>
    </service>
</definitions>
這里有一個service 叫HelloServiceImplService
它有一個port 叫HelloService1Port
這個port的地址是location
這個port綁定的類是HelloService1
這個類有一個方法say

整體閱讀應該是由下往上看
tns 為 target name space
// String namespaceURI, String localPart
QName qname = new QName("http://impl.service.zno.cn/","HelloServiceImplService");
        
Service service = Service.create(new URL("http://localhost:8080/hello?wsdl"),qname);
HelloService1 serv = service.getPort(HelloService1.class);
serv.say("hi");

 




免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM