Added: ode/branches/APACHE_ODE_1.1/utils/src/test/resources/wsdl-utils.wsdl URL: http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.1/utils/src/test/resources/wsdl-utils.wsdl?rev=646607&view=auto ============================================================================== --- ode/branches/APACHE_ODE_1.1/utils/src/test/resources/wsdl-utils.wsdl (added) +++ ode/branches/APACHE_ODE_1.1/utils/src/test/resources/wsdl-utils.wsdl Wed Apr 9 17:45:18 2008 @@ -0,0 +1,104 @@ +<?xml version="1.0" encoding="UTF-8"?> +<wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" + xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" + xmlns:ns0="http://axis2.ode.apache.org/xsd" + xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" + xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" + xmlns:ns1="http://axis2.ode.apache.org" + xmlns:wsaw="http://www.w3.org/2006/05/addressing/wsdl" + xmlns:xs="http://www.w3.org/2001/XMLSchema" + xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" + targetNamespace="http://axis2.ode.apache.org"> + <wsdl:message name="helloRequest"> + <wsdl:part name="TestPart" type="xs:string"/> + </wsdl:message> + <wsdl:message name="helloResponse"> + <wsdl:part name="TestPart" type="xs:string"/> + </wsdl:message> + <wsdl:portType name="DummyServicePortType"> + <wsdl:operation name="hello"> + <wsdl:input message="ns1:helloRequest" wsaw:Action="urn:hello"/> + <wsdl:output message="ns1:helloResponse" wsaw:Action="urn:helloResponse"/> + </wsdl:operation> + </wsdl:portType> + <wsdl:binding name="DummyServiceSOAP11Binding" type="ns1:DummyServicePortType"> + <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/> + <wsdl:operation name="hello"> + <soap:operation soapAction="urn:hello" style="document"/> + <wsdl:input> + <soap:body use="literal"/> + </wsdl:input> + <wsdl:output> + <soap:body use="literal"/> + </wsdl:output> + </wsdl:operation> + </wsdl:binding> + <wsdl:binding name="DummyServiceHttpBinding" type="ns1:DummyServicePortType"> + <http:binding verb="POST"/> + <wsdl:operation name="hello"> + <http:operation location="DummyService/hello"/> + <wsdl:input> + <mime:content type="text/xml" part="hello"/> + </wsdl:input> + <wsdl:output> + <mime:content type="text/xml" part="hello"/> + </wsdl:output> + </wsdl:operation> + </wsdl:binding> + <wsdl:binding name="DummyServiceHttpBinding_urlReplacement" type="ns1:DummyServicePortType"> + <http:binding verb="POST"/> + <wsdl:operation name="hello"> + <http:operation location="DummyService/hello/(part1)"/> + <wsdl:input> + <http:urlReplacement/> + </wsdl:input> + <wsdl:output> + <mime:content type="text/xml" part="hello"/> + </wsdl:output> + </wsdl:operation> + </wsdl:binding> + <wsdl:binding name="DummyServiceHttpBinding_urlEncoded" type="ns1:DummyServicePortType"> + <http:binding verb="POST"/> + <wsdl:operation name="hello"> + <http:operation location="DummyService/hello"/> + <wsdl:input> + <http:urlEncoded/> + </wsdl:input> + <wsdl:output> + <mime:content type="text/xml" part="hello"/> + </wsdl:output> + </wsdl:operation> + </wsdl:binding> + <wsdl:binding name="DummyServiceHttpBinding_form-urlencoded" type="ns1:DummyServicePortType"> + <http:binding verb="POST"/> + <wsdl:operation name="hello"> + <http:operation location="DummyService/hello"/> + <wsdl:input> + <mime:content type="application/x-www-form-urlencoded" part="hello"/> + </wsdl:input> + <wsdl:output> + <mime:content type="text/xml" part="hello"/> + </wsdl:output> + </wsdl:operation> + </wsdl:binding> + <wsdl:service name="DummyService"> + <wsdl:port name="DummyServiceSOAP11port_http" binding="ns1:DummyServiceSOAP11Binding"> + <soap:address location="http://localhost:8080/processes/DummyService"/> + </wsdl:port> + <wsdl:port name="DummyServiceHttpport" binding="ns1:DummyServiceHttpBinding"> + <http:address location="http://localhost:8080/processes/DummyService"/> + </wsdl:port> + <wsdl:port name="DummyService_port_with_no_binding"> + <http:address location="http://localhost:8080/processes/DummyService"/> + </wsdl:port> + <wsdl:port name="DummyService_port_with_empty_binding" binding=""> + <http:address location="http://localhost:8080/processes/DummyService"/> + </wsdl:port> + <wsdl:port name="DummyServiceHttpport_urlEncoded" binding="ns1:DummyServiceHttpBinding_urlEncoded"> + <http:address location="http://localhost:8080/processes/DummyService"/> + </wsdl:port> + <wsdl:port name="DummyServiceHttpport_urlReplacement" binding="ns1:DummyServiceHttpBinding_urlReplacement"> + <http:address location="http://localhost:8080/processes/DummyService"/> + </wsdl:port> + </wsdl:service> +</wsdl:definitions> \ No newline at end of file
