Advertisement
Guest User

ProblemReportService.wsdl

a guest
Mar 9th, 2011
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.36 KB | None | 0 0
  1. <wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:tns="http://localhost/ProblemReportService.wsdl" xmlns:ha1="http://localhost/ProblemReport.xsd" name="ProblemReportService" targetNamespace="http://localhost/ProblemReportService.wsdl">
  2.     <wsdl:types>
  3.         <xs:schema attributeFormDefault="unqualified" elementFormDefault="qualified" xmlns:ha1="http://localhost/ProblemReport.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  4.             <xs:import namespace="http://localhost/ProblemReport.xsd" schemaLocation="ProblemReport.xsd"/>
  5.             <xs:import namespace="http://localhost/dropdownvalues.xsd" schemaLocation="dropdownvalues.xsd"/>
  6.         </xs:schema>
  7.     </wsdl:types>
  8.     <wsdl:message name="NewProblemReportRequest">
  9.         <wsdl:part name="request" element="ha1:ProblemReport"/>
  10.     </wsdl:message>
  11.     <wsdl:message name="ProblemReportResponse">
  12.         <wsdl:part name="parameter" type="xs:string"/>
  13.     </wsdl:message>
  14.     <wsdl:portType name="ProblemReportPortType">
  15.         <wsdl:operation name="submitProblemReport">
  16.             <wsdl:input message="tns:NewProblemReportRequest"/>
  17.             <wsdl:output message="tns:ProblemReportResponse"/>
  18.         </wsdl:operation>
  19.     </wsdl:portType>
  20.     <wsdl:binding name="ProblemReportBinding" type="tns:ProblemReportPortType">
  21.         <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
  22.         <wsdl:operation name="submitProblemReport">
  23.             <soap:operation soapAction="urn:http://localhost/KMTR/includes/businesslogic/"/>
  24.             <wsdl:input>
  25.                 <soap:body use="literal"/>
  26.             </wsdl:input>
  27.             <wsdl:output>
  28.                 <soap:body use="literal"/>
  29.             </wsdl:output>
  30.         </wsdl:operation>
  31.     </wsdl:binding>
  32.     <wsdl:service name="ProblemReportService">
  33.         <wsdl:port name="NewPort" binding="tns:ProblemReportBinding">
  34.             <soap:address location="http://127.0.0.1/KMTR/includes/businesslogic/ha1WsdlSoapService.php"/>
  35.         </wsdl:port>
  36.     </wsdl:service>
  37. </wsdl:definitions>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement