Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // REQUEST
- <v:Envelope xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns:d="http://www.w3.org/2001/XMLSchema" xmlns:c="http://schemas.xmlsoap.org/soap/encoding/" xmlns:v="http://schemas.xmlsoap.org/soap/envelope/"><v:Header />
- <v:Body>
- <n0:checkUserLogin id="o0" c:root="1" xmlns:n0="http://ServerFacade/">
- <username i:type="d:string">name</username>
- <password i:type="d:string">pass</password>
- </n0:checkUserLogin>
- </v:Body>
- </v:Envelope>
- // RESPONSE
- <?xml version='1.0' encoding='UTF-8'?>
- <S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/">
- <S:Body>
- <ns2:checkUserLoginResponse xmlns:ns2="http://ServerFacade/">
- <return>
- <message>Login erfolgreich!</message>
- <msgType>1</msgType>
- </return>
- </ns2:checkUserLoginResponse>
- </S:Body>
- </S:Envelope>
- // WSDL
- //operation
- <operation name="checkUserLogin">
- <input wsam:Action="http://ServerFacade/ItemService/checkUserLoginRequest" message="tns:checkUserLogin"/>
- <output wsam:Action="http://ServerFacade/ItemService/checkUserLoginResponse" message="tns:checkUserLoginResponse"/>
- </operation>
- //messages
- <message name="checkUserLogin">
- <part name="parameters" element="tns:checkUserLogin"/>
- </message>
- <message name="checkUserLoginResponse">
- <part name="parameters" element="tns:checkUserLoginResponse"/>
- </message>
- //checkUserResponse
- <xs:element name="checkUserLoginResponse" type="tns:checkUserLoginResponse"/>
- <xs:complexType name="checkUserLoginResponse">
- <xs:sequence>
- <xs:element name="return" type="tns:serverMessageStruct" minOccurs="0"/>
- </xs:sequence>
- </xs:complexType>
Advertisement
Add Comment
Please, Sign In to add comment