Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'tests/org.eclipse.wst.wsi.tests/testResources/samples/wsdl/bp/2406-1/2406-1.wsdl')
-rw-r--r--tests/org.eclipse.wst.wsi.tests/testResources/samples/wsdl/bp/2406-1/2406-1.wsdl33
1 files changed, 0 insertions, 33 deletions
diff --git a/tests/org.eclipse.wst.wsi.tests/testResources/samples/wsdl/bp/2406-1/2406-1.wsdl b/tests/org.eclipse.wst.wsi.tests/testResources/samples/wsdl/bp/2406-1/2406-1.wsdl
deleted file mode 100644
index ae24860a1..000000000
--- a/tests/org.eclipse.wst.wsi.tests/testResources/samples/wsdl/bp/2406-1/2406-1.wsdl
+++ /dev/null
@@ -1,33 +0,0 @@
-<?xml version="1.0"?>
-<definitions name="SampleService" targetNamespace="http://tempuri.org/" xmlns:tns="http://tempuri.org/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns="http://schemas.xmlsoap.org/wsdl/">
- <message name="getSampleRequest">
- <part name="zipcode" type="xsd:string"/>
- </message>
- <message name="getSampleResponse">
- <part name="return" type="xsd:float"/>
- </message>
- <portType name="SamplePortType">
- <operation name="getSample">
- <input message="tns:getSampleRequest"/>
- <output message="tns:getSampleResponse"/>
- </operation>
- </portType>
- <binding name="SampleBinding" type="tns:SamplePortType">
- <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
- <operation name="getSample">
- <soap:operation soapAction=""/>
- <input>
- <soap:body use="encoded" namespace="http://tempuri.org/" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
- </input>
- <output>
- <soap:body use="encoded" namespace="http://tempuri.org/" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
- </output>
- </operation>
- </binding>
- <service name="SampleService">
- <documentation></documentation>
- <port name="SamplePort" binding="tns:SampleBinding">
- <soap:address location="http://tempuri.org/"/>
- </port>
- </service>
-</definitions>

Back to the top