You are viewing a plain text version of this content. The canonical link for it is here.
Posted to woden-dev@ws.apache.org by jk...@apache.org on 2007/03/22 20:26:28 UTC

svn commit: r521411 [2/2] - in /incubator/woden/trunk/java: ./ resources/ src/org/apache/woden/internal/ src/org/apache/woden/internal/resolver/ src/org/apache/woden/internal/wsdl20/ src/org/apache/woden/internal/wsdl20/extensions/ src/org/apache/woden...

Modified: incubator/woden/trunk/java/test/org/apache/woden/wsdl20/extensions/http/HTTPBindingExtensionsTest.java
URL: http://svn.apache.org/viewvc/incubator/woden/trunk/java/test/org/apache/woden/wsdl20/extensions/http/HTTPBindingExtensionsTest.java?view=diff&rev=521411&r1=521410&r2=521411
==============================================================================
--- incubator/woden/trunk/java/test/org/apache/woden/wsdl20/extensions/http/HTTPBindingExtensionsTest.java (original)
+++ incubator/woden/trunk/java/test/org/apache/woden/wsdl20/extensions/http/HTTPBindingExtensionsTest.java Thu Mar 22 12:26:24 2007
@@ -151,7 +151,7 @@
 
 
     /**
-     * Test that when binding type is "http://www.w3.org/2006/01/wsdl/http" and the wsdl:binding element 
+     * Test that when binding type is "http://www.w3.org/ns/wsdl/http" and the wsdl:binding element 
      * has no HTTP extension attributes, the Binding component still contains an HTTPBindingExtensions 
      * object to handle the default values for the REQUIRED extension properties.
      * <p>

Modified: incubator/woden/trunk/java/test/org/apache/woden/wsdl20/extensions/http/HTTPBindingFaultExtensionsTest.java
URL: http://svn.apache.org/viewvc/incubator/woden/trunk/java/test/org/apache/woden/wsdl20/extensions/http/HTTPBindingFaultExtensionsTest.java?view=diff&rev=521411&r1=521410&r2=521411
==============================================================================
--- incubator/woden/trunk/java/test/org/apache/woden/wsdl20/extensions/http/HTTPBindingFaultExtensionsTest.java (original)
+++ incubator/woden/trunk/java/test/org/apache/woden/wsdl20/extensions/http/HTTPBindingFaultExtensionsTest.java Thu Mar 22 12:26:24 2007
@@ -123,7 +123,7 @@
     }
     
     /**
-     * Test that when binding type is "http://www.w3.org/2006/01/wsdl/http" and the binding's 
+     * Test that when binding type is "http://www.w3.org/ns/wsdl/http" and the binding's 
      * wsdl:fault element has no HTTP extension attributes, the BindingFault component still 
      * contains an HTTPBindingFaultExtensions object to handle the default values for the 
      * REQUIRED extension properties.

Modified: incubator/woden/trunk/java/test/org/apache/woden/wsdl20/extensions/http/resources/HTTPBindingExtensions.wsdl
URL: http://svn.apache.org/viewvc/incubator/woden/trunk/java/test/org/apache/woden/wsdl20/extensions/http/resources/HTTPBindingExtensions.wsdl?view=diff&rev=521411&r1=521410&r2=521411
==============================================================================
--- incubator/woden/trunk/java/test/org/apache/woden/wsdl20/extensions/http/resources/HTTPBindingExtensions.wsdl (original)
+++ incubator/woden/trunk/java/test/org/apache/woden/wsdl20/extensions/http/resources/HTTPBindingExtensions.wsdl Thu Mar 22 12:26:24 2007
@@ -15,14 +15,14 @@
  * See the License for the specific language governing permissions and 
  * limitations under the License.
 -->
-<description xmlns="http://www.w3.org/2006/01/wsdl"
+<description xmlns="http://www.w3.org/ns/wsdl"
 	targetNamespace="http://ws.apache.woden"
 	xmlns:tns="http://ws.apache.woden"
 	xmlns:xs="http://www.w3.org/2001/XMLSchema"
 	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-    xmlns:whttp= "http://www.w3.org/2006/01/wsdl/http"
+    xmlns:whttp= "http://www.w3.org/ns/wsdl/http"
 	xsi:schemaLocation=
-	    "http://www.w3.org/2006/01/wsdl http://www.w3.org/2006/01/wsdl/wsdl20.xsd 
+	    "http://www.w3.org/ns/wsdl http://www.w3.org/ns/wsdl/wsdl20.xsd 
 	    http://www.w3.org/2001/XMLSchema http://www.w3.org/2001/XMLSchema.xsd">
 
 	<documentation>
@@ -39,7 +39,7 @@
 	
 	<binding name="binding1"
 	  interface="tns:interface1"
-	  type="http://www.w3.org/2006/01/wsdl/http"
+	  type="http://www.w3.org/ns/wsdl/http"
 	  whttp:methodDefault="POST"
 	  whttp:queryParameterSeparatorDefault="$"
 	  whttp:cookies="true"
@@ -54,7 +54,7 @@
 
 	<binding name="binding2"
 	  interface="tns:interface2"
-	  type="http://www.w3.org/2006/01/wsdl/http">
+	  type="http://www.w3.org/ns/wsdl/http">
 	  <documentation>
 	     {http method default} is OPTIONAL so should be null if whttp:methodDefault omitted
 	     {http query parameter separator default} is REQUIRED and should default to ampersand if whttp:queryParameterSeparatorDefault omitted
@@ -65,7 +65,7 @@
 	
 	<binding name="binding3"
 	  interface="tns:interface3"
-	  type="http://www.w3.org/2006/01/wsdl/http">
+	  type="http://www.w3.org/ns/wsdl/http">
 	  <documentation>
 	     {http cookies} should be false if whttp:cookies is "false"
 	  </documentation>

Modified: incubator/woden/trunk/java/test/org/apache/woden/wsdl20/extensions/http/resources/HTTPBindingFaultExtensions.wsdl
URL: http://svn.apache.org/viewvc/incubator/woden/trunk/java/test/org/apache/woden/wsdl20/extensions/http/resources/HTTPBindingFaultExtensions.wsdl?view=diff&rev=521411&r1=521410&r2=521411
==============================================================================
--- incubator/woden/trunk/java/test/org/apache/woden/wsdl20/extensions/http/resources/HTTPBindingFaultExtensions.wsdl (original)
+++ incubator/woden/trunk/java/test/org/apache/woden/wsdl20/extensions/http/resources/HTTPBindingFaultExtensions.wsdl Thu Mar 22 12:26:24 2007
@@ -15,14 +15,14 @@
  * See the License for the specific language governing permissions and 
  * limitations under the License.
 -->
-<description xmlns="http://www.w3.org/2006/01/wsdl"
+<description xmlns="http://www.w3.org/ns/wsdl"
 	targetNamespace="http://ws.apache.woden"
 	xmlns:tns="http://ws.apache.woden"
 	xmlns:xs="http://www.w3.org/2001/XMLSchema"
 	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-    xmlns:whttp= "http://www.w3.org/2006/01/wsdl/http"
+    xmlns:whttp= "http://www.w3.org/ns/wsdl/http"
 	xsi:schemaLocation=
-	    "http://www.w3.org/2006/01/wsdl http://www.w3.org/2006/01/wsdl/wsdl20.xsd 
+	    "http://www.w3.org/ns/wsdl http://www.w3.org/ns/wsdl/wsdl20.xsd 
 	    http://www.w3.org/2001/XMLSchema http://www.w3.org/2001/XMLSchema.xsd">
 
 	<documentation>
@@ -37,7 +37,7 @@
 	
 	<binding name="binding1"
 	  interface="tns:interface1"
-	  type="http://www.w3.org/2006/01/wsdl/http"
+	  type="http://www.w3.org/ns/wsdl/http"
 	  whttp:contentEncodingDefault="chunked">
 	  <documentation>
 	     {http method default} should be POST if whttp:methodDefault is "POST"

Modified: incubator/woden/trunk/java/test/org/apache/woden/wsdl20/extensions/http/resources/HTTPBindingMessageReferenceExtensions.wsdl
URL: http://svn.apache.org/viewvc/incubator/woden/trunk/java/test/org/apache/woden/wsdl20/extensions/http/resources/HTTPBindingMessageReferenceExtensions.wsdl?view=diff&rev=521411&r1=521410&r2=521411
==============================================================================
--- incubator/woden/trunk/java/test/org/apache/woden/wsdl20/extensions/http/resources/HTTPBindingMessageReferenceExtensions.wsdl (original)
+++ incubator/woden/trunk/java/test/org/apache/woden/wsdl20/extensions/http/resources/HTTPBindingMessageReferenceExtensions.wsdl Thu Mar 22 12:26:24 2007
@@ -15,14 +15,14 @@
  * See the License for the specific language governing permissions and 
  * limitations under the License.
 -->
-<description xmlns="http://www.w3.org/2006/01/wsdl"
+<description xmlns="http://www.w3.org/ns/wsdl"
 	targetNamespace="http://ws.apache.woden"
 	xmlns:tns="http://ws.apache.woden"
 	xmlns:xs="http://www.w3.org/2001/XMLSchema"
 	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-    xmlns:whttp= "http://www.w3.org/2006/01/wsdl/http"
+    xmlns:whttp= "http://www.w3.org/ns/wsdl/http"
 	xsi:schemaLocation=
-	    "http://www.w3.org/2006/01/wsdl http://www.w3.org/2006/01/wsdl/wsdl20.xsd 
+	    "http://www.w3.org/ns/wsdl http://www.w3.org/ns/wsdl/wsdl20.xsd 
 	    http://www.w3.org/2001/XMLSchema http://www.w3.org/2001/XMLSchema.xsd">
 
 	<documentation>
@@ -41,7 +41,7 @@
 	
 	<binding name="binding1"
 	  interface="tns:interface1"
-	  type="http://www.w3.org/2006/01/wsdl/http">
+	  type="http://www.w3.org/ns/wsdl/http">
 	  
 	  <operation ref="tns:operation1"
 	      whttp:contentEncodingDefault="chunked" >

Modified: incubator/woden/trunk/java/test/org/apache/woden/wsdl20/extensions/http/resources/HTTPBindingOperationExtensions.wsdl
URL: http://svn.apache.org/viewvc/incubator/woden/trunk/java/test/org/apache/woden/wsdl20/extensions/http/resources/HTTPBindingOperationExtensions.wsdl?view=diff&rev=521411&r1=521410&r2=521411
==============================================================================
--- incubator/woden/trunk/java/test/org/apache/woden/wsdl20/extensions/http/resources/HTTPBindingOperationExtensions.wsdl (original)
+++ incubator/woden/trunk/java/test/org/apache/woden/wsdl20/extensions/http/resources/HTTPBindingOperationExtensions.wsdl Thu Mar 22 12:26:24 2007
@@ -15,14 +15,14 @@
  * See the License for the specific language governing permissions and 
  * limitations under the License.
 -->
-<description xmlns="http://www.w3.org/2006/01/wsdl"
+<description xmlns="http://www.w3.org/ns/wsdl"
 	targetNamespace="http://ws.apache.woden"
 	xmlns:tns="http://ws.apache.woden"
 	xmlns:xs="http://www.w3.org/2001/XMLSchema"
 	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-    xmlns:whttp= "http://www.w3.org/2006/01/wsdl/http"
+    xmlns:whttp= "http://www.w3.org/ns/wsdl/http"
 	xsi:schemaLocation=
-	    "http://www.w3.org/2006/01/wsdl http://www.w3.org/2006/01/wsdl/wsdl20.xsd 
+	    "http://www.w3.org/ns/wsdl http://www.w3.org/ns/wsdl/wsdl20.xsd 
 	    http://www.w3.org/2001/XMLSchema http://www.w3.org/2001/XMLSchema.xsd">
 
 	<documentation>
@@ -45,7 +45,7 @@
 	
 	<binding name="binding1"
 	  interface="tns:interface1"
-	  type="http://www.w3.org/2006/01/wsdl/http">
+	  type="http://www.w3.org/ns/wsdl/http">
 	  <documentation>
 	     {http query parameter separator default} omitted so will default to ampersand
 	  </documentation>

Modified: incubator/woden/trunk/java/test/org/apache/woden/wsdl20/extensions/http/resources/HTTPEndpointExtensions.wsdl
URL: http://svn.apache.org/viewvc/incubator/woden/trunk/java/test/org/apache/woden/wsdl20/extensions/http/resources/HTTPEndpointExtensions.wsdl?view=diff&rev=521411&r1=521410&r2=521411
==============================================================================
--- incubator/woden/trunk/java/test/org/apache/woden/wsdl20/extensions/http/resources/HTTPEndpointExtensions.wsdl (original)
+++ incubator/woden/trunk/java/test/org/apache/woden/wsdl20/extensions/http/resources/HTTPEndpointExtensions.wsdl Thu Mar 22 12:26:24 2007
@@ -15,14 +15,14 @@
  * See the License for the specific language governing permissions and 
  * limitations under the License.
 -->
-<description xmlns="http://www.w3.org/2006/01/wsdl"
+<description xmlns="http://www.w3.org/ns/wsdl"
 	targetNamespace="http://ws.apache.woden"
 	xmlns:tns="http://ws.apache.woden"
 	xmlns:xs="http://www.w3.org/2001/XMLSchema"
 	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-    xmlns:whttp= "http://www.w3.org/2006/01/wsdl/http"
+    xmlns:whttp= "http://www.w3.org/ns/wsdl/http"
 	xsi:schemaLocation=
-	    "http://www.w3.org/2006/01/wsdl http://www.w3.org/2006/01/wsdl/wsdl20.xsd 
+	    "http://www.w3.org/ns/wsdl http://www.w3.org/ns/wsdl/wsdl20.xsd 
 	    http://www.w3.org/2001/XMLSchema http://www.w3.org/2001/XMLSchema.xsd">
 
 	<documentation>
@@ -37,7 +37,7 @@
 	
 	<binding name="binding1"
 	  interface="tns:interface1"
-	  type="http://www.w3.org/2006/01/wsdl/http">
+	  type="http://www.w3.org/ns/wsdl/http">
 	</binding>
 	
 	<service name="service1"

Modified: incubator/woden/trunk/java/test/org/apache/woden/wsdl20/extensions/soap/resources/SOAPBindingExtensions.wsdl
URL: http://svn.apache.org/viewvc/incubator/woden/trunk/java/test/org/apache/woden/wsdl20/extensions/soap/resources/SOAPBindingExtensions.wsdl?view=diff&rev=521411&r1=521410&r2=521411
==============================================================================
--- incubator/woden/trunk/java/test/org/apache/woden/wsdl20/extensions/soap/resources/SOAPBindingExtensions.wsdl (original)
+++ incubator/woden/trunk/java/test/org/apache/woden/wsdl20/extensions/soap/resources/SOAPBindingExtensions.wsdl Thu Mar 22 12:26:24 2007
@@ -15,15 +15,15 @@
  * See the License for the specific language governing permissions and 
  * limitations under the License.
 -->
-<description xmlns="http://www.w3.org/2006/01/wsdl"
+<description xmlns="http://www.w3.org/ns/wsdl"
 	targetNamespace="http://ws.apache.woden/endpoint"
 	xmlns:tns="http://ws.apache.woden/endpoint"
 	xmlns:xs="http://www.w3.org/2001/XMLSchema"
 	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-    xmlns:wsoap= "http://www.w3.org/2006/01/wsdl/soap"
-    xmlns:whttp= "http://www.w3.org/2006/01/wsdl/http"
+    xmlns:wsoap= "http://www.w3.org/ns/wsdl/soap"
+    xmlns:whttp= "http://www.w3.org/ns/wsdl/http"
 	xsi:schemaLocation=
-	    "http://www.w3.org/2006/01/wsdl http://www.w3.org/2006/01/wsdl/wsdl20.xsd 
+	    "http://www.w3.org/ns/wsdl http://www.w3.org/ns/wsdl/wsdl20.xsd 
 	    http://www.w3.org/2001/XMLSchema http://www.w3.org/2001/XMLSchema.xsd">
 
 	<documentation>
@@ -36,7 +36,7 @@
 	
 	<binding name="binding1"
 	  interface="tns:interface1"
-	  type="http://www.w3.org/2006/01/wsdl/soap"
+	  type="http://www.w3.org/ns/wsdl/soap"
 	  wsoap:version="1.2"
 	  wsoap:protocol="http://www.w3.org/2003/05/soap/bindings/HTTP/"
 	  wsoap:mepDefault="http://www.w3.org/2003/05/soap/mep/request-response"
@@ -57,7 +57,7 @@
 	
 	
 	<binding name="binding2"
-	  type="http://www.w3.org/2006/01/wsdl/soap"
+	  type="http://www.w3.org/ns/wsdl/soap"
 	  wsoap:version="1.1"
 	  wsoap:protocol="http://www.w3.org/2006/01/soap11/bindings/HTTP/">
 	  

Modified: incubator/woden/trunk/java/test/org/apache/woden/wsdl20/extensions/soap/resources/SOAPBindingFaultExtensions.wsdl
URL: http://svn.apache.org/viewvc/incubator/woden/trunk/java/test/org/apache/woden/wsdl20/extensions/soap/resources/SOAPBindingFaultExtensions.wsdl?view=diff&rev=521411&r1=521410&r2=521411
==============================================================================
--- incubator/woden/trunk/java/test/org/apache/woden/wsdl20/extensions/soap/resources/SOAPBindingFaultExtensions.wsdl (original)
+++ incubator/woden/trunk/java/test/org/apache/woden/wsdl20/extensions/soap/resources/SOAPBindingFaultExtensions.wsdl Thu Mar 22 12:26:24 2007
@@ -15,16 +15,16 @@
  * See the License for the specific language governing permissions and 
  * limitations under the License.
 -->
-<description xmlns="http://www.w3.org/2006/01/wsdl"
+<description xmlns="http://www.w3.org/ns/wsdl"
 	targetNamespace="http://ws.apache.woden/endpoint"
 	xmlns:tns="http://ws.apache.woden/endpoint"
 	xmlns:xs="http://www.w3.org/2001/XMLSchema"
 	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-    xmlns:wsoap= "http://www.w3.org/2006/01/wsdl/soap"
+    xmlns:wsoap= "http://www.w3.org/ns/wsdl/soap"
     xmlns:soap-env="http://www.w3.org/2003/05/soap-envelope"
     xmlns:ghns = "urn:ghns"
 	xsi:schemaLocation=
-	    "http://www.w3.org/2006/01/wsdl http://www.w3.org/2006/01/wsdl/wsdl20.xsd 
+	    "http://www.w3.org/ns/wsdl http://www.w3.org/ns/wsdl/wsdl20.xsd 
 	    http://www.w3.org/2001/XMLSchema http://www.w3.org/2001/XMLSchema.xsd">
 
 	<documentation>
@@ -35,7 +35,7 @@
 	
 	<binding name="binding1"
 	  interface="tns:interface1"
-	  type="http://www.w3.org/2006/01/wsdl/soap">
+	  type="http://www.w3.org/ns/wsdl/soap">
 
         <fault 
           wsoap:code="soap-env:fault1"

Modified: incubator/woden/trunk/java/test/org/apache/woden/wsdl20/extensions/soap/resources/SOAPBindingFaultReferenceExtensions.wsdl
URL: http://svn.apache.org/viewvc/incubator/woden/trunk/java/test/org/apache/woden/wsdl20/extensions/soap/resources/SOAPBindingFaultReferenceExtensions.wsdl?view=diff&rev=521411&r1=521410&r2=521411
==============================================================================
--- incubator/woden/trunk/java/test/org/apache/woden/wsdl20/extensions/soap/resources/SOAPBindingFaultReferenceExtensions.wsdl (original)
+++ incubator/woden/trunk/java/test/org/apache/woden/wsdl20/extensions/soap/resources/SOAPBindingFaultReferenceExtensions.wsdl Thu Mar 22 12:26:24 2007
@@ -15,16 +15,16 @@
  * See the License for the specific language governing permissions and 
  * limitations under the License.
 -->
-<description xmlns="http://www.w3.org/2006/01/wsdl"
+<description xmlns="http://www.w3.org/ns/wsdl"
 	targetNamespace="http://ws.apache.woden/endpoint"
 	xmlns:tns="http://ws.apache.woden/endpoint"
 	xmlns:xs="http://www.w3.org/2001/XMLSchema"
 	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-    xmlns:wsoap= "http://www.w3.org/2006/01/wsdl/soap"
+    xmlns:wsoap= "http://www.w3.org/ns/wsdl/soap"
     xmlns:soap-env="http://www.w3.org/2003/05/soap-envelope"
     xmlns:ghns = "urn:ghns"
 	xsi:schemaLocation=
-	    "http://www.w3.org/2006/01/wsdl http://www.w3.org/2006/01/wsdl/wsdl20.xsd 
+	    "http://www.w3.org/ns/wsdl http://www.w3.org/ns/wsdl/wsdl20.xsd 
 	    http://www.w3.org/2001/XMLSchema http://www.w3.org/2001/XMLSchema.xsd">
 
 	<documentation>
@@ -43,7 +43,7 @@
 	
 	<binding name="binding1"
 	  interface="tns:interface1"
-	  type="http://www.w3.org/2006/01/wsdl/soap">
+	  type="http://www.w3.org/ns/wsdl/soap">
 
         <operation ref="tns:opCheckAvailability">
 

Modified: incubator/woden/trunk/java/test/org/apache/woden/wsdl20/extensions/soap/resources/SOAPBindingMessageReferenceExtensions.wsdl
URL: http://svn.apache.org/viewvc/incubator/woden/trunk/java/test/org/apache/woden/wsdl20/extensions/soap/resources/SOAPBindingMessageReferenceExtensions.wsdl?view=diff&rev=521411&r1=521410&r2=521411
==============================================================================
--- incubator/woden/trunk/java/test/org/apache/woden/wsdl20/extensions/soap/resources/SOAPBindingMessageReferenceExtensions.wsdl (original)
+++ incubator/woden/trunk/java/test/org/apache/woden/wsdl20/extensions/soap/resources/SOAPBindingMessageReferenceExtensions.wsdl Thu Mar 22 12:26:24 2007
@@ -15,16 +15,16 @@
  * See the License for the specific language governing permissions and 
  * limitations under the License.
 -->
-<description xmlns="http://www.w3.org/2006/01/wsdl"
+<description xmlns="http://www.w3.org/ns/wsdl"
 	targetNamespace="http://ws.apache.woden/endpoint"
 	xmlns:tns="http://ws.apache.woden/endpoint"
 	xmlns:xs="http://www.w3.org/2001/XMLSchema"
 	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-    xmlns:wsoap= "http://www.w3.org/2006/01/wsdl/soap"
+    xmlns:wsoap= "http://www.w3.org/ns/wsdl/soap"
     xmlns:soap-env="http://www.w3.org/2003/05/soap-envelope"
     xmlns:ghns = "urn:ghns"
 	xsi:schemaLocation=
-	    "http://www.w3.org/2006/01/wsdl http://www.w3.org/2006/01/wsdl/wsdl20.xsd 
+	    "http://www.w3.org/ns/wsdl http://www.w3.org/ns/wsdl/wsdl20.xsd 
 	    http://www.w3.org/2001/XMLSchema http://www.w3.org/2001/XMLSchema.xsd">
 
 	<documentation>
@@ -35,7 +35,7 @@
 	
 	<binding name="binding1"
 	  interface="tns:interface1"
-	  type="http://www.w3.org/2006/01/wsdl/soap">
+	  type="http://www.w3.org/ns/wsdl/soap">
 
         <operation>
 

Modified: incubator/woden/trunk/java/test/org/apache/woden/wsdl20/extensions/soap/resources/SOAPBindingOperationExtensions.wsdl
URL: http://svn.apache.org/viewvc/incubator/woden/trunk/java/test/org/apache/woden/wsdl20/extensions/soap/resources/SOAPBindingOperationExtensions.wsdl?view=diff&rev=521411&r1=521410&r2=521411
==============================================================================
--- incubator/woden/trunk/java/test/org/apache/woden/wsdl20/extensions/soap/resources/SOAPBindingOperationExtensions.wsdl (original)
+++ incubator/woden/trunk/java/test/org/apache/woden/wsdl20/extensions/soap/resources/SOAPBindingOperationExtensions.wsdl Thu Mar 22 12:26:24 2007
@@ -15,17 +15,17 @@
  * See the License for the specific language governing permissions and 
  * limitations under the License.
 -->
-<description xmlns="http://www.w3.org/2006/01/wsdl"
+<description xmlns="http://www.w3.org/ns/wsdl"
 	targetNamespace="http://ws.apache.woden/endpoint"
 	xmlns:tns="http://ws.apache.woden/endpoint"
 	xmlns:xs="http://www.w3.org/2001/XMLSchema"
 	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-    xmlns:wsoap= "http://www.w3.org/2006/01/wsdl/soap"
+    xmlns:wsoap= "http://www.w3.org/ns/wsdl/soap"
     xmlns:soap-env="http://www.w3.org/2003/05/soap-envelope"
-    xmlns:whttp= "http://www.w3.org/2006/01/wsdl/http"
+    xmlns:whttp= "http://www.w3.org/ns/wsdl/http"
     xmlns:ghns = "urn:ghns"
 	xsi:schemaLocation=
-	    "http://www.w3.org/2006/01/wsdl http://www.w3.org/2006/01/wsdl/wsdl20.xsd 
+	    "http://www.w3.org/ns/wsdl http://www.w3.org/ns/wsdl/wsdl20.xsd 
 	    http://www.w3.org/2001/XMLSchema http://www.w3.org/2001/XMLSchema.xsd">
 
 	<documentation>
@@ -36,7 +36,7 @@
 	
 	<binding name="binding1"
 	  interface="tns:interface1"
-	  type="http://www.w3.org/2006/01/wsdl/soap"
+	  type="http://www.w3.org/ns/wsdl/soap"
 	  wsoap:version="1.2"
 	  wsoap:protocol="http://www.w3.org/2003/05/soap/bindings/HTTP/">
 
@@ -54,7 +54,7 @@
 	
 	<binding name="binding2"
 	  interface="tns:interface1"
-	  type="http://www.w3.org/2006/01/wsdl/soap"
+	  type="http://www.w3.org/ns/wsdl/soap"
 	  wsoap:version="1.1"
 	  wsoap:protocol="http://www.w3.org/2006/01/soap11/bindings/HTTP/">
 

Modified: incubator/woden/trunk/java/test/org/apache/woden/wsdl20/xml/resources/EndpointElementTest.wsdl
URL: http://svn.apache.org/viewvc/incubator/woden/trunk/java/test/org/apache/woden/wsdl20/xml/resources/EndpointElementTest.wsdl?view=diff&rev=521411&r1=521410&r2=521411
==============================================================================
--- incubator/woden/trunk/java/test/org/apache/woden/wsdl20/xml/resources/EndpointElementTest.wsdl (original)
+++ incubator/woden/trunk/java/test/org/apache/woden/wsdl20/xml/resources/EndpointElementTest.wsdl Thu Mar 22 12:26:24 2007
@@ -15,13 +15,13 @@
  * See the License for the specific language governing permissions and 
  * limitations under the License.
 -->
-<description xmlns="http://www.w3.org/2006/01/wsdl"
+<description xmlns="http://www.w3.org/ns/wsdl"
 	targetNamespace="http://ws.apache.woden/endpoint"
 	xmlns:tns="http://ws.apache.woden/endpoint"
 	xmlns:xs="http://www.w3.org/2001/XMLSchema"
 	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 	xsi:schemaLocation=
-	    "http://www.w3.org/2006/01/wsdl http://www.w3.org/2006/01/wsdl/wsdl20.xsd 
+	    "http://www.w3.org/ns/wsdl http://www.w3.org/ns/wsdl/wsdl20.xsd 
 	    http://www.w3.org/2001/XMLSchema http://www.w3.org/2001/XMLSchema.xsd">
 
 	<documentation>

Modified: incubator/woden/trunk/java/test/org/apache/woden/wsdl20/xml/resources/ServiceElementTest.wsdl
URL: http://svn.apache.org/viewvc/incubator/woden/trunk/java/test/org/apache/woden/wsdl20/xml/resources/ServiceElementTest.wsdl?view=diff&rev=521411&r1=521410&r2=521411
==============================================================================
--- incubator/woden/trunk/java/test/org/apache/woden/wsdl20/xml/resources/ServiceElementTest.wsdl (original)
+++ incubator/woden/trunk/java/test/org/apache/woden/wsdl20/xml/resources/ServiceElementTest.wsdl Thu Mar 22 12:26:24 2007
@@ -15,13 +15,13 @@
  * See the License for the specific language governing permissions and 
  * limitations under the License.
 -->
-<description xmlns="http://www.w3.org/2006/01/wsdl"
+<description xmlns="http://www.w3.org/ns/wsdl"
 	targetNamespace="http://ws.apache.woden/service"
 	xmlns:tns="http://ws.apache.woden/service"
 	xmlns:xs="http://www.w3.org/2001/XMLSchema"
 	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 	xsi:schemaLocation=
-	    "http://www.w3.org/2006/01/wsdl http://www.w3.org/2006/01/wsdl/wsdl20.xsd 
+	    "http://www.w3.org/ns/wsdl http://www.w3.org/ns/wsdl/wsdl20.xsd 
 	    http://www.w3.org/2001/XMLSchema http://www.w3.org/2001/XMLSchema.xsd">
 
 	<documentation>



---------------------------------------------------------------------
To unsubscribe, e-mail: woden-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: woden-dev-help@ws.apache.org