You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by dk...@apache.org on 2008/03/18 22:25:50 UTC

svn commit: r638582 - in /incubator/cxf/trunk: api/src/main/resources/ common/schemas/src/main/resources/META-INF/ common/schemas/src/main/resources/schemas/wsdl/ rt/bindings/corba/src/main/resources/schemas/wsdl/ rt/bindings/jbi/src/main/resources/sch...

Author: dkulp
Date: Tue Mar 18 14:25:46 2008
New Revision: 638582

URL: http://svn.apache.org/viewvc?rev=638582&view=rev
Log:
[CXF-1272] Update the schemas and stuff that point at the wsdl schema to use the full URL with the .xsd extension to work around an issue in spring

Modified:
    incubator/cxf/trunk/api/src/main/resources/catalog.cat
    incubator/cxf/trunk/common/schemas/src/main/resources/META-INF/spring.schemas
    incubator/cxf/trunk/common/schemas/src/main/resources/schemas/wsdl/http.xsd
    incubator/cxf/trunk/common/schemas/src/main/resources/schemas/wsdl/wsdl.xjb
    incubator/cxf/trunk/rt/bindings/corba/src/main/resources/schemas/wsdl/corba-binding.xjb
    incubator/cxf/trunk/rt/bindings/corba/src/main/resources/schemas/wsdl/corba-binding.xsd
    incubator/cxf/trunk/rt/bindings/jbi/src/main/resources/schemas/wsdl/jbi.xjb
    incubator/cxf/trunk/rt/bindings/jbi/src/main/resources/schemas/wsdl/jbi.xsd
    incubator/cxf/trunk/rt/bindings/xml/src/main/resources/schemas/wsdl/xml-binding.xjb
    incubator/cxf/trunk/rt/bindings/xml/src/main/resources/schemas/wsdl/xml-binding.xsd
    incubator/cxf/trunk/rt/transports/http/src/main/resources/catalog.cat
    incubator/cxf/trunk/rt/transports/http/src/main/resources/schemas/configuration/http-conf.xsd
    incubator/cxf/trunk/rt/transports/http/src/main/resources/schemas/wsdl/http-conf.xjb
    incubator/cxf/trunk/rt/transports/http/src/main/resources/schemas/wsdl/http-conf.xsd
    incubator/cxf/trunk/rt/transports/jbi/src/main/resources/schemas/wsdl/jbi.xjb
    incubator/cxf/trunk/rt/transports/jbi/src/main/resources/schemas/wsdl/jbi.xsd
    incubator/cxf/trunk/rt/transports/jms/src/main/resources/schemas/configuration/jms.xsd
    incubator/cxf/trunk/rt/transports/jms/src/main/resources/schemas/wsdl/jms.xjb
    incubator/cxf/trunk/rt/transports/jms/src/main/resources/schemas/wsdl/jms.xsd
    incubator/cxf/trunk/rt/ws/addr/src/main/resources/schemas/ws-addr-wsdl.xjb
    incubator/cxf/trunk/rt/ws/addr/src/main/resources/schemas/ws-addr-wsdl.xsd

Modified: incubator/cxf/trunk/api/src/main/resources/catalog.cat
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/api/src/main/resources/catalog.cat?rev=638582&r1=638581&r2=638582&view=diff
==============================================================================
--- incubator/cxf/trunk/api/src/main/resources/catalog.cat (original)
+++ incubator/cxf/trunk/api/src/main/resources/catalog.cat Tue Mar 18 14:25:46 2008
@@ -19,4 +19,5 @@
 
 
 SYSTEM "http://schemas.xmlsoap.org/wsdl/" "../../../target/schemas/schemas/wsdl/wsdl.xsd"
+SYSTEM "http://schemas.xmlsoap.org/wsdl/2003-02-11.xsd" "../../../target/schemas/schemas/wsdl/wsdl.xsd"
 

Modified: incubator/cxf/trunk/common/schemas/src/main/resources/META-INF/spring.schemas
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/common/schemas/src/main/resources/META-INF/spring.schemas?rev=638582&r1=638581&r2=638582&view=diff
==============================================================================
--- incubator/cxf/trunk/common/schemas/src/main/resources/META-INF/spring.schemas (original)
+++ incubator/cxf/trunk/common/schemas/src/main/resources/META-INF/spring.schemas Tue Mar 18 14:25:46 2008
@@ -19,6 +19,7 @@
 #
 #
 http\://schemas.xmlsoap.org/wsdl/=schemas/wsdl/wsdl.xsd
