summaryrefslogtreecommitdiff
path: root/ruby_1_8_6/test/wsdl/document/ping_nosoapaction.wsdl
diff options
context:
space:
mode:
Diffstat (limited to 'ruby_1_8_6/test/wsdl/document/ping_nosoapaction.wsdl')
-rw-r--r--ruby_1_8_6/test/wsdl/document/ping_nosoapaction.wsdl66
1 files changed, 0 insertions, 66 deletions
diff --git a/ruby_1_8_6/test/wsdl/document/ping_nosoapaction.wsdl b/ruby_1_8_6/test/wsdl/document/ping_nosoapaction.wsdl
deleted file mode 100644
index ab9529e456..0000000000
--- a/ruby_1_8_6/test/wsdl/document/ping_nosoapaction.wsdl
+++ /dev/null
@@ -1,66 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<definitions xmlns:tns="http://xmlsoap.org/Ping"
-xmlns="http://schemas.xmlsoap.org/wsdl/"
-xmlns:xsd="http://www.w3.org/2001/XMLSchema"
-xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
-targetNamespace="http://xmlsoap.org/Ping" name="Ping">
- <types>
- <schema targetNamespace="http://xmlsoap.org/Ping"
- xmlns="http://www.w3.org/2001/XMLSchema"
- elementFormDefault="qualified">
- <complexType name="ping">
- <sequence>
- <element name="scenario" type="xsd:string"
- nillable="true"/>
- <element name="origin" type="xsd:string"
- nillable="true"/>
- <element name="text" type="xsd:string"
- nillable="true"/>
- </sequence>
- </complexType>
- <complexType name="pingResponse">
- <sequence>
- <element name="scenario" type="xsd:string"
- nillable="true"/>
- <element name="origin" type="xsd:string"
- nillable="true"/>
- <element name="text" type="xsd:string"
- nillable="true"/>
- </sequence>
- </complexType>
- <element name="Ping" type="tns:ping"/>
- <element name="PingResponse" type="tns:pingResponse"/>
- </schema>
- </types>
- <message name="PingRequest">
- <part name="ping" element="tns:Ping"/>
- </message>
- <message name="PingResponse">
- <part name="pingResponse" element="tns:PingResponse"/>
- </message>
- <portType name="PingPort">
- <operation name="Ping">
- <input message="tns:PingRequest"/>
- <output message="tns:PingResponse"/>
- </operation>
- </portType>
- <binding name="PingBinding" type="tns:PingPort">
- <soap:binding style="document"
- transport="http://schemas.xmlsoap.org/soap/http"/>
- <operation name="Ping">
- <soap:operation/>
- <input>
- <soap:body use="literal"/>
- </input>
- <output>
- <soap:body use="literal"/>
- </output>
- </operation>
- </binding>
- <service name="PingService">
- <port name="PingPort" binding="tns:PingBinding">
- <soap:address
- location="http://127.0.0.1:8080/axis/services/PingPort"/>
- </port>
- </service>
-</definitions>