You are viewing a plain text version of this content. The canonical link for it is here.
Posted to fx-dev@ws.apache.org by ip...@apache.org on 2005/03/18 17:40:34 UTC

cvs commit: ws-fx/addressing/src/org/apache/axis/message/addressing Constants.java

ips         2005/03/18 08:40:34

  Modified:    addressing/src/org/apache/axis/message/addressing
                        Constants.java
  Log:
  fixed bug where "wsa:Response" was being used as wsa:RelatesTo value, when "wsa:Reply" should have been used for the 2004/08 version of addressing
  
  Revision  Changes    Path
  1.12      +3 -3      ws-fx/addressing/src/org/apache/axis/message/addressing/Constants.java
  
  Index: Constants.java
  ===================================================================
  RCS file: /home/cvs/ws-fx/addressing/src/org/apache/axis/message/addressing/Constants.java,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- Constants.java	14 Feb 2005 23:51:32 -0000	1.11
  +++ Constants.java	18 Mar 2005 16:40:34 -0000	1.12
  @@ -225,10 +225,10 @@
           new QName(NS_URI_ADDRESSING_DEFAULT, ACTION);
   
       static {
  -        if (NS_URI_ADDRESSING_DEFAULT.equals(NS_URI_ADDRESSING_2004_03)) {
  -            QNAME_RESPONSE = new QName(NS_URI_ADDRESSING_DEFAULT, REPLY);
  -        } else {
  +        if (NS_URI_ADDRESSING_DEFAULT.equals(NS_URI_ADDRESSING_2003_03)) {
               QNAME_RESPONSE = new QName(NS_URI_ADDRESSING_DEFAULT, RESPONSE);
  +        } else {
  +            QNAME_RESPONSE = new QName(NS_URI_ADDRESSING_DEFAULT, REPLY);
           }
       }