選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 
 

30 行
1.3 KiB

  1. <?xml version="1.0" ?>
  2. <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/">
  3. <types xmlns="http://schemas.xmlsoap.org/wsdl/" />
  4. <portType name="soapPort"><operation name="Hello">
  5. <input message="tns:HelloRequest" />
  6. <output message="tns:HelloResponse" />
  7. </operation>
  8. </portType>
  9. <binding name="soapBinding" type="tns:soapPort">
  10. <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http" />
  11. <operation name="Hello">
  12. <soap:operation soapAction="urn:soap#ZzcxService#Hello" />
  13. <input><soap:body use="encoded" namespace="urn:soap" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
  14. </input>
  15. <output>
  16. <soap:body use="encoded" namespace="urn:soap" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
  17. </output>
  18. </operation>
  19. </binding>
  20. <service name="soap">
  21. <documentation />
  22. <port name="soapPort" binding="tns:soapBinding"><soap:address location="http://localhost:20090/ctrip/creat_wsdl.php" />
  23. </port>
  24. </service>
  25. <message name="HelloRequest">
  26. </message>
  27. <message name="HelloResponse">
  28. <part name="Hello" type="xsd:string" />
  29. </message>
  30. </definitions>