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 di...@apache.org on 2005/09/03 18:54:00 UTC

svn commit: r267484 - /webservices/sandesha/branches/sandesha_1_0/src/org/apache/sandesha/EnvelopeCreator.java

Author: dims
Date: Sat Sep  3 09:53:58 2005
New Revision: 267484

URL: http://svn.apache.org/viewcvs?rev=267484&view=rev
Log:
Fix the problem where we were generating xmlns:http="wsa" on the wire because the order of parameters to QName was wrong.


Modified:
    webservices/sandesha/branches/sandesha_1_0/src/org/apache/sandesha/EnvelopeCreator.java

Modified: webservices/sandesha/branches/sandesha_1_0/src/org/apache/sandesha/EnvelopeCreator.java
URL: http://svn.apache.org/viewcvs/webservices/sandesha/branches/sandesha_1_0/src/org/apache/sandesha/EnvelopeCreator.java?rev=267484&r1=267483&r2=267484&view=diff
==============================================================================
--- webservices/sandesha/branches/sandesha_1_0/src/org/apache/sandesha/EnvelopeCreator.java (original)
+++ webservices/sandesha/branches/sandesha_1_0/src/org/apache/sandesha/EnvelopeCreator.java Sat Sep  3 09:53:58 2005
@@ -70,8 +70,8 @@
         //RelatesTo
         MessageID incommingMessageId = addressingHeaders.getMessageID();
         outGoingAddressingHaders.addRelatesTo(incommingMessageId.toString(),
-                new QName(org.apache.axis.message.addressing.Constants.NS_PREFIX_ADDRESSING,
-                        org.apache.axis.message.addressing.Constants.NS_URI_ADDRESSING_DEFAULT));
+                new QName(org.apache.axis.message.addressing.Constants.NS_URI_ADDRESSING_DEFAULT,
+                        org.apache.axis.message.addressing.Constants.NS_PREFIX_ADDRESSING));
 
         //SettingTo
         AttributedURI incommingAddress = null;



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