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 ma...@apache.org on 2007/03/26 06:07:08 UTC

svn commit: r522409 - in /webservices/axis2/trunk/c/rampart/src/util: rampart_handler_util.c rampart_sec_processed_result.c

Author: manjula
Date: Sun Mar 25 21:07:07 2007
New Revision: 522409

URL: http://svn.apache.org/viewvc?view=rev&rev=522409
Log:
Modified method calls of axis2_ctx_get_property and 
axis2_msg_ctx_set_property due to the changes in latest axis2 svn.

Modified:
    webservices/axis2/trunk/c/rampart/src/util/rampart_handler_util.c
    webservices/axis2/trunk/c/rampart/src/util/rampart_sec_processed_result.c

Modified: webservices/axis2/trunk/c/rampart/src/util/rampart_handler_util.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/rampart/src/util/rampart_handler_util.c?view=diff&rev=522409&r1=522408&r2=522409
==============================================================================
--- webservices/axis2/trunk/c/rampart/src/util/rampart_handler_util.c (original)
+++ webservices/axis2/trunk/c/rampart/src/util/rampart_handler_util.c Sun Mar 25 21:07:07 2007
@@ -130,7 +130,7 @@
 
     /*Get value from the dynamic settings*/
 
-    property =  axis2_ctx_get_property(ctx, env, key, AXIS2_FALSE);
+    property =  axis2_ctx_get_property(ctx, env, key);
     if (property)
     {
         str_property = axis2_property_get_value(property, env);

Modified: webservices/axis2/trunk/c/rampart/src/util/rampart_sec_processed_result.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/rampart/src/util/rampart_sec_processed_result.c?view=diff&rev=522409&r1=522408&r2=522409
==============================================================================
--- webservices/axis2/trunk/c/rampart/src/util/rampart_sec_processed_result.c (original)
+++ webservices/axis2/trunk/c/rampart/src/util/rampart_sec_processed_result.c Sun Mar 25 21:07:07 2007
@@ -72,7 +72,7 @@
     sec_processed_results_prop = axis2_property_create(env);
     
     axis2_property_set_value(sec_processed_results_prop, env, sec_processed_results);
-     axis2_msg_ctx_set_property(msg_ctx, env, RAMPART_SECURITY_PROCESSED_RESULTS, sec_processed_results_prop, AXIS2_FALSE);
+    axis2_msg_ctx_set_property(msg_ctx, env, RAMPART_SECURITY_PROCESSED_RESULTS, sec_processed_results_prop);
 
     return AXIS2_SUCCESS;
 }
@@ -84,7 +84,7 @@
     axis2_property_t *sec_processed_results_prop = NULL;
     axis2_hash_t *sec_processed_results = NULL;
 
-    sec_processed_results_prop =  axis2_msg_ctx_get_property(msg_ctx, env, RAMPART_SECURITY_PROCESSED_RESULTS, AXIS2_FALSE);
+    sec_processed_results_prop =  axis2_msg_ctx_get_property(msg_ctx, env, RAMPART_SECURITY_PROCESSED_RESULTS);
     if(!sec_processed_results_prop){
          AXIS2_LOG_ERROR(env->log, AXIS2_LOG_SI, "[rampart][spr] Cannot get %s from msg ctx ", RAMPART_SECURITY_PROCESSED_RESULTS);
         return NULL;



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