Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'tests/org.eclipse.wst.ws.tests/data/wsdlcopier/1')
-rw-r--r--tests/org.eclipse.wst.ws.tests/data/wsdlcopier/1/2/3/test.wsdl44
-rw-r--r--tests/org.eclipse.wst.ws.tests/data/wsdlcopier/1/2a/start.wsdl23
-rw-r--r--tests/org.eclipse.wst.ws.tests/data/wsdlcopier/1/2a/test.xsd7
3 files changed, 0 insertions, 74 deletions
diff --git a/tests/org.eclipse.wst.ws.tests/data/wsdlcopier/1/2/3/test.wsdl b/tests/org.eclipse.wst.ws.tests/data/wsdlcopier/1/2/3/test.wsdl
deleted file mode 100644
index 88d62b991..000000000
--- a/tests/org.eclipse.wst.ws.tests/data/wsdlcopier/1/2/3/test.wsdl
+++ /dev/null
@@ -1,44 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<wsdl:definitions
- xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
- xmlns:test="http://www.example.org/test/"
- targetNamespace="http://www.example.org/test/"
- xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
- xmlns:txsd="http://www.example.org/testxsd"
- xmlns:txsd2="http://www.example.org/testxsd2">
-
- <wsdl:types>
- <schema xmlns="http://www.w3.org/2001/XMLSchema">
- <import namespace="http://www.example.org/testxsd2"
- schemaLocation="../../2a/test.xsd" />
- <import namespace="http://www.example.org/testxsd"
- schemaLocation="../../../test.xsd" />
- </schema>
- </wsdl:types>
- <wsdl:message name="NewOperationRequest">
- <wsdl:part name="input" element="txsd:TestString"></wsdl:part>
- </wsdl:message>
- <wsdl:message name="NewOperationResponse">
- <wsdl:part name="output" element="txsd2:TestString2"></wsdl:part>
- </wsdl:message>
- <wsdl:portType name="TestPortType">
- <wsdl:operation name="NewOperation">
- <wsdl:input message="test:NewOperationRequest"></wsdl:input>
- <wsdl:output message="test:NewOperationResponse"></wsdl:output>
- </wsdl:operation>
- </wsdl:portType>
- <wsdl:binding name="NewBinding" type="test:TestPortType">
- <soap:binding style="document"
- transport="http://schemas.xmlsoap.org/soap/http" />
- <wsdl:operation name="NewOperation">
- <soap:operation
- soapAction="http://www.example.org/test/NewOperation" />
- <wsdl:input>
- <soap:body use="literal" />
- </wsdl:input>
- <wsdl:output>
- <soap:body use="literal" />
- </wsdl:output>
- </wsdl:operation>
- </wsdl:binding>
-</wsdl:definitions>
diff --git a/tests/org.eclipse.wst.ws.tests/data/wsdlcopier/1/2a/start.wsdl b/tests/org.eclipse.wst.ws.tests/data/wsdlcopier/1/2a/start.wsdl
deleted file mode 100644
index 1f627bb36..000000000
--- a/tests/org.eclipse.wst.ws.tests/data/wsdlcopier/1/2a/start.wsdl
+++ /dev/null
@@ -1,23 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<wsdl:definitions
- targetNamespace="http://www.example.org/start/"
- xmlns:test="http://www.example.org/test/"
- xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
- xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
-
- <wsdl:import location="../2/3/test.wsdl" namespace="http://www.example.org/test/"/>
-
- <wsdl:types>
- <schema xmlns="http://www.w3.org/2001/XMLSchema">
- <import namespace="http://www.example.org/testxsd"
- schemaLocation="../../test.xsd" />
- </schema>
- </wsdl:types>
-
- <wsdl:service name="Start">
- <wsdl:port name="NewPort" binding="test:NewBinding">
- <soap:address location="http://www.example.org/"></soap:address>
- </wsdl:port>
- </wsdl:service>
-
-</wsdl:definitions>
diff --git a/tests/org.eclipse.wst.ws.tests/data/wsdlcopier/1/2a/test.xsd b/tests/org.eclipse.wst.ws.tests/data/wsdlcopier/1/2a/test.xsd
deleted file mode 100644
index b26ffe0e1..000000000
--- a/tests/org.eclipse.wst.ws.tests/data/wsdlcopier/1/2a/test.xsd
+++ /dev/null
@@ -1,7 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<schema
- xmlns="http://www.w3.org/2001/XMLSchema"
- targetNamespace="http://www.example.org/testxsd2"
- elementFormDefault="qualified">
- <element name="TestString2" type="string"></element>
-</schema>

Back to the top