summaryrefslogtreecommitdiffstats
path: root/sca-cpp/trunk/contrib/runtime/core/test/wsdlTests/wsdls_erroneous/missing_binding_for_port.wsdl
diff options
context:
space:
mode:
Diffstat (limited to '')
-rwxr-xr-xsca-cpp/trunk/contrib/runtime/core/test/wsdlTests/wsdls_erroneous/missing_binding_for_port.wsdl43
1 files changed, 0 insertions, 43 deletions
diff --git a/sca-cpp/trunk/contrib/runtime/core/test/wsdlTests/wsdls_erroneous/missing_binding_for_port.wsdl b/sca-cpp/trunk/contrib/runtime/core/test/wsdlTests/wsdls_erroneous/missing_binding_for_port.wsdl
deleted file mode 100755
index cfcb65f149..0000000000
--- a/sca-cpp/trunk/contrib/runtime/core/test/wsdlTests/wsdls_erroneous/missing_binding_for_port.wsdl
+++ /dev/null
@@ -1,43 +0,0 @@
-<definitions
- xmlns="http://schemas.xmlsoap.org/wsdl/"
- xmlns:tns="http://www.tuscany.com/tests/duplicate_services.wsdl"
- xmlns:xsd="http://www.w3.org/2001/XMLSchema"
- xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
- targetNamespace="http://www.tuscany.com/tests/duplicate_services.wsdl"
- name="duplicate_services">
-
- <message name="request">
- <part name="zipcode" type="xsd:string"/>
- </message>
- <message name="response">
- <part name="host" type="xsd:string"/>
- <part name="port" type="xsd:string"/>
- </message>
- <portType name="portType">
- <!-- Request/response -->
- <operation name="test">
- <input message="tns:request"/>
- <output message="tns:response"/>
- </operation>
- </portType>
- <binding name="binding" type="tns:portType">
- <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
- <operation name="test">
- <soap:operation soapAction="http://www.tuscany.com/test/duplicate_services"/>
- <input>
- <soap:body use="literal"/>
- </input>
- <output>
- <soap:body use="literal"/>
- </output>
- </operation>
- </binding>
- <service name="service">
-<!-- This is the correct form
- <port name="port" binding="tns:binding">
--->
- <port name="port">
- <soap:address location="http://localhost/sca/tests"/>
- </port>
- </service>
-</definitions>