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/23 14:09:45 UTC

svn commit: r478561 - in /webservices/axis2/trunk/c/rampart: include/rampart_sec_processed_result.h samples/client/echo/echo.c src/util/rampart_sec_processed_result.c

Author: kaushalye
Date: Thu Nov 23 05:09:44 2006
New Revision: 478561

URL: http://svn.apache.org/viewvc?view=rev&rev=478561
Log:
Name change in the method rampart_get_all_security_processed_results 

Modified:
    webservices/axis2/trunk/c/rampart/include/rampart_sec_processed_result.h
    webservices/axis2/trunk/c/rampart/samples/client/echo/echo.c
    webservices/axis2/trunk/c/rampart/src/util/rampart_sec_processed_result.c

Modified: webservices/axis2/trunk/c/rampart/include/rampart_sec_processed_result.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/rampart/include/rampart_sec_processed_result.h?view=diff&rev=478561&r1=478560&r2=478561
==============================================================================
--- webservices/axis2/trunk/c/rampart/include/rampart_sec_processed_result.h (original)
+++ webservices/axis2/trunk/c/rampart/include/rampart_sec_processed_result.h Thu Nov 23 05:09:44 2006
@@ -67,7 +67,7 @@
 *   Get the complete set of security processed results
 */
 AXIS2_EXTERN axis2_hash_t* AXIS2_CALL
-rampart_get_security_processed_results_set(const axis2_env_t *env,
+rampart_get_all_security_processed_results(const axis2_env_t *env,
     axis2_msg_ctx_t *msg_ctx);
 
 /**

Modified: webservices/axis2/trunk/c/rampart/samples/client/echo/echo.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/rampart/samples/client/echo/echo.c?view=diff&rev=478561&r1=478560&r2=478561
==============================================================================
--- webservices/axis2/trunk/c/rampart/samples/client/echo/echo.c (original)
+++ webservices/axis2/trunk/c/rampart/samples/client/echo/echo.c Thu Nov 23 05:09:44 2006
@@ -98,7 +98,7 @@
 
     /*Make sure these action itmes are validated by the server side. Otherwise error*/
     items_property = axis2_property_create(env);
-    AXIS2_PROPERTY_SET_VALUE(items_property, env, axis2_strdup("UsernameToken ", env));
+    AXIS2_PROPERTY_SET_VALUE(items_property, env, axis2_strdup("UsernameToken Timestamp", env));
     AXIS2_OPTIONS_SET_PROPERTY(options, env, RAMPART_ACTION_ITEMS, items_property);
 
     /*Make sure this is the correct path for the callback module*/

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=478561&r1=478560&r2=478561
==============================================================================
--- 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 Thu Nov 23 05:09:44 2006
@@ -32,7 +32,7 @@
 {
     axis2_hash_t *sec_processed_results = NULL;
 
-    sec_processed_results = rampart_get_security_processed_results_set(env, msg_ctx);
+    sec_processed_results = rampart_get_all_security_processed_results(env, msg_ctx);
     if(!sec_processed_results){
         return AXIS2_FAILURE;
     }
@@ -48,7 +48,7 @@
 {
     axis2_hash_t *sec_processed_results = NULL;
 
-    sec_processed_results = rampart_get_security_processed_results_set(env, msg_ctx);
+    sec_processed_results = rampart_get_all_security_processed_results(env, msg_ctx);
     if(!sec_processed_results){
         return NULL;
     }
@@ -76,7 +76,7 @@
 }
 
 AXIS2_EXTERN axis2_hash_t* AXIS2_CALL
-rampart_get_security_processed_results_set(const axis2_env_t *env,
+rampart_get_all_security_processed_results(const axis2_env_t *env,
     axis2_msg_ctx_t *msg_ctx)
 {
     axis2_property_t *sec_processed_results_prop = NULL;
@@ -106,7 +106,7 @@
     const void *key = NULL;
     void *val = NULL;
     
-    sec_processed_results = rampart_get_security_processed_results_set(env, msg_ctx);
+    sec_processed_results = rampart_get_all_security_processed_results(env, msg_ctx);
     if(!sec_processed_results){
         return;
     }



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