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/07 09:14:37 UTC

svn commit: r375540 - in /webservices/axis2/trunk/c/modules: core/deployment/dep_engine.c mod_addr/mod_addr.c

Author: samisa
Date: Tue Feb  7 00:14:34 2006
New Revision: 375540

URL: http://svn.apache.org/viewcvs?rev=375540&view=rev
Log:
Few more fixes

Modified:
    webservices/axis2/trunk/c/modules/core/deployment/dep_engine.c
    webservices/axis2/trunk/c/modules/mod_addr/mod_addr.c

Modified: webservices/axis2/trunk/c/modules/core/deployment/dep_engine.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/core/deployment/dep_engine.c?rev=375540&r1=375539&r2=375540&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/deployment/dep_engine.c (original)
+++ webservices/axis2/trunk/c/modules/core/deployment/dep_engine.c Tue Feb  7 00:14:34 2006
@@ -1189,7 +1189,7 @@
     module_folder_path = AXIS2_FILE_GET_PATH(module_folder, env);
     temp_path = AXIS2_STRACAT(module_folder_path, AXIS2_PATH_SEP_STR, env);
     dll_path = AXIS2_STRACAT(temp_path, read_in_dll, env);
-    AXIS2_LOG_DEBUG((*env)->log, AXIS2_LOG_SI, "dll path is : %s", dll_path);
+    AXIS2_LOG_DEBUG((*env)->log, AXIS2_LOG_SI, "axis2_dep_engine_load_module_dll; dll path is : %s", dll_path);
     status = AXIS2_DLL_DESC_SET_NAME(dll_desc, env, dll_path);
     if(AXIS2_SUCCESS != status)
     {

Modified: webservices/axis2/trunk/c/modules/mod_addr/mod_addr.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/mod_addr/mod_addr.c?rev=375540&r1=375539&r2=375540&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/mod_addr/mod_addr.c (original)
+++ webservices/axis2/trunk/c/modules/mod_addr/mod_addr.c Tue Feb  7 00:14:34 2006
@@ -100,12 +100,12 @@
             AXIS2_FAILURE);
         return AXIS2_FAILURE;
     }
-    /*axis2_hash_set(module->handler_create_func_map, "AddressingInHandler", 
+    axis2_hash_set(module->handler_create_func_map, "AddressingInHandler", 
         AXIS2_HASH_KEY_STRING, axis2_addr_in_handler_create);
 
     axis2_hash_set(module->handler_create_func_map, "AddressingOutHandler", 
         AXIS2_HASH_KEY_STRING, axis2_addr_out_handler_create);
-    */
+    
     return AXIS2_SUCCESS;
 }