You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by ja...@apache.org on 2005/07/04 12:12:15 UTC

svn commit: r209051 - /webservices/axis/trunk/java/modules/addressing/src/org/apache/axis2/handlers/addressing/AddressingInHandler.java

Author: jaliya
Date: Mon Jul  4 03:12:12 2005
New Revision: 209051

URL: http://svn.apache.org/viewcvs?rev=209051&view=rev
Log:
Fixed a problem in AddressingHandler

Modified:
    webservices/axis/trunk/java/modules/addressing/src/org/apache/axis2/handlers/addressing/AddressingInHandler.java

Modified: webservices/axis/trunk/java/modules/addressing/src/org/apache/axis2/handlers/addressing/AddressingInHandler.java
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/addressing/src/org/apache/axis2/handlers/addressing/AddressingInHandler.java?rev=209051&r1=209050&r2=209051&view=diff
==============================================================================
--- webservices/axis/trunk/java/modules/addressing/src/org/apache/axis2/handlers/addressing/AddressingInHandler.java (original)
+++ webservices/axis/trunk/java/modules/addressing/src/org/apache/axis2/handlers/addressing/AddressingInHandler.java Mon Jul  4 03:12:12 2005
@@ -91,7 +91,7 @@
     }
 
     /**
-     * WSA 1.0 specification mandates all the reference parameters to have a attribute as wsa:Type=’parameter’. So
+     * WSA 1.0 specification mandates all the reference parameters to have a attribute as wsa:Type=�parameter�. So
      * here this will check for header blocks with the above attribute and will put them in message information header collection
      *
      * @param header
@@ -150,7 +150,7 @@
                 epr = messageInformationHeadersCollection.getFaultTo();
                 if (epr == null) {
                     epr = new EndpointReference(AddressingConstants.WSA_FAULT_TO, "");
-                    messageInformationHeadersCollection.setTo(epr);
+                    messageInformationHeadersCollection.setFaultTo(epr);
                 }
                 extractEPRAddressInformation(soapHeaderBlock, epr, addressingNamespace);
             } else if (AddressingConstants.WSA_MESSAGE_ID.equals(soapHeaderBlock.getLocalName())) {