zoukankan      html  css  js  c++  java
  • 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");


  • 相关阅读:
    CSS旧版flex及兼容
    深入理解CSS弹性盒模型flex
    CSS文本方向
    文本溢出text-overflow和文本阴影text-shadow
    深入理解CSS中的空白符和换行
    CSS中常见的6种文本样式
    理解CSS相对定位和固定定位
    CSS绝对定位的应用
    深入理解CSS绝对定位absolute
    深入理解CSS中的margin负值
  • 原文地址:https://www.cnblogs.com/zno2/p/4651659.html
Copyright © 2011-2022 走看看