+http\://schemas.xmlsoap.org/wsdl/2003-02-11.xsd=schemas/wsdl/wsdl.xsd
 http\://schemas.xmlsoap.org/wsdl/http/=schemas/wsdl/http.xsd
 http\://schemas.xmlsoap.org/ws/2004/08/addressing=schemas/wsdl/addressing.xsd
 

Modified: incubator/cxf/trunk/common/schemas/src/main/resources/schemas/wsdl/http.xsd
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/common/schemas/src/main/resources/schemas/wsdl/http.xsd?rev=638582&r1=638581&r2=638582&view=diff
==============================================================================
--- incubator/cxf/trunk/common/schemas/src/main/resources/schemas/wsdl/http.xsd (original)
+++ incubator/cxf/trunk/common/schemas/src/main/resources/schemas/wsdl/http.xsd Tue Mar 18 14:25:46 2008
@@ -35,7 +35,8 @@
         xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
         targetNamespace="http://schemas.xmlsoap.org/wsdl/http/">
 
-	<import namespace = "http://schemas.xmlsoap.org/wsdl/" schemaLocation="http://schemas.xmlsoap.org/wsdl/"/>
+	<import namespace = "http://schemas.xmlsoap.org/wsdl/" 
+        schemaLocation="http://schemas.xmlsoap.org/wsdl/2003-02-11.xsd"/>
 
    	<element name="address" type="http:addressType"/>
 

Modified: incubator/cxf/trunk/common/schemas/src/main/resources/schemas/wsdl/wsdl.xjb
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/common/schemas/src/main/resources/schemas/wsdl/wsdl.xjb?rev=638582&r1=638581&r2=638582&view=diff
==============================================================================
--- incubator/cxf/trunk/common/schemas/src/main/resources/schemas/wsdl/wsdl.xjb (original)
+++ incubator/cxf/trunk/common/schemas/src/main/resources/schemas/wsdl/wsdl.xjb Tue Mar 18 14:25:46 2008
@@ -22,13 +22,13 @@
   xmlns:xs="http://www.w3.org/2001/XMLSchema" 
   xmlns:xjc="http://java.sun.com/xml/ns/jaxb/xjc" 
   jaxb:extensionBindingPrefixes="xjc">
-    <jaxb:bindings schemaLocation="http://schemas.xmlsoap.org/wsdl/" node="/xs:schema">
+    <jaxb:bindings schemaLocation="http://schemas.xmlsoap.org/wsdl/2003-02-11.xsd" node="/xs:schema">
         <jaxb:schemaBindings>
             <jaxb:package name="org.apache.cxf.wsdl"/>
         </jaxb:schemaBindings>
         <jaxb:globalBindings generateIsSetMethod="true"/>
     </jaxb:bindings>
-    <jaxb:bindings schemaLocation="http://schemas.xmlsoap.org/wsdl/" node="/xs:schema/xs:complexType[@name='tExtensibilityElement']">
+    <jaxb:bindings schemaLocation="http://schemas.xmlsoap.org/wsdl/2003-02-11.xsd" node="/xs:schema/xs:complexType[@name='tExtensibilityElement']">
         <jaxb:class implClass="org.apache.cxf.wsdl.TExtensibilityElementImpl"/>
     </jaxb:bindings>
 </jaxb:bindings>

Modified: incubator/cxf/trunk/rt/bindings/corba/src/main/resources/schemas/wsdl/corba-binding.xjb
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/rt/bindings/corba/src/main/resources/schemas/wsdl/corba-binding.xjb?rev=638582&r1=638581&r2=638582&view=diff
==============================================================================
--- incubator/cxf/trunk/rt/bindings/corba/src/main/resources/schemas/wsdl/corba-binding.xjb (original)
+++ incubator/cxf/trunk/rt/bindings/corba/src/main/resources/schemas/wsdl/corba-binding.xjb Tue Mar 18 14:25:46 2008
@@ -22,13 +22,13 @@
   xmlns:xs="http://www.w3.org/2001/XMLSchema" 
   xmlns:xjc="http://java.sun.com/xml/ns/jaxb/xjc" 
   jaxb:extensionBindingPrefixes="xjc">
