Author: thomas.diesler(a)jboss.com
Date: 2007-12-13 06:20:02 -0500 (Thu, 13 Dec 2007)
New Revision: 5294
Modified:
framework/trunk/src/test/resources/jaxws/samples/httpbinding/shared/wsdl/HttpBinding.wsdl
Log:
Use http:binding
Modified:
framework/trunk/src/test/resources/jaxws/samples/httpbinding/shared/wsdl/HttpBinding.wsdl
===================================================================
---
framework/trunk/src/test/resources/jaxws/samples/httpbinding/shared/wsdl/HttpBinding.wsdl 2007-12-13
10:39:24 UTC (rev 5293)
+++
framework/trunk/src/test/resources/jaxws/samples/httpbinding/shared/wsdl/HttpBinding.wsdl 2007-12-13
11:20:02 UTC (rev 5294)
@@ -1,43 +1,45 @@
<?xml version='1.0'?>
-<definitions name='ProviderService'
targetNamespace='http://org.jboss.ws/httpbinding'
xmlns='http://schemas.xmlsoap.org/wsdl/'
xmlns:soap='http://schemas.xmlsoap.org/wsdl/soap/'
xmlns:tns='http://org.jboss.ws/httpbinding'
xmlns:xsd='http://www.w3.org/2001/XMLSchema'>
- <types>
- <xs:schema targetNamespace='http://org.jboss.ws/httpbinding'
xmlns:tns='http://org.jboss.ws/httpbinding' version='1.0'
xmlns:xs='http://www.w3.org/2001/XMLSchema'>
- <xs:element name='user' type='tns:UserType'/>
- <xs:complexType name='UserType'>
- <xs:sequence>
- <xs:element name='string' type='xs:string'/>
- <xs:element name='qname' type='xs:QName'/>
- </xs:sequence>
- </xs:complexType>
- </xs:schema>
- </types>
- <message name='echo'>
- <part element='tns:user' name='user'/>
- </message>
- <message name='echoResponse'>
- <part element='tns:user' name='user'/>
- </message>
- <portType name='Provider'>
- <operation name='echo'>
- <input message='tns:echo'/>
- <output message='tns:echoResponse'/>
- </operation>
- </portType>
- <binding name='ProviderBinding' type='tns:Provider'>
- <soap:binding style='document'
transport='http://schemas.xmlsoap.org/soap/http'/>
- <operation name='echo'>
- <soap:operation soapAction=''/>
- <input>
- <soap:body use='literal'/>
- </input>
- <output>
- <soap:body use='literal'/>
- </output>
- </operation>
- </binding>
- <service name='ProviderService'>
- <port binding='tns:ProviderBinding' name='ProviderPort'>
- <soap:address location='REPLACE_WITH_ACTUAL_URL'/>
- </port>
- </service>
-</definitions>
+<definitions name='ProviderService'
targetNamespace='http://org.jboss.ws/httpbinding'
xmlns='http://schemas.xmlsoap.org/wsdl/'
+
xmlns:mime='http://schemas.xmlsoap.org/wsdl/mime/'
xmlns:tns='http://org.jboss.ws/httpbinding'
xmlns:http='http://schemas.xmlsoap.org/wsdl/http/'
+
xmlns:xsd='http://www.w3.org/2001/XMLSchema'>
+ <types>
+ <xs:schema targetNamespace='http://org.jboss.ws/httpbinding'
xmlns:tns='http://org.jboss.ws/httpbinding' version='1.0'
xmlns:xs='http://www.w3.org/2001/XMLSchema'>
+ <xs:element name='user' type='tns:UserType'/>
+ <xs:complexType name='UserType'>
+ <xs:sequence>
+ <xs:element name='string' type='xs:string'/>
+ <xs:element name='qname' type='xs:QName'/>
+ </xs:sequence>
+ </xs:complexType>
+ </xs:schema>
+ </types>
+ <message name='echo'>
+ <part element='tns:user' name='user'/>
+ </message>
+ <message name='echoResponse'>
+ <part element='tns:user' name='user'/>
+ </message>
+ <portType name='Provider'>
+ <operation name='echo'>
+ <input message='tns:echo'/>
+ <output message='tns:echoResponse'/>
+ </operation>
+ </portType>
+ <binding name='ProviderBinding' type='tns:Provider'>
+ <http:binding verb='POST'/>
+ <operation name='echo'>
+ <http:operation location='echo'/>
+ <input>
+ <mime:content type="text/xml"/>
+ </input>
+ <output>
+ <mime:content type="text/xml"/>
+ </output>
+ </operation>
+ </binding>
+ <service name='ProviderService'>
+ <port binding='tns:ProviderBinding' name='ProviderPort'>
+ <http:address location='REPLACE_WITH_ACTUAL_URL'/>
+ </port>
+ </service>
+</definitions>
\ No newline at end of file