handleReport.wsdl 1.5 KB

12345678910111213141516171819202122232425262728293031
  1. <?xml version="1.0" ?>
  2. <definitions name="handleReport" targetNamespace="urn:handleReport" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="urn:handleReport" 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="handleReportPort"><operation name="getDiAnData">
  5. <input message="tns:getDiAnDataRequest" />
  6. <output message="tns:getDiAnDataResponse" />
  7. </operation>
  8. </portType>
  9. <binding name="handleReportBinding" type="tns:handleReportPort">
  10. <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http" />
  11. <operation name="getDiAnData">
  12. <soap:operation soapAction="urn:handleReport#handleReport#getDiAnData" />
  13. <input><soap:body use="encoded" namespace="urn:handleReport" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
  14. </input>
  15. <output>
  16. <soap:body use="encoded" namespace="urn:handleReport" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
  17. </output>
  18. </operation>
  19. </binding>
  20. <service name="handleReport">
  21. <documentation />
  22. <port name="handleReportPort" binding="tns:handleReportBinding"><soap:address location="http://localhost:8085/server.php" />
  23. </port>
  24. </service>
  25. <message name="getDiAnDataRequest">
  26. <part name="data" type="xsd:string" />
  27. </message>
  28. <message name="getDiAnDataResponse">
  29. <part name="getDiAnData" type="xsd:string" />
  30. </message>
  31. </definitions>