-    <jaxb:bindings schemaLocation="http://schemas.xmlsoap.org/wsdl/" node="/xs:schema">
+    <jaxb:bindings schemaLocation="http://schemas.xmlsoap.org/wsdl/2003-02-11.xsd" node="/xs:schema">
         <jaxb:schemaBindings>
             <jaxb:package name="org.apache.cxf.wsdl"/>
         </jaxb:schemaBindings>
         <jaxb:globalBindings generateIsSetMethod="true"/>
     </jaxb:bindings>
-    <jaxb:bindings schemaLocation="http://schemas.xmlsoap.org/wsdl/" node="/xs:schema/xs:complexType[@name='tExtensibilityElement']">
+    <jaxb:bindings schemaLocation="http://schemas.xmlsoap.org/wsdl/2003-02-11.xsd" node="/xs:schema/xs:complexType[@name='tExtensibilityElement']">
         <jaxb:class implClass="org.apache.cxf.wsdl.TExtensibilityElementImpl"/>
     </jaxb:bindings>
     <jaxb:bindings schemaLocation="corba-binding.xsd" node="/xs:schema">

Modified: incubator/cxf/trunk/rt/bindings/corba/src/main/resources/schemas/wsdl/corba-binding.xsd
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/rt/bindings/corba/src/main/resources/schemas/wsdl/corba-binding.xsd?rev=638582&r1=638581&r2=638582&view=diff
==============================================================================
--- incubator/cxf/trunk/rt/bindings/corba/src/main/resources/schemas/wsdl/corba-binding.xsd (original)
+++ incubator/cxf/trunk/rt/bindings/corba/src/main/resources/schemas/wsdl/corba-binding.xsd Tue Mar 18 14:25:46 2008
@@ -28,7 +28,8 @@
     elementFormDefault="qualified" 
     attributeFormDefault="unqualified"> 
     
-    <xs:import namespace="http://schemas.xmlsoap.org/wsdl/" schemaLocation="http://schemas.xmlsoap.org/wsdl/"/>
+    <xs:import namespace="http://schemas.xmlsoap.org/wsdl/"
+        schemaLocation="http://schemas.xmlsoap.org/wsdl/2003-02-11.xsd"/>
   
         <xs:complexType name="corbaType">
                 <xs:annotation>

Modified: incubator/cxf/trunk/rt/bindings/jbi/src/main/resources/schemas/wsdl/jbi.xjb
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/rt/bindings/jbi/src/main/resources/schemas/wsdl/jbi.xjb?rev=638582&r1=638581&r2=638582&view=diff
==============================================================================
--- incubator/cxf/trunk/rt/bindings/jbi/src/main/resources/schemas/wsdl/jbi.xjb (original)
+++ incubator/cxf/trunk/rt/bindings/jbi/src/main/resources/schemas/wsdl/jbi.xjb Tue Mar 18 14:25:46 2008
@@ -22,13 +22,13 @@
   xmlns:xs="http://www.w3.org/2001/XMLSchema" 
   xmlns:xjc="http://java.sun.com/xml/ns/jaxb/xjc" 
   jaxb:extensionBindingPrefixes="xjc">
-    <jaxb:bindings schemaLocation="http://schemas.xmlsoap.org/wsdl/" node="/xs:schema">
+    <jaxb:bindings schemaLocation="http://schemas.xmlsoap.org/wsdl/2003-02-11.xsd" node="/xs:schema">
         <jaxb:schemaBindings>
             <jaxb:package name="org.apache.cxf.wsdl"/>
         </jaxb:schemaBindings>
         <jaxb:globalBindings generateIsSetMethod="true"/>
     </jaxb:bindings>
-    <jaxb:bindings schemaLocation="http://schemas.xmlsoap.org/wsdl/" node="/xs:schema/xs:complexType[@name='tExtensibilityElement']">
+    <jaxb:bindings schemaLocation="http://schemas.xmlsoap.org/wsdl/2003-02-11.xsd" node="/xs:schema/xs:complexType[@name='tExtensibilityElement']">
         <jaxb:class implClass="org.apache.cxf.wsdl.TExtensibilityElementImpl"/>
     </jaxb:bindings>
 </jaxb:bindings>

