|
Revision 1584, 1.3 kB
(checked in by nahi, 3 years ago)
|
rpc/literal support. closes #118.
|
| Line | |
|---|
| 1 |
<?xml version="1.0" encoding="utf-8"?> |
|---|
| 2 |
<definitions |
|---|
| 3 |
name="lp" |
|---|
| 4 |
targetNamespace="urn:lp" |
|---|
| 5 |
xmlns:tns="urn:lp" |
|---|
| 6 |
xmlns:xsd="http://www.w3.org/2001/XMLSchema" |
|---|
| 7 |
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" |
|---|
| 8 |
xmlns="http://schemas.xmlsoap.org/wsdl/"> |
|---|
| 9 |
<types> |
|---|
| 10 |
<schema xmlns="http://www.w3.org/2001/XMLSchema"> |
|---|
| 11 |
<import namespace="urn:lp" schemaLocation="lp.xsd"/> |
|---|
| 12 |
</schema> |
|---|
| 13 |
</types> |
|---|
| 14 |
|
|---|
| 15 |
<message name="login_in"> |
|---|
| 16 |
<part name="parameters" element="tns:login" /> |
|---|
| 17 |
</message> |
|---|
| 18 |
<message name="login_out"> |
|---|
| 19 |
<part name="parameters" element="tns:loginResponse" /> |
|---|
| 20 |
</message> |
|---|
| 21 |
|
|---|
| 22 |
<portType name="lp_porttype"> |
|---|
| 23 |
<operation name="login"> |
|---|
| 24 |
<input message="tns:login_in" /> |
|---|
| 25 |
<output message="tns:login_out" /> |
|---|
| 26 |
</operation> |
|---|
| 27 |
</portType> |
|---|
| 28 |
|
|---|
| 29 |
<binding name="lp_binding" type="tns:lp_porttype"> |
|---|
| 30 |
<soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document" /> |
|---|
| 31 |
<operation name="login"> |
|---|
| 32 |
<soap:operation soapAction="urn:lp:login" style="document" /> |
|---|
| 33 |
<input> |
|---|
| 34 |
<soap:body use="literal" /> |
|---|
| 35 |
</input> |
|---|
| 36 |
<output> |
|---|
| 37 |
<soap:body use="literal" /> |
|---|
| 38 |
</output> |
|---|
| 39 |
</operation> |
|---|
| 40 |
</binding> |
|---|
| 41 |
|
|---|
| 42 |
<service name="lp_service"> |
|---|
| 43 |
<port name="lp_service_port" binding="tns:lp_binding"> |
|---|
| 44 |
<soap:address location="http://localhost:17171/" /> |
|---|
| 45 |
</port> |
|---|
| 46 |
</service> |
|---|
| 47 |
</definitions> |
|---|