Change soft-fail to use the config, rather than env
[rbx.git] / test / mri / wsdl / axisArray / axisArray.wsdl
blob3602edb7482a6e26e28f79b4c265948ba928066e
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 </schema>
25 </wsdl:types>
27 <wsdl:message name="listItemRequest"/>
29 <wsdl:message name="listItemResponse">
30 <wsdl:part name="list" type="typens:ItemList"/>
31 </wsdl:message>
33 <wsdl:portType name="ItemListPortType">
34 <wsdl:operation name="listItem">
35 <wsdl:input message="tns:listItemRequest" name="listItemRequest"/>
36 <wsdl:output message="tns:listItemResponse" name="listItemResponse"/>
37 </wsdl:operation>
38 </wsdl:portType>
40 <wsdl:binding name="ItemListBinding" type="tns:ItemListPortType">
41 <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
42 <wsdl:operation name="listItem">
43 <soap:operation soapAction=""/>
44 <wsdl:input name="listItemRequest">
45 <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
46 namespace="urn:jp.gr.jin.rrr.example.itemList" use="encoded"/>
47 </wsdl:input>
48 <wsdl:output name="listItemResponse">
49 <soap:body encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
50 namespace="urn:jp.gr.jin.rrr.example.itemList" use="encoded"/>
51 </wsdl:output>
52 </wsdl:operation>
53 </wsdl:binding>
55 <wsdl:service name="ItemListService">
56 <wsdl:port binding="tns:ItemListBinding" name="ItemListPort">
57 <soap:address location="http://localhost:10080/"/>
58 </wsdl:port>
59 </wsdl:service>
60 </wsdl:definitions>