Modified: incubator/cxf/trunk/rt/bindings/jbi/src/main/resources/schemas/wsdl/jbi.xsd
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/rt/bindings/jbi/src/main/resources/schemas/wsdl/jbi.xsd?rev=638582&r1=638581&r2=638582&view=diff
==============================================================================
--- incubator/cxf/trunk/rt/bindings/jbi/src/main/resources/schemas/wsdl/jbi.xsd (original)
+++ incubator/cxf/trunk/rt/bindings/jbi/src/main/resources/schemas/wsdl/jbi.xsd Tue Mar 18 14:25:46 2008
@@ -24,7 +24,8 @@
   elementFormDefault="qualified"
   xmlns:jaxb="http://java.sun.com/xml/ns/jaxb" jaxb:version="2.0">
   
-  <xs:import namespace="http://schemas.xmlsoap.org/wsdl/" schemaLocation="http://schemas.xmlsoap.org/wsdl/" />
+  <xs:import namespace="http://schemas.xmlsoap.org/wsdl/"
+      schemaLocation="http://schemas.xmlsoap.org/wsdl/2003-02-11.xsd" />
   
   <xs:complexType name="JBIFormatBinding">
     <xs:complexContent>

Modified: incubator/cxf/trunk/rt/bindings/xml/src/main/resources/schemas/wsdl/xml-binding.xjb
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/rt/bindings/xml/src/main/resources/schemas/wsdl/xml-binding.xjb?rev=638582&r1=638581&r2=638582&view=diff
==============================================================================
--- incubator/cxf/trunk/rt/bindings/xml/src/main/resources/schemas/wsdl/xml-binding.xjb (original)
+++ incubator/cxf/trunk/rt/bindings/xml/src/main/resources/schemas/wsdl/xml-binding.xjb Tue Mar 18 14:25:46 2008
@@ -22,13 +22,13 @@
   xmlns:xs="http://www.w3.org/2001/XMLSchema" 
   xmlns:xjc="http://java.sun.com/xml/ns/jaxb/xjc" 
   jaxb:extensionBindingPrefixes="xjc">
-    <jaxb:bindings schemaLocation="http://schemas.xmlsoap.org/wsdl/" node="/xs:schema">
+    <jaxb:bindings schemaLocation="http://schemas.xmlsoap.org/wsdl/2003-02-11.xsd" node="/xs:schema">
         <jaxb:schemaBindings>
             <jaxb:package name="org.apache.cxf.wsdl"/>
         </jaxb:schemaBindings>
         <jaxb:globalBindings generateIsSetMethod="true"/>
     </jaxb:bindings>
-    <jaxb:bindings schemaLocation="http://schemas.xmlsoap.org/wsdl/" node="/xs:schema/xs:complexType[@name='tExtensibilityElement']">
+    <jaxb:bindings schemaLocation="http://schemas.xmlsoap.org/wsdl/2003-02-11.xsd" node="/xs:schema/xs:complexType[@name='tExtensibilityElement']">
         <jaxb:class implClass="org.apache.cxf.wsdl.TExtensibilityElementImpl"/>
     </jaxb:bindings>
 </jaxb:bindings>

Modified: incubator/cxf/trunk/rt/bindings/xml/src/main/resources/schemas/wsdl/xml-binding.xsd
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/rt/bindings/xml/src/main/resources/schemas/wsdl/xml-binding.xsd?rev=638582&r1=638581&r2=638582&view=diff
==============================================================================
--- incubator/cxf/trunk/rt/bindings/xml/src/main/resources/schemas/wsdl/xml-binding.xsd (original)
+++ incubator/cxf/trunk/rt/bindings/xml/src/main/resources/schemas/wsdl/xml-binding.xsd Tue Mar 18 14:25:46 2008
@@ -24,7 +24,8 @@
 	elementFormDefault="qualified"
 	xmlns:jaxb="http://java.sun.com/xml/ns/jaxb" jaxb:version="2.0">
 
