Author: deepal
Date: Wed Aug 15 01:17:02 2007
New Revision: 566055

URL: http://svn.apache.org/viewvc?view=rev&rev=566055
Log:
fixing RM 112
- We need to copy the properties from the original message context , o.w we 
clone not the original one but slightly changed one

Modified:
    
webservices/sandesha/branches/sandesha2/java/1_3/modules/core/src/main/java/org/apache/sandesha2/util/SandeshaUtil.java

Modified: 
webservices/sandesha/branches/sandesha2/java/1_3/modules/core/src/main/java/org/apache/sandesha2/util/SandeshaUtil.java
URL: 
http://svn.apache.org/viewvc/webservices/sandesha/branches/sandesha2/java/1_3/modules/core/src/main/java/org/apache/sandesha2/util/SandeshaUtil.java?view=diff&rev=566055&r1=566054&r2=566055
==============================================================================
--- 
webservices/sandesha/branches/sandesha2/java/1_3/modules/core/src/main/java/org/apache/sandesha2/util/SandeshaUtil.java
 (original)
+++ 
webservices/sandesha/branches/sandesha2/java/1_3/modules/core/src/main/java/org/apache/sandesha2/util/SandeshaUtil.java
 Wed Aug 15 01:17:02 2007
@@ -357,7 +357,8 @@
                        
newMessageContext.setConfigurationContext(configContext);
                        
                        Options oldOptions = referenceMessage.getOptions();
-                       Options newOptions = new Options ();
+            Options newOptions = new Options ();
+            newOptions.setProperties(oldOptions.getProperties());
                        
                        newMessageContext.setOptions(newOptions);
                        



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to