You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by am...@apache.org on 2009/03/25 12:40:53 UTC

svn commit: r758231 - /webservices/axis2/branches/java/1_5/modules/addressing/src/META-INF/module.xml

Author: amilas
Date: Wed Mar 25 11:40:52 2009
New Revision: 758231

URL: http://svn.apache.org/viewvc?rev=758231&view=rev
Log:
if a secured fault message received it gives an exception at Addressing Fault In handler since 
there is not soap fault body. So this phase has to move after security phase for InFaultFlow

Modified:
    webservices/axis2/branches/java/1_5/modules/addressing/src/META-INF/module.xml

Modified: webservices/axis2/branches/java/1_5/modules/addressing/src/META-INF/module.xml
URL: http://svn.apache.org/viewvc/webservices/axis2/branches/java/1_5/modules/addressing/src/META-INF/module.xml?rev=758231&r1=758230&r2=758231&view=diff
==============================================================================
--- webservices/axis2/branches/java/1_5/modules/addressing/src/META-INF/module.xml (original)
+++ webservices/axis2/branches/java/1_5/modules/addressing/src/META-INF/module.xml Wed Mar 25 11:40:52 2009
@@ -46,7 +46,7 @@
             <order phase="Addressing" before="AddressingBasedDispatcher"/>
         </handler>
         <handler name="AddressingInFaultHandler" class="org.apache.axis2.handlers.addressing.AddressingInFaultHandler">
-            <order phase="Addressing" after="AddressingBasedDispatcher"/>
+            <order phase="PreDispatch" after="AddressingBasedDispatcher"/>
         </handler>
         <!-- AddressingValidationHandler not present on the INfaultflow so that we don't get faults bouncing around forever -->
     </InFaultFlow>