-	<xs:import namespace="http://schemas.xmlsoap.org/wsdl/" schemaLocation="http://schemas.xmlsoap.org/wsdl/" />
+	<xs:import namespace="http://schemas.xmlsoap.org/wsdl/" 
+        schemaLocation="http://schemas.xmlsoap.org/wsdl/2003-02-11.xsd" />
 
 	<xs:complexType name="XMLBindingMessageFormat">
 		<xs:complexContent>

Modified: incubator/cxf/trunk/rt/transports/http/src/main/resources/catalog.cat
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/rt/transports/http/src/main/resources/catalog.cat?rev=638582&r1=638581&r2=638582&view=diff
==============================================================================
--- incubator/cxf/trunk/rt/transports/http/src/main/resources/catalog.cat (original)
+++ incubator/cxf/trunk/rt/transports/http/src/main/resources/catalog.cat Tue Mar 18 14:25:46 2008
@@ -19,5 +19,6 @@
 
 
 SYSTEM "http://schemas.xmlsoap.org/wsdl/" "../../../../../../common/schemas/src/main/resources/schemas/wsdl/wsdl.xsd"
+SYSTEM "http://schemas.xmlsoap.org/wsdl/2003-02-11.xsd" "../../../../../../common/schemas/src/main/resources/schemas/wsdl/wsdl.xsd"
 SYSTEM "http://cxf.apache.org/schemas/configuration/security.xsd" "../../../../../../common/schemas/src/main/resources/schemas/configuration/security.xsd"
 SYSTEM "http://cxf.apache.org/schemas/wsdl/http-conf.xsd" "schemas/wsdl/http-conf.xsd"

Modified: incubator/cxf/trunk/rt/transports/http/src/main/resources/schemas/configuration/http-conf.xsd
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/rt/transports/http/src/main/resources/schemas/configuration/http-conf.xsd?rev=638582&r1=638581&r2=638582&view=diff
==============================================================================
--- incubator/cxf/trunk/rt/transports/http/src/main/resources/schemas/configuration/http-conf.xsd (original)
+++ incubator/cxf/trunk/rt/transports/http/src/main/resources/schemas/configuration/http-conf.xsd Tue Mar 18 14:25:46 2008
@@ -34,7 +34,7 @@
 
     <xs:include schemaLocation="http://cxf.apache.org/schemas/wsdl/http-conf.xsd"/> 
     <xs:import namespace="http://schemas.xmlsoap.org/wsdl/" 
-               schemaLocation="http://schemas.xmlsoap.org/wsdl/"/>
+               schemaLocation="http://schemas.xmlsoap.org/wsdl/2003-02-11.xsd"/>
     <xs:import namespace="http://cxf.apache.org/configuration/security" 
                schemaLocation="http://cxf.apache.org/schemas/configuration/security.xsd"/>
     <xs:import namespace="http://www.springframework.org/schema/beans" 

Modified: incubator/cxf/trunk/rt/transports/http/src/main/resources/schemas/wsdl/http-conf.xjb
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/rt/transports/http/src/main/resources/schemas/wsdl/http-conf.xjb?rev=638582&r1=638581&r2=638582&view=diff
==============================================================================
--- incubator/cxf/trunk/rt/transports/http/src/main/resources/schemas/wsdl/http-conf.xjb (original)
+++ incubator/cxf/trunk/rt/transports/http/src/main/resources/schemas/wsdl/http-conf.xjb Tue Mar 18 14:25:46 2008
@@ -22,13 +22,13 @@
   xmlns:xs="http://www.w3.org/2001/XMLSchema" 
   xmlns:xjc="http://java.sun.com/xml/ns/jaxb/xjc" 
   jaxb:extensionBindingPrefixes="xjc">
-    <jaxb:bindings schemaLocation="http://schemas.xmlsoap.org/wsdl/" node="/xs:schema">
+    <jaxb:bindings schemaLocation="http://schemas.xmlsoap.org/wsdl/2003-02-11.xsd" node="/xs:schema">
         <jaxb:schemaBindings>
             <jaxb:package name="org.apache.cxf.wsdl"/>
         </jaxb:schemaBindings>
         <jaxb:globalBindings generateIsSetMethod="true"/>
     </jaxb:bindings>
