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 da...@apache.org on 2006/01/16 07:33:34 UTC

svn commit: r369373 - in /webservices/axis2/trunk/c/modules: core/deployment/conf_builder.c core/deployment/dep_engine.c core/deployment/desc_builder.c util/class_loader.c

Author: damitha
Date: Sun Jan 15 22:33:26 2006
New Revision: 369373

URL: http://svn.apache.org/viewcvs?rev=369373&view=rev
Log:
get rid of printfs

Modified:
    webservices/axis2/trunk/c/modules/core/deployment/conf_builder.c
    webservices/axis2/trunk/c/modules/core/deployment/dep_engine.c
    webservices/axis2/trunk/c/modules/core/deployment/desc_builder.c
    webservices/axis2/trunk/c/modules/util/class_loader.c

Modified: webservices/axis2/trunk/c/modules/core/deployment/conf_builder.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/core/deployment/conf_builder.c?rev=369373&r1=369372&r2=369373&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/deployment/conf_builder.c (original)
+++ webservices/axis2/trunk/c/modules/core/deployment/conf_builder.c Sun Jan 15 22:33:26 2006
@@ -225,7 +225,6 @@
         qmep = axis2_qname_create(env, AXIS2_MEP, NULL, NULL);
         mep_att = AXIS2_OM_ELEMENT_GET_ATTRIBUTE(msg_recv_element, env, qmep);
         att_value = AXIS2_OM_ATTRIBUTE_GET_VALUE(mep_att, env);
-        printf("att_value:%s\n", att_value);
         AXIS2_CONF_ADD_MSG_RECV(builder_impl->conf, env, att_value, msg_recv);
         AXIS2_QNAME_FREE(qmep, env);
     }
@@ -321,7 +320,6 @@
         if (module_ref_att)
         {
             ref_name = AXIS2_OM_ATTRIBUTE_GET_VALUE(module_ref_att, env);
-            printf("ref_name:%s\n", ref_name);
             qrefname = axis2_qname_create(env, ref_name, NULL, NULL);
             AXIS2_DEP_ENGINE_ADD_MODULE(conf_builder->desc_builder->engine, env,
                 qrefname);
@@ -520,7 +518,6 @@
         if (phase_orders_att)
         {
             flow_type = AXIS2_OM_ATTRIBUTE_GET_VALUE(phase_orders_att, env);
-            printf("flow_type:%s\n", flow_type);
         }
         
         phase_list = axis2_conf_builder_get_phase_list(conf_builder, env,
@@ -594,7 +591,6 @@
         if (phase_att)
         {
             att_value = AXIS2_OM_ATTRIBUTE_GET_VALUE(phase_att, env);
-            printf("att_value:%s\n", att_value);
         }
         AXIS2_ARRAY_LIST_ADD(phase_list, env, att_value);
         
@@ -829,7 +825,6 @@
                 axis2_transport_receiver_t *recv = NULL;
                 
                 dll_name = AXIS2_OM_ATTRIBUTE_GET_VALUE(trs_dll_name, env);
-                printf("dll_name:%s\n", dll_name);
                 dll_desc = axis2_dll_desc_create(env);
                 AXIS2_DLL_DESC_SET_NAME(dll_desc, env, dll_name);
                 AXIS2_DLL_DESC_SET_TYPE(dll_desc, env, AXIS2_HANDLER_DLL);

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=369373&r1=369372&r2=369373&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/deployment/dep_engine.c (original)
+++ webservices/axis2/trunk/c/modules/core/deployment/dep_engine.c Sun Jan 15 22:33:26 2006
@@ -687,9 +687,7 @@
         AXIS2_CONF_FREE(engine_impl->conf, env);
         engine_impl->conf = NULL;
     }
-    printf("came20\n");
     status = AXIS2_CONF_BUILDER_POPULATE_CONF(builder, env);
-    printf("came21\n");
     if(AXIS2_SUCCESS != status)
     {
         AXIS2_CONF_FREE(engine_impl->conf, env);

Modified: webservices/axis2/trunk/c/modules/core/deployment/desc_builder.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/core/deployment/desc_builder.c?rev=369373&r1=369372&r2=369373&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/deployment/desc_builder.c (original)
+++ webservices/axis2/trunk/c/modules/core/deployment/desc_builder.c Sun Jan 15 22:33:26 2006
@@ -634,7 +634,6 @@
             return AXIS2_FAILURE;
         }
         pname = AXIS2_OM_ATTRIBUTE_GET_VALUE(para_name, env);
-        printf("pname:%s\n", pname);
         status = AXIS2_PARAM_SET_NAME(param, env, pname);
         if(AXIS2_FAILURE == status)
         {
@@ -809,7 +808,6 @@
     class_name = AXIS2_OM_ATTRIBUTE_GET_VALUE(recv_name, env);
     dll_desc = axis2_dll_desc_create(env);
     repos_name = AXIS2_DEP_ENGINE_GET_REPOS_PATH(desc_builder->engine, env);
-    printf("repos_name:%s\n", repos_name);
     temp_path = AXIS2_STRACAT(repos_name, AXIS2_PATH_SEP_STR, env);
     temp_path2 = AXIS2_STRACAT(temp_path, AXIS2_LIB_FOLDER, env);
     temp_path3 = AXIS2_STRACAT(temp_path2, AXIS2_PATH_SEP_STR, env);

Modified: webservices/axis2/trunk/c/modules/util/class_loader.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/util/class_loader.c?rev=369373&r1=369372&r2=369373&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/util/class_loader.c (original)
+++ webservices/axis2/trunk/c/modules/util/class_loader.c Sun Jan 15 22:33:26 2006
@@ -162,7 +162,6 @@
     axis2_status_t status = AXIS2_FAILURE;
     
     dll_name = AXIS2_DLL_DESC_GET_NAME(dll_desc, env);
-    printf("dll_name:%s\n", dll_name);
     dl_handler = AXIS2_PLATFORM_LOADLIB(dll_name);
     if(NULL == dl_handler)
     {