| 1 |
<?xml version="1.0" encoding="UTF-8"?> |
|---|
| 2 |
<wsdl:definitions name = "itemList" |
|---|
| 3 |
targetNamespace="urn:jp.gr.jin.rrr.example.itemList" |
|---|
| 4 |
xmlns:tns="urn:jp.gr.jin.rrr.example.itemList" |
|---|
| 5 |
xmlns:typens="urn:jp.gr.jin.rrr.example.itemListType" |
|---|
| 6 |
xmlns="http://schemas.xmlsoap.org/wsdl/" |
|---|
| 7 |
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" |
|---|
| 8 |
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" |
|---|
| 9 |
xmlns:xsd="http://www.w3.org/2001/XMLSchema"> |
|---|
| 10 |
<wsdl:types> |
|---|
| 11 |
<schema targetNamespace="urn:jp.gr.jin.rrr.example.itemListType" |
|---|
| 12 |
xmlns="http://www.w3.org/2001/XMLSchema"> |
|---|
| 13 |
<import namespace="http://schemas.xmlsoap.org/soap/encoding/"/> |
|---|
| 14 |
<complexType name="Item"> |
|---|
| 15 |
<sequence> |
|---|
| 16 |
<element name="name" type="xsd:string"/> |
|---|
| 17 |
</sequence> |
|---|
| 18 |
</complexType> |
|---|
| 19 |
<complexType name="ItemList"> |
|---|
| 20 |
<sequence> |
|---|
| 21 |
<element maxOccurs="unbounded" minOccurs="0" name="Item" type="typens:Item"/> |
|---|
| 22 |
</sequence> |
|---|
| 23 |
</complexType> |
|---|
| 24 |
|
|---|
| 25 |
<complexType name="MeetingInfo"> |
|---|
| 26 |
<sequence> |
|---|
| 27 |
<element name="meetingId" type="xsd:long"/> |
|---|
| 28 |
</sequence> |
|---|
| 29 |
</complexType> |
|---|
| 30 |
</schema> |
|---|
| 31 |
</wsdl:types> |
|---|
| 32 |
|
|---|
| 33 |
<wsdl:message name="listItemRequest"/> |
|---|
| 34 |
|
|---|
| 35 |
<wsdl:message name="listItemResponse"> |
|---|
| 36 |
<wsdl:part name="list" type="typens:ItemList"/> |
|---|
| 37 |
</wsdl:message> |
|---|
| 38 |
|
|---|
| 39 |
<wsdl:message name="getMeetingInfoRequest"/> |
|---|
| 40 |
|
|---|
| 41 |
<wsdl:message name="getMeetingInfoResponse"> |
|---|
| 42 |
<wsdl:part name="getMeetingInfoReturn" type="typens:MeetingInfo"/> |
|---|
| 43 |
</wsdl:message> |
|---|
| 44 |
|
|---|
| 45 |
<wsdl:portType name="ItemListPortType"> |
|---|
| 46 |
<wsdl:operation name="listItem"> |
|---|
| 47 |
<wsdl:input message="tns:listItemRequest" name="listItemRequest"/> |
|---|
| 48 |
<wsdl:output message="tns:listItemResponse" name="listItemResponse"/> |
|---|
| 49 |
</wsdl:operation> |
|---|
| 50 |
<wsdl:operation name="getMeetingInfo"> |
|---|
| 51 |
<wsdl:input name="getMeetingInfoRequest" message="tns:getMeetingInfoRequest"/> |
|---|
| 52 |
<wsdl:output name="getMeetingInfoResponse" message="tns:getMeetingInfoResponse"/> |
|---|
| 53 |
</wsdl:operation> |
|---|
| 54 |
</wsdl:portType> |
|---|
| 55 |
|
|---|
| 56 |
<wsdl:binding name="ItemListBinding" type="tns:ItemListPortType"> |
|---|
| 57 |
<soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/> |
|---|
| 58 |
<wsdl:operation name="listItem"> |
|---|
| 59 |
<soap:operation soapAction=""/> |
|---|
| 60 |
<wsdl:input name="listItemRequest"> |
|---|
| 61 |
<soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" |
|---|
| 62 |
namespace="urn:jp.gr.jin.rrr.example.itemList" use="encoded"/> |
|---|
| 63 |
</wsdl:input> |
|---|
| 64 |
<wsdl:output name="listItemResponse"> |
|---|
| 65 |
<soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" |
|---|
| 66 |
namespace="urn:jp.gr.jin.rrr.example.itemList" use="encoded"/> |
|---|
| 67 |
</wsdl:output> |
|---|
| 68 |
</wsdl:operation> |
|---|
| 69 |
<wsdl:operation name="getMeetingInfo"> |
|---|
| 70 |
<soap:operation soapAction=""/> |
|---|
| 71 |
<wsdl:input name="getMeetingInfoRequest"> |
|---|
| 72 |
<soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" |
|---|
| 73 |
namespace="urn:jp.gr.jin.rrr.example.itemList"/> |
|---|
| 74 |
</wsdl:input> |
|---|
| 75 |
<wsdl:output name="getMeetingInfoResponse"> |
|---|
| 76 |
<soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" |
|---|
| 77 |
namespace="urn:jp.gr.jin.rrr.example.itemList"/> |
|---|
| 78 |
</wsdl:output> |
|---|
| 79 |
</wsdl:operation> |
|---|
| 80 |
</wsdl:binding> |
|---|
| 81 |
|
|---|
| 82 |
<wsdl:service name="ItemListService"> |
|---|
| 83 |
<wsdl:port binding="tns:ItemListBinding" name="ItemListPort"> |
|---|
| 84 |
<soap:address location="http://localhost:10080/"/> |
|---|
| 85 |
</wsdl:port> |
|---|
| 86 |
</wsdl:service> |
|---|
| 87 |
</wsdl:definitions> |
|---|