-    <jaxb:bindings schemaLocation="http://schemas.xmlsoap.org/wsdl/" node="/xs:schema/xs:complexType[@name='tExtensibilityElement']">
+    <jaxb:bindings schemaLocation="http://schemas.xmlsoap.org/wsdl/2003-02-11.xsd" node="/xs:schema/xs:complexType[@name='tExtensibilityElement']">
         <jaxb:class implClass="org.apache.cxf.wsdl.TExtensibilityElementImpl"/>
     </jaxb:bindings>
 </jaxb:bindings>

Modified: incubator/cxf/trunk/rt/transports/http/src/main/resources/schemas/wsdl/http-conf.xsd
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/rt/transports/http/src/main/resources/schemas/wsdl/http-conf.xsd?rev=638582&r1=638581&r2=638582&view=diff
==============================================================================
--- incubator/cxf/trunk/rt/transports/http/src/main/resources/schemas/wsdl/http-conf.xsd (original)
+++ incubator/cxf/trunk/rt/transports/http/src/main/resources/schemas/wsdl/http-conf.xsd Tue Mar 18 14:25:46 2008
@@ -28,7 +28,8 @@
            xmlns:jaxb="http://java.sun.com/xml/ns/jaxb"
            jaxb:version="2.0">
 
-    <xs:import namespace="http://schemas.xmlsoap.org/wsdl/" schemaLocation="http://schemas.xmlsoap.org/wsdl/"/>
+    <xs:import namespace="http://schemas.xmlsoap.org/wsdl/" 
+        schemaLocation="http://schemas.xmlsoap.org/wsdl/2003-02-11.xsd"/>
     
     <xs:element name="server" type="http-conf:HTTPServerPolicy"/>
     <xs:element name="client" type="http-conf:HTTPClientPolicy"/>

Modified: incubator/cxf/trunk/rt/transports/jbi/src/main/resources/schemas/wsdl/jbi.xjb
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/rt/transports/jbi/src/main/resources/schemas/wsdl/jbi.xjb?rev=638582&r1=638581&r2=638582&view=diff
==============================================================================
--- incubator/cxf/trunk/rt/transports/jbi/src/main/resources/schemas/wsdl/jbi.xjb (original)
+++ incubator/cxf/trunk/rt/transports/jbi/src/main/resources/schemas/wsdl/jbi.xjb Tue Mar 18 14:25:46 2008
@@ -22,13 +22,13 @@
   xmlns:xs="http://www.w3.org/2001/XMLSchema" 
   xmlns:xjc="http://java.sun.com/xml/ns/jaxb/xjc" 
   jaxb:extensionBindingPrefixes="xjc">
-    <jaxb:bindings schemaLocation="http://schemas.xmlsoap.org/wsdl/" node="/xs:schema">
+    <jaxb:bindings schemaLocation="http://schemas.xmlsoap.org/wsdl/2003-02-11.xsd" node="/xs:schema">
         <jaxb:schemaBindings>
             <jaxb:package name="org.apache.cxf.wsdl"/>
         </jaxb:schemaBindings>
         <jaxb:globalBindings generateIsSetMethod="true"/>
     </jaxb:bindings>
-    <jaxb:bindings schemaLocation="http://schemas.xmlsoap.org/wsdl/" node="/xs:schema/xs:complexType[@name='tExtensibilityElement']">
+    <jaxb:bindings schemaLocation="http://schemas.xmlsoap.org/wsdl/2003-02-11.xsd" node="/xs:schema/xs:complexType[@name='tExtensibilityElement']">
         <jaxb:class implClass="org.apache.cxf.wsdl.TExtensibilityElementImpl"/>
     </jaxb:bindings>
 </jaxb:bindings>

Modified: incubator/cxf/trunk/rt/transports/jbi/src/main/resources/schemas/wsdl/jbi.xsd
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/rt/transports/jbi/src/main/resources/schemas/wsdl/jbi.xsd?rev=638582&r1=638581&r2=638582&view=diff
==============================================================================
--- incubator/cxf/trunk/rt/transports/jbi/src/main/resources/schemas/wsdl/jbi.xsd (original)
+++ incubator/cxf/trunk/rt/transports/jbi/src/main/resources/schemas/wsdl/jbi.xsd Tue Mar 18 14:25:46 2008
@@ -24,7 +24,8 @@
   elementFormDefault="qualified"
   xmlns:jaxb="http://java.sun.com/xml/ns/jaxb" jaxb:version="2.0">
   
