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 sa...@apache.org on 2006/02/21 06:03:54 UTC

svn commit: r379343 - /webservices/axis2/trunk/c/modules/core/engine/engine.c

Author: samisa
Date: Mon Feb 20 21:03:53 2006
New Revision: 379343

URL: http://svn.apache.org/viewcvs?rev=379343&view=rev
Log:
Reverted the change as client side fails with this

Modified:
    webservices/axis2/trunk/c/modules/core/engine/engine.c

Modified: webservices/axis2/trunk/c/modules/core/engine/engine.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/core/engine/engine.c?rev=379343&r1=379342&r2=379343&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/engine/engine.c (original)
+++ webservices/axis2/trunk/c/modules/core/engine/engine.c Mon Feb 20 21:03:53 2006
@@ -662,7 +662,6 @@
 {
     int i = 0;
     int count = 0;
-    axis2_status_t status = AXIS2_FAILURE;
     AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
     AXIS2_PARAM_CHECK((*env)->error, phases, AXIS2_FAILURE);
     AXIS2_PARAM_CHECK((*env)->error, msg_ctx, AXIS2_FAILURE);    
@@ -672,9 +671,6 @@
     {
         axis2_phase_t *phase = (axis2_phase_t *) AXIS2_ARRAY_LIST_GET(phases, env, i);
         AXIS2_LOG_DEBUG((*env)->log, AXIS2_LOG_SI, "Invoking phase %s", AXIS2_PHASE_GET_NAME(phase, env));
-        status = AXIS2_PHASE_INVOKE(phase, env, msg_ctx);
-        if (status != AXIS2_SUCCESS)
-            return status;
     }
     return AXIS2_SUCCESS;
 }