Will this update cause a problem with Axis 1.1 clients using SOAP 1.2? Just a thought. Early adopters must feel the pain. :)
Rick -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 01, 2003 11:01 AM To: [EMAIL PROTECTED] Subject: cvs commit: xml-axis/java/src/org/apache/axis Constants.java gdaniels 2003/07/01 08:00:40 Modified: java/src/org/apache/axis Constants.java Log: Update SOAP 1.2 namespaces to Rec Revision Changes Path 1.121 +8 -8 xml-axis/java/src/org/apache/axis/Constants.java Index: Constants.java =================================================================== RCS file: /home/cvs/xml-axis/java/src/org/apache/axis/Constants.java,v retrieving revision 1.120 retrieving revision 1.121 diff -u -r1.120 -r1.121 --- Constants.java 22 Apr 2003 19:33:59 -0000 1.120 +++ Constants.java 1 Jul 2003 15:00:39 -0000 1.121 @@ -103,7 +103,7 @@ public static final String URI_SOAP11_ENV = "http://schemas.xmlsoap.org/soap/envelope/" ; public static final String URI_SOAP12_ENV = - "http://www.w3.org/2002/12/soap-envelope"; + "http://www.w3.org/2003/05/soap-envelope"; public static final String URI_DEFAULT_SOAP_ENV = DEFAULT_SOAP_VERSION.getEnvelopeURI(); @@ -152,9 +152,9 @@ public static final String URI_SOAP11_ENC = "http://schemas.xmlsoap.org/soap/encoding/" ; public static final String URI_SOAP12_ENC = - "http://www.w3.org/2002/12/soap-encoding"; + "http://www.w3.org/2003/05/soap-encoding"; public static final String URI_SOAP12_NOENC = - "http://www.w3.org/2002/12/soap-envelope/encoding/none"; + "http://www.w3.org/2003/05/soap-envelope/encoding/none"; public static final String URI_DEFAULT_SOAP_ENC = DEFAULT_SOAP_VERSION.getEncodingURI(); @@ -275,22 +275,22 @@ public static final String URI_SOAP11_NEXT_ACTOR = "http://schemas.xmlsoap.org/soap/actor/next" ; public static final String URI_SOAP12_NEXT_ROLE = - "http://www.w3.org/2002/12/soap-envelope/role/next"; + "http://www.w3.org/2003/05/soap-envelope/role/next"; /** @deprecated use URI_SOAP12_NEXT_ROLE */ public static final String URI_SOAP12_NEXT_ACTOR = URI_SOAP12_NEXT_ROLE; public static final String URI_SOAP12_RPC = - "http://www.w3.org/2002/12/soap-rpc"; + "http://www.w3.org/2003/05/soap-rpc"; public static final String URI_SOAP12_NONE_ROLE = - "http://www.w3.org/2002/12/soap-envelope/role/none"; + "http://www.w3.org/2003/05/soap-envelope/role/none"; public static final String URI_SOAP12_ULTIMATE_ROLE = - "http://www.w3.org/2002/12/soap-envelope/role/ultimateReceiver"; + "http://www.w3.org/2003/05/soap-envelope/role/ultimateReceiver"; public static final String URI_SOAP11_HTTP = "http://schemas.xmlsoap.org/soap/http"; public static final String URI_SOAP12_HTTP = - "http://www.w3.org/2002/12/http"; + "http://www.w3.org/2003/05/http"; public static final String NS_URI_XMLNS = "http://www.w3.org/2000/xmlns/";
