|
Revision 1814, 1.5 kB
(checked in by nahi, 2 years ago)
|
- oneway service support of WSDLDriverFactory. closes #346.
|
| Line | |
|---|
| 1 |
<?xml version="1.0" encoding="UTF-8"?> |
|---|
| 2 |
<definitions name="oneway" targetNamespace="http://www.example.com/oneway" xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:tns="http://www.example.com/oneway" xmlns:plnk="http://schemas.xmlsoap.org/ws/2003/05/partner-link/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:client="http://www.example.com/oneway"> |
|---|
| 3 |
<types> |
|---|
| 4 |
<schema attributeFormDefault="qualified" elementFormDefault="qualified" targetNamespace="http://www.example.com/oneway" xmlns="http://www.w3.org/2001/XMLSchema"> |
|---|
| 5 |
<element name="onewayProcessRequest"> |
|---|
| 6 |
<complexType> |
|---|
| 7 |
<sequence> |
|---|
| 8 |
<element name="msg" type="string" nillable="true" /> |
|---|
| 9 |
</sequence> |
|---|
| 10 |
</complexType> |
|---|
| 11 |
</element> |
|---|
| 12 |
</schema> |
|---|
| 13 |
</types> |
|---|
| 14 |
<message name="onewayRequestMessage"> |
|---|
| 15 |
<part name="payload" element="tns:onewayProcessRequest"/> |
|---|
| 16 |
</message> |
|---|
| 17 |
<portType name="onewayPort"> |
|---|
| 18 |
<operation name="initiate"> |
|---|
| 19 |
<input message="tns:onewayRequestMessage"/> |
|---|
| 20 |
</operation> |
|---|
| 21 |
</portType> |
|---|
| 22 |
<binding name="onewayBinding" type="tns:onewayPort"> |
|---|
| 23 |
<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/> |
|---|
| 24 |
<operation name="initiate"> |
|---|
| 25 |
<soap:operation style="document" soapAction="initiate"/> |
|---|
| 26 |
<input> |
|---|
| 27 |
<soap:body use="literal"/> |
|---|
| 28 |
</input> |
|---|
| 29 |
</operation> |
|---|
| 30 |
</binding> |
|---|
| 31 |
<service name="onewayService"> |
|---|
| 32 |
<port name="onewayPort" binding="tns:onewayBinding"> |
|---|
| 33 |
<soap:address location="http://localhost:1234/soap"/> |
|---|
| 34 |
</port> |
|---|
| 35 |
</service> |
|---|
| 36 |
</definitions> |
|---|