123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- <?xml version="1.0" encoding="utf-8"?>
- <wsdl:definitions xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="http://com.pft.webserviceintf" xmlns:ns1="http://schemas.xmlsoap.org/soap/http" name="GeneralWebService" targetNamespace="http://com.pft.webserviceintf" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
- <wsdl:types>
- <xs:schema attributeFormDefault="unqualified" elementFormDefault="unqualified" targetNamespace="http://com.pft.webserviceintf" xmlns:xs="http://www.w3.org/2001/XMLSchema">
- <xs:element name="batchcall" type="tns:batchcall" />
- <xs:element name="batchcallResponse" type="tns:batchcallResponse" />
- <xs:element name="call" type="tns:call" />
- <xs:element name="callResponse" type="tns:callResponse" />
- <xs:complexType name="call">
- <xs:sequence>
- <xs:element minOccurs="0" name="servicename" type="xs:string" />
- <xs:element minOccurs="0" maxOccurs="unbounded" name="params" type="xs:string" />
- </xs:sequence>
- </xs:complexType>
- <xs:complexType name="callResponse">
- <xs:sequence>
- <xs:element minOccurs="0" name="return" type="xs:string" />
- </xs:sequence>
- </xs:complexType>
- <xs:complexType name="generalWebServiceFaultBean">
- <xs:sequence>
- <xs:element minOccurs="0" name="code" type="xs:string" />
- <xs:element minOccurs="0" name="message" type="xs:string" />
- </xs:sequence>
- </xs:complexType>
- <xs:complexType name="batchcall">
- <xs:sequence>
- <xs:element minOccurs="0" name="servicename" type="xs:string" />
- <xs:element minOccurs="0" name="batchdata" type="xs:string" />
- <xs:element minOccurs="0" maxOccurs="unbounded" name="params" type="xs:string" />
- </xs:sequence>
- </xs:complexType>
- <xs:complexType name="batchcallResponse">
- <xs:sequence>
- <xs:element minOccurs="0" name="return" type="xs:string" />
- </xs:sequence>
- </xs:complexType>
- <xs:element name="GeneralWebServiceFault" nillable="true" type="tns:generalWebServiceFaultBean" />
- </xs:schema>
- </wsdl:types>
- <wsdl:message name="call">
- <wsdl:part name="parameters" element="tns:call" />
- </wsdl:message>
- <wsdl:message name="batchcall">
- <wsdl:part name="parameters" element="tns:batchcall" />
- </wsdl:message>
- <wsdl:message name="callResponse">
- <wsdl:part name="parameters" element="tns:callResponse" />
- </wsdl:message>
- <wsdl:message name="batchcallResponse">
- <wsdl:part name="parameters" element="tns:batchcallResponse" />
- </wsdl:message>
- <wsdl:message name="GeneralWebServiceFault">
- <wsdl:part name="GeneralWebServiceFault" element="tns:GeneralWebServiceFault" />
- </wsdl:message>
- <wsdl:portType name="GeneralWebService">
- <wsdl:operation name="call">
- <wsdl:input name="call" message="tns:call" />
- <wsdl:output name="callResponse" message="tns:callResponse" />
- <wsdl:fault name="GeneralWebServiceFault" message="tns:GeneralWebServiceFault" />
- </wsdl:operation>
- <wsdl:operation name="batchcall">
- <wsdl:input name="batchcall" message="tns:batchcall" />
- <wsdl:output name="batchcallResponse" message="tns:batchcallResponse" />
- <wsdl:fault name="GeneralWebServiceFault" message="tns:GeneralWebServiceFault" />
- </wsdl:operation>
- </wsdl:portType>
- <wsdl:binding name="GeneralWebServiceSoapBinding" type="tns:GeneralWebService">
- <soap:binding transport="http://schemas.xmlsoap.org/soap/http" />
- <wsdl:operation name="call">
- <soap:operation soapAction="" style="document" />
- <wsdl:input name="call">
- <soap:body use="literal" />
- </wsdl:input>
- <wsdl:output name="callResponse">
- <soap:body use="literal" />
- </wsdl:output>
- <wsdl:fault name="GeneralWebServiceFault">
- <soap:fault use="literal" name="GeneralWebServiceFault" namespace="" />
- </wsdl:fault>
- </wsdl:operation>
- <wsdl:operation name="batchcall">
- <soap:operation soapAction="" style="document" />
- <wsdl:input name="batchcall">
- <soap:body use="literal" />
- </wsdl:input>
- <wsdl:output name="batchcallResponse">
- <soap:body use="literal" />
- </wsdl:output>
- <wsdl:fault name="GeneralWebServiceFault">
- <soap:fault use="literal" name="GeneralWebServiceFault" namespace="" />
- </wsdl:fault>
- </wsdl:operation>
- </wsdl:binding>
- <wsdl:service name="GeneralWebService">
- <wsdl:port name="GeneralWebServicePort" binding="tns:GeneralWebServiceSoapBinding">
- <soap:address location="http://192.168.0.48:8088/webservice4o3mis/ws/general" />
- </wsdl:port>
- </wsdl:service>
- </wsdl:definitions>
|