summaryrefslogtreecommitdiffstats
path: root/sca-cpp/trunk/contrib/runtime/core/test/wsdlTests/wsdls_erroneous
diff options
context:
space:
mode:
Diffstat (limited to '')
-rwxr-xr-xsca-cpp/trunk/contrib/runtime/core/test/wsdlTests/wsdls_erroneous/duplicate_binding_input.wsdl67
-rwxr-xr-xsca-cpp/trunk/contrib/runtime/core/test/wsdlTests/wsdls_erroneous/duplicate_binding_output.wsdl67
-rwxr-xr-xsca-cpp/trunk/contrib/runtime/core/test/wsdlTests/wsdls_erroneous/duplicate_bindings.wsdl77
-rwxr-xr-xsca-cpp/trunk/contrib/runtime/core/test/wsdlTests/wsdls_erroneous/duplicate_messages.wsdl67
-rwxr-xr-xsca-cpp/trunk/contrib/runtime/core/test/wsdlTests/wsdls_erroneous/duplicate_partnames.wsdl65
-rwxr-xr-xsca-cpp/trunk/contrib/runtime/core/test/wsdlTests/wsdls_erroneous/duplicate_portTypes.wsdl72
-rwxr-xr-xsca-cpp/trunk/contrib/runtime/core/test/wsdlTests/wsdls_erroneous/duplicate_services.wsdl70
-rwxr-xr-xsca-cpp/trunk/contrib/runtime/core/test/wsdlTests/wsdls_erroneous/duplicate_soap_address.wsdl46
-rwxr-xr-xsca-cpp/trunk/contrib/runtime/core/test/wsdlTests/wsdls_erroneous/duplicate_soap_binding.wsdl41
-rwxr-xr-xsca-cpp/trunk/contrib/runtime/core/test/wsdlTests/wsdls_erroneous/duplicate_soap_body.wsdl41
-rwxr-xr-xsca-cpp/trunk/contrib/runtime/core/test/wsdlTests/wsdls_erroneous/duplicate_soap_operation.wsdl41
-rwxr-xr-xsca-cpp/trunk/contrib/runtime/core/test/wsdlTests/wsdls_erroneous/missing_binding_for_port.wsdl43
-rwxr-xr-xsca-cpp/trunk/contrib/runtime/core/test/wsdlTests/wsdls_erroneous/missing_message.wsdl40
-rwxr-xr-xsca-cpp/trunk/contrib/runtime/core/test/wsdlTests/wsdls_erroneous/missing_name_for_part.wsdl43
-rwxr-xr-xsca-cpp/trunk/contrib/runtime/core/test/wsdlTests/wsdls_erroneous/missing_name_for_port.wsdl43
-rwxr-xr-xsca-cpp/trunk/contrib/runtime/core/test/wsdlTests/wsdls_erroneous/missing_operation.wsdl40
-rwxr-xr-xsca-cpp/trunk/contrib/runtime/core/test/wsdlTests/wsdls_erroneous/missing_portType.wsdl40
-rwxr-xr-xsca-cpp/trunk/contrib/runtime/core/test/wsdlTests/wsdls_erroneous/missing_type_for_part.wsdl43
18 files changed, 0 insertions, 946 deletions
diff --git a/sca-cpp/trunk/contrib/runtime/core/test/wsdlTests/wsdls_erroneous/duplicate_binding_input.wsdl b/sca-cpp/trunk/contrib/runtime/core/test/wsdlTests/wsdls_erroneous/duplicate_binding_input.wsdl
deleted file mode 100755
index 07423d3556..0000000000
--- a/sca-cpp/trunk/contrib/runtime/core/test/wsdlTests/wsdls_erroneous/duplicate_binding_input.wsdl
+++ /dev/null
@@ -1,67 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
- Licensed to the Apache Software Foundation (ASF) under one
- or more contributor license agreements. See the NOTICE file
- distributed with this work for additional information
- regarding copyright ownership. The ASF licenses this file
- to you under the Apache License, Version 2.0 (the
- "License"); you may not use this file except in compliance
- with the License. You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing,
- software distributed under the License is distributed on an
- "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- KIND, either express or implied. See the License for the
- specific language governing permissions and limitations
- under the License.
--->
-
-<definitions
- xmlns="http://schemas.xmlsoap.org/wsdl/"
- xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
- xmlns:tns="http://www.tuscany.com/tests/duplicate_services.wsdl"
- xmlns:xsd="http://www.w3.org/2001/XMLSchema"
- 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>
- <input>
- <soap:body use="literal"/>
- </input>
- <output>
- <soap:body use="literal"/>
- </output>
- </operation>
- </binding>
-
- <service name="service">
- <port name="port" binding="tns:binding">
- <soap:address location="http://localhost/sca/tests"/>
- </port>
- </service>
-
-</definitions>
diff --git a/sca-cpp/trunk/contrib/runtime/core/test/wsdlTests/wsdls_erroneous/duplicate_binding_output.wsdl b/sca-cpp/trunk/contrib/runtime/core/test/wsdlTests/wsdls_erroneous/duplicate_binding_output.wsdl
deleted file mode 100755
index 4c295bf0f5..0000000000
--- a/sca-cpp/trunk/contrib/runtime/core/test/wsdlTests/wsdls_erroneous/duplicate_binding_output.wsdl
+++ /dev/null
@@ -1,67 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
- Licensed to the Apache Software Foundation (ASF) under one
- or more contributor license agreements. See the NOTICE file
- distributed with this work for additional information
- regarding copyright ownership. The ASF licenses this file
- to you under the Apache License, Version 2.0 (the
- "License"); you may not use this file except in compliance
- with the License. You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing,
- software distributed under the License is distributed on an
- "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- KIND, either express or implied. See the License for the
- specific language governing permissions and limitations
- under the License.
--->
-
-<definitions
- xmlns="http://schemas.xmlsoap.org/wsdl/"
- xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
- xmlns:tns="http://www.tuscany.com/tests/duplicate_services.wsdl"
- xmlns:xsd="http://www.w3.org/2001/XMLSchema"
- 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>
- <output>
- <soap:body use="literal"/>
- </output>
- </operation>
- </binding>
-
- <service name="service">
- <port name="port" binding="tns:binding">
- <soap:address location="http://localhost/sca/tests"/>
- </port>
- </service>
-
-</definitions>
diff --git a/sca-cpp/trunk/contrib/runtime/core/test/wsdlTests/wsdls_erroneous/duplicate_bindings.wsdl b/sca-cpp/trunk/contrib/runtime/core/test/wsdlTests/wsdls_erroneous/duplicate_bindings.wsdl
deleted file mode 100755
index 39932da219..0000000000
--- a/sca-cpp/trunk/contrib/runtime/core/test/wsdlTests/wsdls_erroneous/duplicate_bindings.wsdl
+++ /dev/null
@@ -1,77 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
- Licensed to the Apache Software Foundation (ASF) under one
- or more contributor license agreements. See the NOTICE file
- distributed with this work for additional information
- regarding copyright ownership. The ASF licenses this file
- to you under the Apache License, Version 2.0 (the
- "License"); you may not use this file except in compliance
- with the License. You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing,
- software distributed under the License is distributed on an
- "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- KIND, either express or implied. See the License for the
- specific language governing permissions and limitations
- under the License.
--->
-
-<definitions
- xmlns="http://schemas.xmlsoap.org/wsdl/"
- xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
- xmlns:tns="http://www.tuscany.com/tests/duplicate_services.wsdl"
- xmlns:xsd="http://www.w3.org/2001/XMLSchema"
- 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>
-
- <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">
- <port name="port" binding="tns:binding">
- <soap:address location="http://localhost/sca/tests"/>
- </port>
- </service>
-
-</definitions>
diff --git a/sca-cpp/trunk/contrib/runtime/core/test/wsdlTests/wsdls_erroneous/duplicate_messages.wsdl b/sca-cpp/trunk/contrib/runtime/core/test/wsdlTests/wsdls_erroneous/duplicate_messages.wsdl
deleted file mode 100755
index e0388f19d6..0000000000
--- a/sca-cpp/trunk/contrib/runtime/core/test/wsdlTests/wsdls_erroneous/duplicate_messages.wsdl
+++ /dev/null
@@ -1,67 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
- Licensed to the Apache Software Foundation (ASF) under one
- or more contributor license agreements. See the NOTICE file
- distributed with this work for additional information
- regarding copyright ownership. The ASF licenses this file
- to you under the Apache License, Version 2.0 (the
- "License"); you may not use this file except in compliance
- with the License. You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing,
- software distributed under the License is distributed on an
- "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- KIND, either express or implied. See the License for the
- specific language governing permissions and limitations
- under the License.
--->
-
-<definitions
- xmlns="http://schemas.xmlsoap.org/wsdl/"
- xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
- xmlns:tns="http://www.tuscany.com/tests/duplicate_services.wsdl"
- xmlns:xsd="http://www.w3.org/2001/XMLSchema"
- targetNamespace="http://www.tuscany.com/tests/duplicate_services.wsdl"
- name="duplicate_services">
-
- <message name="request">
- <part name="zipcode" type="xsd:string"/>
- </message>
- <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">
- <port name="port" binding="tns:binding">
- <soap:address location="http://localhost/sca/tests"/>
- </port>
- </service>
-
-</definitions>
diff --git a/sca-cpp/trunk/contrib/runtime/core/test/wsdlTests/wsdls_erroneous/duplicate_partnames.wsdl b/sca-cpp/trunk/contrib/runtime/core/test/wsdlTests/wsdls_erroneous/duplicate_partnames.wsdl
deleted file mode 100755
index 6b5b1630e0..0000000000
--- a/sca-cpp/trunk/contrib/runtime/core/test/wsdlTests/wsdls_erroneous/duplicate_partnames.wsdl
+++ /dev/null
@@ -1,65 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
- Licensed to the Apache Software Foundation (ASF) under one
- or more contributor license agreements. See the NOTICE file
- distributed with this work for additional information
- regarding copyright ownership. The ASF licenses this file
- to you under the Apache License, Version 2.0 (the
- "License"); you may not use this file except in compliance
- with the License. You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing,
- software distributed under the License is distributed on an
- "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- KIND, either express or implied. See the License for the
- specific language governing permissions and limitations
- under the License.
--->
-
-<definitions
- xmlns="http://schemas.xmlsoap.org/wsdl/"
- xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
- xmlns:tns="http://www.tuscany.com/tests/duplicate_services.wsdl"
- xmlns:xsd="http://www.w3.org/2001/XMLSchema"
- targetNamespace="http://www.tuscany.com/tests/duplicate_services.wsdl"
- name="duplicate_services">
-
- <message name="request">
- <part name="zipcode" type="xsd:string"/>
- <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">
- <port name="port" binding="tns:binding">
- <soap:address location="http://localhost/sca/tests"/>
- </port>
- </service>
-
-</definitions>
diff --git a/sca-cpp/trunk/contrib/runtime/core/test/wsdlTests/wsdls_erroneous/duplicate_portTypes.wsdl b/sca-cpp/trunk/contrib/runtime/core/test/wsdlTests/wsdls_erroneous/duplicate_portTypes.wsdl
deleted file mode 100755
index 1bbe57bbad..0000000000
--- a/sca-cpp/trunk/contrib/runtime/core/test/wsdlTests/wsdls_erroneous/duplicate_portTypes.wsdl
+++ /dev/null
@@ -1,72 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
- Licensed to the Apache Software Foundation (ASF) under one
- or more contributor license agreements. See the NOTICE file
- distributed with this work for additional information
- regarding copyright ownership. The ASF licenses this file
- to you under the Apache License, Version 2.0 (the
- "License"); you may not use this file except in compliance
- with the License. You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing,
- software distributed under the License is distributed on an
- "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- KIND, either express or implied. See the License for the
- specific language governing permissions and limitations
- under the License.
--->
-
-<definitions
- xmlns="http://schemas.xmlsoap.org/wsdl/"
- xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
- xmlns:tns="http://www.tuscany.com/tests/duplicate_services.wsdl"
- xmlns:xsd="http://www.w3.org/2001/XMLSchema"
- 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>
-
- <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">
- <port name="port" binding="tns:binding">
- <soap:address location="http://localhost/sca/tests"/>
- </port>
- </service>
-
-</definitions>
diff --git a/sca-cpp/trunk/contrib/runtime/core/test/wsdlTests/wsdls_erroneous/duplicate_services.wsdl b/sca-cpp/trunk/contrib/runtime/core/test/wsdlTests/wsdls_erroneous/duplicate_services.wsdl
deleted file mode 100755
index e16d04a5ec..0000000000
--- a/sca-cpp/trunk/contrib/runtime/core/test/wsdlTests/wsdls_erroneous/duplicate_services.wsdl
+++ /dev/null
@@ -1,70 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
- Licensed to the Apache Software Foundation (ASF) under one
- or more contributor license agreements. See the NOTICE file
- distributed with this work for additional information
- regarding copyright ownership. The ASF licenses this file
- to you under the Apache License, Version 2.0 (the
- "License"); you may not use this file except in compliance
- with the License. You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing,
- software distributed under the License is distributed on an
- "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- KIND, either express or implied. See the License for the
- specific language governing permissions and limitations
- under the License.
--->
-
-<definitions
- xmlns="http://schemas.xmlsoap.org/wsdl/"
- xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
- xmlns:tns="http://www.tuscany.com/tests/duplicate_services.wsdl"
- xmlns:xsd="http://www.w3.org/2001/XMLSchema"
- 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">
- <port name="port" binding="tns:binding">
- <soap:address location="http://localhost/sca/tests"/>
- </port>
- </service>
-
- <service name="service">
- <port name="port" binding="tns:binding">
- <soap:address location="http://localhost/sca/tests"/>
- </port>
- </service>
-
-</definitions>
diff --git a/sca-cpp/trunk/contrib/runtime/core/test/wsdlTests/wsdls_erroneous/duplicate_soap_address.wsdl b/sca-cpp/trunk/contrib/runtime/core/test/wsdlTests/wsdls_erroneous/duplicate_soap_address.wsdl
deleted file mode 100755
index 01af450396..0000000000
--- a/sca-cpp/trunk/contrib/runtime/core/test/wsdlTests/wsdls_erroneous/duplicate_soap_address.wsdl
+++ /dev/null
@@ -1,46 +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">
- <port name="port" binding="tns:binding">
- <soap:address location="http://localhost:8090/tests"/>
- <soap:address location="http://localhost:8090/tests"/>
- </port>
- </service>
-
-</definitions>
diff --git a/sca-cpp/trunk/contrib/runtime/core/test/wsdlTests/wsdls_erroneous/duplicate_soap_binding.wsdl b/sca-cpp/trunk/contrib/runtime/core/test/wsdlTests/wsdls_erroneous/duplicate_soap_binding.wsdl
deleted file mode 100755
index a2dac5e15e..0000000000
--- a/sca-cpp/trunk/contrib/runtime/core/test/wsdlTests/wsdls_erroneous/duplicate_soap_binding.wsdl
+++ /dev/null
@@ -1,41 +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"/>
- <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">
- <port name="port" binding="tns:binding">
- <soap:address location="http://localhost/sca/tests"/>
- </port>
- </service>
-</definitions>
diff --git a/sca-cpp/trunk/contrib/runtime/core/test/wsdlTests/wsdls_erroneous/duplicate_soap_body.wsdl b/sca-cpp/trunk/contrib/runtime/core/test/wsdlTests/wsdls_erroneous/duplicate_soap_body.wsdl
deleted file mode 100755
index 3918b9e6f1..0000000000
--- a/sca-cpp/trunk/contrib/runtime/core/test/wsdlTests/wsdls_erroneous/duplicate_soap_body.wsdl
+++ /dev/null
@@ -1,41 +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"/>
- <soap:body use="literal"/>
- </input>
- <output>
- <soap:body use="literal"/>
- </output>
- </operation>
- </binding>
- <service name="service">
- <port name="port" binding="tns:binding">
- <soap:address location="http://localhost/sca/tests"/>
- </port>
- </service>
-</definitions>
diff --git a/sca-cpp/trunk/contrib/runtime/core/test/wsdlTests/wsdls_erroneous/duplicate_soap_operation.wsdl b/sca-cpp/trunk/contrib/runtime/core/test/wsdlTests/wsdls_erroneous/duplicate_soap_operation.wsdl
deleted file mode 100755
index 542d60b7cb..0000000000
--- a/sca-cpp/trunk/contrib/runtime/core/test/wsdlTests/wsdls_erroneous/duplicate_soap_operation.wsdl
+++ /dev/null
@@ -1,41 +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"/>
- <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">
- <port name="port" binding="tns:binding">
- <soap:address location="http://localhost/sca/tests"/>
- </port>
- </service>
-</definitions>
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>
diff --git a/sca-cpp/trunk/contrib/runtime/core/test/wsdlTests/wsdls_erroneous/missing_message.wsdl b/sca-cpp/trunk/contrib/runtime/core/test/wsdlTests/wsdls_erroneous/missing_message.wsdl
deleted file mode 100755
index ec2d17204d..0000000000
--- a/sca-cpp/trunk/contrib/runtime/core/test/wsdlTests/wsdls_erroneous/missing_message.wsdl
+++ /dev/null
@@ -1,40 +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:bogusMessageName"/> <!-- The error is here -->
- <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">
- <port name="port" binding="tns:binding">
- <soap:address location="http://localhost/sca/tests"/>
- </port>
- </service>
-</definitions>
diff --git a/sca-cpp/trunk/contrib/runtime/core/test/wsdlTests/wsdls_erroneous/missing_name_for_part.wsdl b/sca-cpp/trunk/contrib/runtime/core/test/wsdlTests/wsdls_erroneous/missing_name_for_part.wsdl
deleted file mode 100755
index 4e927e222f..0000000000
--- a/sca-cpp/trunk/contrib/runtime/core/test/wsdlTests/wsdls_erroneous/missing_name_for_part.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">
-<!-- this is the correct form
- <part name="zipcode" type="xsd:string"/>
--->
- <part 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">
- <port name="port" binding="tns:binding">
- <soap:address location="http://localhost/sca/tests"/>
- </port>
- </service>
-</definitions>
diff --git a/sca-cpp/trunk/contrib/runtime/core/test/wsdlTests/wsdls_erroneous/missing_name_for_port.wsdl b/sca-cpp/trunk/contrib/runtime/core/test/wsdlTests/wsdls_erroneous/missing_name_for_port.wsdl
deleted file mode 100755
index f182c01cb6..0000000000
--- a/sca-cpp/trunk/contrib/runtime/core/test/wsdlTests/wsdls_erroneous/missing_name_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 binding="tns:binding">
- <soap:address location="http://localhost/sca/tests"/>
- </port>
- </service>
-</definitions>
diff --git a/sca-cpp/trunk/contrib/runtime/core/test/wsdlTests/wsdls_erroneous/missing_operation.wsdl b/sca-cpp/trunk/contrib/runtime/core/test/wsdlTests/wsdls_erroneous/missing_operation.wsdl
deleted file mode 100755
index f1fd4eba9c..0000000000
--- a/sca-cpp/trunk/contrib/runtime/core/test/wsdlTests/wsdls_erroneous/missing_operation.wsdl
+++ /dev/null
@@ -1,40 +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="bogusOperationName"> <!-- The error is here -->
- <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">
- <port name="port" binding="tns:binding">
- <soap:address location="http://localhost/sca/tests"/>
- </port>
- </service>
-</definitions>
diff --git a/sca-cpp/trunk/contrib/runtime/core/test/wsdlTests/wsdls_erroneous/missing_portType.wsdl b/sca-cpp/trunk/contrib/runtime/core/test/wsdlTests/wsdls_erroneous/missing_portType.wsdl
deleted file mode 100755
index bdfac4d13d..0000000000
--- a/sca-cpp/trunk/contrib/runtime/core/test/wsdlTests/wsdls_erroneous/missing_portType.wsdl
+++ /dev/null
@@ -1,40 +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:bogusPortType"> <!-- The error is here -->
- <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">
- <port name="port" binding="tns:binding">
- <soap:address location="http://localhost/sca/tests"/>
- </port>
- </service>
-</definitions>
diff --git a/sca-cpp/trunk/contrib/runtime/core/test/wsdlTests/wsdls_erroneous/missing_type_for_part.wsdl b/sca-cpp/trunk/contrib/runtime/core/test/wsdlTests/wsdls_erroneous/missing_type_for_part.wsdl
deleted file mode 100755
index 1706ac2f13..0000000000
--- a/sca-cpp/trunk/contrib/runtime/core/test/wsdlTests/wsdls_erroneous/missing_type_for_part.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">
-<!-- this is the correct form
- <part name="zipcode" type="xsd:string"/>
--->
- <part name="zipcode"/>
- </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">
- <port name="port" binding="tns:binding">
- <soap:address location="http://localhost/sca/tests"/>
- </port>
- </service>
-</definitions>