-  <xs:import namespace="http://schemas.xmlsoap.org/wsdl/" schemaLocation="http://schemas.xmlsoap.org/wsdl/" />
+  <xs:import namespace="http://schemas.xmlsoap.org/wsdl/"
+      schemaLocation="http://schemas.xmlsoap.org/wsdl/2003-02-11.xsd" />
   
   
   <xs:element name="address" type="jbi:AddressType"/>

Modified: incubator/cxf/trunk/rt/transports/jms/src/main/resources/schemas/configuration/jms.xsd
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/rt/transports/jms/src/main/resources/schemas/configuration/jms.xsd?rev=638582&r1=638581&r2=638582&view=diff
==============================================================================
--- incubator/cxf/trunk/rt/transports/jms/src/main/resources/schemas/configuration/jms.xsd (original)
+++ incubator/cxf/trunk/rt/transports/jms/src/main/resources/schemas/configuration/jms.xsd Tue Mar 18 14:25:46 2008
@@ -27,9 +27,6 @@
   elementFormDefault="qualified" jaxb:version="2.0">
   
     <xs:include schemaLocation="http://cxf.apache.org/schemas/wsdl/jms.xsd"/> 
-    <!--
-    <xs:import namespace="http://schemas.xmlsoap.org/wsdl/" schemaLocation="http://schemas.xmlsoap.org/wsdl/"/>
-    -->
     <xs:import namespace="http://www.springframework.org/schema/beans" schemaLocation="http://www.springframework.org/schema/beans/spring-beans.xsd"/>
     <xs:import namespace="http://cxf.apache.org/configuration/beans" schemaLocation="http://cxf.apache.org/schemas/configuration/cxf-beans.xsd"/>
     

Modified: incubator/cxf/trunk/rt/transports/jms/src/main/resources/schemas/wsdl/jms.xjb
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/rt/transports/jms/src/main/resources/schemas/wsdl/jms.xjb?rev=638582&r1=638581&r2=638582&view=diff
==============================================================================
--- incubator/cxf/trunk/rt/transports/jms/src/main/resources/schemas/wsdl/jms.xjb (original)
+++ incubator/cxf/trunk/rt/transports/jms/src/main/resources/schemas/wsdl/jms.xjb Tue Mar 18 14:25:46 2008
@@ -22,13 +22,13 @@
   xmlns:xs="http://www.w3.org/2001/XMLSchema" 
   xmlns:xjc="http://java.sun.com/xml/ns/jaxb/xjc" 
   jaxb:extensionBindingPrefixes="xjc">
-    <jaxb:bindings schemaLocation="http://schemas.xmlsoap.org/wsdl/" node="/xs:schema">
+    <jaxb:bindings schemaLocation="http://schemas.xmlsoap.org/wsdl/2003-02-11.xsd" node="/xs:schema">
         <jaxb:schemaBindings>
             <jaxb:package name="org.apache.cxf.wsdl"/>
         </jaxb:schemaBindings>
         <jaxb:globalBindings generateIsSetMethod="true"/>
     </jaxb:bindings>
-    <jaxb:bindings schemaLocation="http://schemas.xmlsoap.org/wsdl/" node="/xs:schema/xs:complexType[@name='tExtensibilityElement']">
+    <jaxb:bindings schemaLocation="http://schemas.xmlsoap.org/wsdl/2003-02-11.xsd" node="/xs:schema/xs:complexType[@name='tExtensibilityElement']">
         <jaxb:class implClass="org.apache.cxf.wsdl.TExtensibilityElementImpl"/>
     </jaxb:bindings>
     <jaxb:bindings schemaLocation="jms.xsd" node="/xs:schema">

