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 ka...@apache.org on 2006/11/15 05:59:20 UTC

svn commit: r475122 - /webservices/axis2/trunk/c/rampart/src/handlers/rampart_in_handler.c

Author: kaushalye
Date: Tue Nov 14 20:59:19 2006
New Revision: 475122

URL: http://svn.apache.org/viewvc?view=rev&rev=475122
Log:
If the server side doesnt need to verify security rampart should not tru to do so. 


Modified:
    webservices/axis2/trunk/c/rampart/src/handlers/rampart_in_handler.c

Modified: webservices/axis2/trunk/c/rampart/src/handlers/rampart_in_handler.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/rampart/src/handlers/rampart_in_handler.c?view=diff&rev=475122&r1=475121&r2=475122
==============================================================================
--- webservices/axis2/trunk/c/rampart/src/handlers/rampart_in_handler.c (original)
+++ webservices/axis2/trunk/c/rampart/src/handlers/rampart_in_handler.c Tue Nov 14 20:59:19 2006
@@ -128,6 +128,7 @@
                 }
             }else{
                 AXIS2_LOG_INFO(env->log, "[rampart][rampart_in_handler] No Inflow Security in the paramter list.");
+                return AXIS2_SUCCESS;
             }
             /*Then re-populate using the axis2_ctx*/
             status = RAMPART_ACTIONS_POPULATE_FROM_CTX(actions, env, ctx);
@@ -136,8 +137,8 @@
 
             if (!items)
             {
-                AXIS2_LOG_INFO(env->log, "[rampart][rampart_in_handler] No items defined");
-                return AXIS2_FAILURE;
+                AXIS2_LOG_INFO(env->log, "[rampart][rampart_in_handler] No items defined. So nothing to do.");
+                return AXIS2_SUCCESS;
             }
 
             /*Get action items seperated by spaces*/



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