Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'tests/org.eclipse.wst.wsi.tests/testResources/samples/wsdl/SOAP12/SimpleLog.wsdl')
-rw-r--r--tests/org.eclipse.wst.wsi.tests/testResources/samples/wsdl/SOAP12/SimpleLog.wsdl37
1 files changed, 0 insertions, 37 deletions
diff --git a/tests/org.eclipse.wst.wsi.tests/testResources/samples/wsdl/SOAP12/SimpleLog.wsdl b/tests/org.eclipse.wst.wsi.tests/testResources/samples/wsdl/SOAP12/SimpleLog.wsdl
deleted file mode 100644
index c5e8331b8..000000000
--- a/tests/org.eclipse.wst.wsi.tests/testResources/samples/wsdl/SOAP12/SimpleLog.wsdl
+++ /dev/null
@@ -1,37 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<definitions xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:tns="http://test/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" name="HelloService" targetNamespace="http://test/">
- <types>
- <xsd:schema>
- <xsd:import namespace="http://test/" schemaLocation="HelloService_schema1.xsd"/>
- </xsd:schema>
- </types>
- <message name="hello">
- <part element="tns:hello" name="parameters"/>
- </message>
- <message name="helloResponse">
- <part element="tns:helloResponse" name="parameters"/>
- </message>
- <portType name="Hello">
- <operation name="hello">
- <input message="tns:hello"/>
- <output message="tns:helloResponse"/>
- </operation>
- </portType>
- <binding name="HelloPortBinding" type="tns:Hello">
- <soap12:binding style="document" transport="http://www.w3.org/2003/05/soap/bindings/HTTP/"/>
- <operation name="hello">
- <soap12:operation soapAction=""/>
- <input>
- <soap12:body use="literal"/>
- </input>
- <output>
- <soap12:body use="literal"/>
- </output>
- </operation>
- </binding>
- <service name="HelloService">
- <port binding="tns:HelloPortBinding" name="HelloPort">
- <soap12:address location="http://localhost:9081/td12/HelloService"/>
- </port>
- </service>
-</definitions>

Back to the top