Modified: incubator/cxf/trunk/rt/transports/jms/src/main/resources/schemas/wsdl/jms.xsd
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/rt/transports/jms/src/main/resources/schemas/wsdl/jms.xsd?rev=638582&r1=638581&r2=638582&view=diff
==============================================================================
--- incubator/cxf/trunk/rt/transports/jms/src/main/resources/schemas/wsdl/jms.xsd (original)
+++ incubator/cxf/trunk/rt/transports/jms/src/main/resources/schemas/wsdl/jms.xsd Tue Mar 18 14:25:46 2008
@@ -24,7 +24,8 @@
   targetNamespace="http://cxf.apache.org/transports/jms" 
   elementFormDefault="qualified" jaxb:version="2.0">
   
-    <xs:import namespace="http://schemas.xmlsoap.org/wsdl/" schemaLocation="http://schemas.xmlsoap.org/wsdl/"/>
+    <xs:import namespace="http://schemas.xmlsoap.org/wsdl/"
+        schemaLocation="http://schemas.xmlsoap.org/wsdl/2003-02-11.xsd"/>
     
     <!-- Valid wsdl elements -->
     <xs:element name="client" type="jms:ClientBehaviorPolicyType"/>

Modified: incubator/cxf/trunk/rt/ws/addr/src/main/resources/schemas/ws-addr-wsdl.xjb
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/rt/ws/addr/src/main/resources/schemas/ws-addr-wsdl.xjb?rev=638582&r1=638581&r2=638582&view=diff
==============================================================================
--- incubator/cxf/trunk/rt/ws/addr/src/main/resources/schemas/ws-addr-wsdl.xjb (original)
+++ incubator/cxf/trunk/rt/ws/addr/src/main/resources/schemas/ws-addr-wsdl.xjb Tue Mar 18 14:25:46 2008
@@ -22,13 +22,13 @@
   xmlns:xs="http://www.w3.org/2001/XMLSchema" 
   xmlns:xjc="http://java.sun.com/xml/ns/jaxb/xjc" 
   jaxb:extensionBindingPrefixes="xjc">
-    <jaxb:bindings schemaLocation="http://schemas.xmlsoap.org/wsdl/" node="/xs:schema">
+    <jaxb:bindings schemaLocation="http://schemas.xmlsoap.org/wsdl/2003-02-11.xsd" node="/xs:schema">
         <jaxb:schemaBindings>
             <jaxb:package name="org.apache.cxf.wsdl"/>
         </jaxb:schemaBindings>
         <jaxb:globalBindings generateIsSetMethod="true"/>
     </jaxb:bindings>
-    <jaxb:bindings schemaLocation="http://schemas.xmlsoap.org/wsdl/" node="/xs:schema/xs:complexType[@name='tExtensibilityElement']">
+    <jaxb:bindings schemaLocation="http://schemas.xmlsoap.org/wsdl/2003-02-11.xsd" node="/xs:schema/xs:complexType[@name='tExtensibilityElement']">
         <jaxb:class implClass="org.apache.cxf.wsdl.TExtensibilityElementImpl"/>
     </jaxb:bindings>
 </jaxb:bindings>

Modified: incubator/cxf/trunk/rt/ws/addr/src/main/resources/schemas/ws-addr-wsdl.xsd
URL: http://svn.apache.org/viewvc/incubator/cxf/trunk/rt/ws/addr/src/main/resources/schemas/ws-addr-wsdl.xsd?rev=638582&r1=638581&r2=638582&view=diff
==============================================================================
--- incubator/cxf/trunk/rt/ws/addr/src/main/resources/schemas/ws-addr-wsdl.xsd (original)
+++ incubator/cxf/trunk/rt/ws/addr/src/main/resources/schemas/ws-addr-wsdl.xsd Tue Mar 18 14:25:46 2008
@@ -24,7 +24,8 @@
 	   elementFormDefault="qualified"
 	   xmlns:jaxb="http://java.sun.com/xml/ns/jaxb" jaxb:version="2.0">
 
-    <xs:import namespace="http://schemas.xmlsoap.org/wsdl/" schemaLocation="http://schemas.xmlsoap.org/wsdl/" />
+    <xs:import namespace="http://schemas.xmlsoap.org/wsdl/"
+        schemaLocation="http://schemas.xmlsoap.org/wsdl/2003-02-11.xsd" />
 
     <xs:complexType name="UsingAddressing">
 	<xs:complexContent>