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 su...@apache.org on 2009/03/09 06:10:46 UTC

svn commit: r751584 - /webservices/axis2/trunk/c/src/core/engine/conf.c

Author: supun
Date: Mon Mar  9 05:10:45 2009
New Revision: 751584

URL: http://svn.apache.org/viewvc?rev=751584&view=rev
Log:
Adding a additional method to conf to get the handler list

Modified:
    webservices/axis2/trunk/c/src/core/engine/conf.c

Modified: webservices/axis2/trunk/c/src/core/engine/conf.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/src/core/engine/conf.c?rev=751584&r1=751583&r2=751584&view=diff
==============================================================================
--- webservices/axis2/trunk/c/src/core/engine/conf.c (original)
+++ webservices/axis2/trunk/c/src/core/engine/conf.c Mon Mar  9 05:10:45 2009
@@ -1362,7 +1362,7 @@
     axis2_disp_free(soap_action_based_dispatch, env);
     axis2_phase_add_handler_at(dispatch, env, 2, handler);
     axutil_array_list_add(conf->handlers, env,
-                          axis2_handler_get_handler_desc(handler, env));
+                          axis2_handler_get_handler_desc(handler, env));	
 
     status = axutil_array_list_add(conf->
                                    in_phases_upto_and_including_post_dispatch,
@@ -1904,3 +1904,9 @@
     return conf->base;
 }
 
+AXIS2_EXTERN axutil_array_list_t * AXIS2_CALL
+axis2_conf_get_handlers(const axis2_conf_t * conf,
+    const axutil_env_t * env)
+{
+	return conf->handlers;
+}
\ No newline at end of file