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.tests/samples/Extensions/HTTP/HTTPExample.wsdl')
-rw-r--r--tests/org.eclipse.wst.wsdl.tests/samples/Extensions/HTTP/HTTPExample.wsdl38
1 files changed, 0 insertions, 38 deletions
diff --git a/tests/org.eclipse.wst.wsdl.tests/samples/Extensions/HTTP/HTTPExample.wsdl b/tests/org.eclipse.wst.wsdl.tests/samples/Extensions/HTTP/HTTPExample.wsdl
deleted file mode 100644
index 11a4b7795..000000000
--- a/tests/org.eclipse.wst.wsdl.tests/samples/Extensions/HTTP/HTTPExample.wsdl
+++ /dev/null
@@ -1,38 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
- xmlns:http="http://schemas.xmlsoap.org/wsdl/http/"
- xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/"
- xmlns:tns="http://www.example.org/HTTPExample/"
- xmlns:xsd="http://www.w3.org/2001/XMLSchema" name="HTTPExample"
- targetNamespace="http://www.example.org/HTTPExample/">
- <wsdl:message name="NewOperationRequest">
- <wsdl:part name="NewOperationRequest" type="xsd:string" />
- </wsdl:message>
- <wsdl:message name="NewOperationResponse">
- <wsdl:part name="NewOperationResponse" type="xsd:string" />
- </wsdl:message>
- <wsdl:portType name="HTTPExample">
- <wsdl:operation name="NewOperation">
- <wsdl:input message="tns:NewOperationRequest" />
- <wsdl:output message="tns:NewOperationResponse" />
- </wsdl:operation>
- </wsdl:portType>
- <wsdl:binding name="HTTPExampleHTTP" type="tns:HTTPExample">
- <http:binding verb="GET" />
- <wsdl:operation name="NewOperation">
- <http:operation location="/NewOperation" />
- <wsdl:input>
- <http:urlEncoded />
- </wsdl:input>
- <wsdl:output>
- <mime:content type="text/xml" />
- </wsdl:output>
- </wsdl:operation>
- </wsdl:binding>
- <wsdl:service name="HTTPExample">
- <wsdl:port binding="tns:HTTPExampleHTTP"
- name="HTTPExampleHTTP">
- <http:address location="http://www.example.org/" />
- </wsdl:port>
- </wsdl:service>
-</wsdl:definitions>

Back to the top