Não pode escolher mais do que 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
|
- <?xml version="1.0" ?>
- <definitions name="soap" targetNamespace="urn:soap" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="urn:soap" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns="http://schemas.xmlsoap.org/wsdl/">
- <types xmlns="http://schemas.xmlsoap.org/wsdl/" />
- <portType name="soapPort"><operation name="Hello">
- <input message="tns:HelloRequest" />
- <output message="tns:HelloResponse" />
- </operation>
- </portType>
- <binding name="soapBinding" type="tns:soapPort">
- <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http" />
- <operation name="Hello">
- <soap:operation soapAction="urn:soap#ZzcxService#Hello" />
- <input><soap:body use="encoded" namespace="urn:soap" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
- </input>
- <output>
- <soap:body use="encoded" namespace="urn:soap" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
- </output>
- </operation>
- </binding>
- <service name="soap">
- <documentation />
- <port name="soapPort" binding="tns:soapBinding"><soap:address location="http://localhost:20090/ctrip/creat_wsdl.php" />
- </port>
- </service>
- <message name="HelloRequest">
- </message>
- <message name="HelloResponse">
- <part name="Hello" type="xsd:string" />
- </message>
- </definitions>
|