-
Notifications
You must be signed in to change notification settings - Fork 0
/
soap.wsdl
31 lines (31 loc) · 1.42 KB
/
soap.wsdl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?xml version="1.0" ?>
<definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="http://localhost" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://localhost" name="JumpService">
<types/>
<portType name="JumpService">
<operation name="getDbPerson">
<input message="tns:getDbPersonRequest" />
<output message="tns:getDbPersonResponse" />
</operation>
</portType>
<binding name="JumpServicePortBinding" type="tns:JumpService">
<soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http" />
<operation name="getDbPerson">
<soap:operation soapAction="urn:JumpService#JumpService#getDbPerson" />
<input><soap:body use="encoded" namespace="urn:JumpService" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
</input>
<output>
<soap:body use="encoded" namespace="urn:JumpService" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
</output>
</operation>
</binding>
<service name="JumpService">
<port name="JumpServicePort" binding="tns:JumpServicePortBinding"><soap:address location="http://localhost/webservice/JumpService/servicev2.php" />
</port>
</service>
<message name="getDbPersonRequest">
<part name="id" type="xsd:int" />
</message>
<message name="getDbPersonResponse">
<part name="return" type="xsd:string" />
</message>
</definitions>