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.wsdl.validation.tests/testresources/samples/WSDL/Import/ImportXMLInvalidWSDL/XMLInvalidWSDL.wsdl')
-rw-r--r--tests/org.eclipse.wst.wsdl.validation.tests/testresources/samples/WSDL/Import/ImportXMLInvalidWSDL/XMLInvalidWSDL.wsdl39
1 files changed, 0 insertions, 39 deletions
diff --git a/tests/org.eclipse.wst.wsdl.validation.tests/testresources/samples/WSDL/Import/ImportXMLInvalidWSDL/XMLInvalidWSDL.wsdl b/tests/org.eclipse.wst.wsdl.validation.tests/testresources/samples/WSDL/Import/ImportXMLInvalidWSDL/XMLInvalidWSDL.wsdl
deleted file mode 100644
index 1192d81e1..000000000
--- a/tests/org.eclipse.wst.wsdl.validation.tests/testresources/samples/WSDL/Import/ImportXMLInvalidWSDL/XMLInvalidWSDL.wsdl
+++ /dev/null
@@ -1,39 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!-- The definitions element isn't closed. -->
-<wsdl:definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="http://tempuri.org/XMLInvalidWSDL/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" name="XMLInvalidWSDL" targetNamespace="http://tempuri.org/XMLInvalidWSDL/"
- <wsdl:types>
- <xsd:schema targetNamespace="http://tempuri.org/XMLInvalidWSDL/" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
- <xsd:element name="NewOperationResponse" type="xsd:string"/>
- <xsd:element name="NewOperationRequest" type="xsd:string"/>
- </xsd:schema>
- </wsdl:types>
- <wsdl:message name="NewOperationResponse">
- <wsdl:part element="tns:NewOperationResponse" name="NewOperationResponse"/>
- </wsdl:message>
- <wsdl:message name="NewOperationRequest">
- <wsdl:part element="tns:NewOperationRequest" name="NewOperationRequest"/>
- </wsdl:message>
- <wsdl:portType name="XMLInvalidWSDL">
- <wsdl:operation name="NewOperation">
- <wsdl:input message="tns:NewOperationRequest"/>
- <wsdl:output message="tns:NewOperationResponse"/>
- </wsdl:operation>
- </wsdl:portType>
- <wsdl:binding name="XMLInvalidWSDLSOAP" type="tns:XMLInvalidWSDL">
- <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
- <wsdl:operation name="NewOperation">
- <soap:operation soapAction="http://tempuri.org/XMLInvalidWSDL/NewOperation"/>
- <wsdl:input>
- <soap:body use="literal"/>
- </wsdl:input>
- <wsdl:output>
- <soap:body use="literal"/>
- </wsdl:output>
- </wsdl:operation>
- </wsdl:binding>
- <wsdl:service name="XMLInvalidWSDL">
- <wsdl:port binding="tns:XMLInvalidWSDLSOAP" name="XMLInvalidWSDLSOAP">
- <soap:address location="http://www.example.com"/>
- </wsdl:port>
- </wsdl:service>
-</wsdl:definitions>

Back to the top