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 na...@apache.org on 2006/02/13 05:21:39 UTC

svn commit: r377303 - in /webservices/axis2/trunk/c/modules: core/deployment/module_builder.c core/description/param.c xml/soap/soap_header.c

Author: nandika
Date: Sun Feb 12 20:21:37 2006
New Revision: 377303

URL: http://svn.apache.org/viewcvs?rev=377303&view=rev
Log:
modified to compile on windows

Modified:
    webservices/axis2/trunk/c/modules/core/deployment/module_builder.c
    webservices/axis2/trunk/c/modules/core/description/param.c
    webservices/axis2/trunk/c/modules/xml/soap/soap_header.c

Modified: webservices/axis2/trunk/c/modules/core/deployment/module_builder.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/core/deployment/module_builder.c?rev=377303&r1=377302&r2=377303&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/deployment/module_builder.c (original)
+++ webservices/axis2/trunk/c/modules/core/deployment/module_builder.c Sun Feb 12 20:21:37 2006
@@ -197,8 +197,8 @@
         module_name = AXIS2_OM_ATTRIBUTE_GET_VALUE(module_name_att, env);
         if(NULL != module_name && (0 != AXIS2_STRCMP("", module_name)))
         {
-            AXIS2_LOG_DEBUG((*env)->log, AXIS2_LOG_SI, "Populate module %s", module_name);
             axis2_qname_t *qmodule_name = NULL;
+            AXIS2_LOG_DEBUG((*env)->log, AXIS2_LOG_SI, "Populate module %s", module_name);
             
             qmodule_name = axis2_qname_create(env, module_name, NULL, NULL);
             AXIS2_MODULE_DESC_SET_NAME(builder_impl->module_desc, env, qmodule_name);

Modified: webservices/axis2/trunk/c/modules/core/description/param.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/core/description/param.c?rev=377303&r1=377302&r2=377303&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/description/param.c (original)
+++ webservices/axis2/trunk/c/modules/core/description/param.c Sun Feb 12 20:21:37 2006
@@ -236,7 +236,7 @@
 axis2_param_get_param_element(axis2_param_t *param, 
 										axis2_env_t **env)
 {
-    AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
+    AXIS2_ENV_CHECK(env, NULL);
     
     return AXIS2_INTF_TO_IMPL(param)->param_element;
 }

Modified: webservices/axis2/trunk/c/modules/xml/soap/soap_header.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/xml/soap/soap_header.c?rev=377303&r1=377302&r2=377303&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/xml/soap/soap_header.c (original)
+++ webservices/axis2/trunk/c/modules/xml/soap/soap_header.c Sun Feb 12 20:21:37 2006
@@ -203,6 +203,7 @@
                  AXIS2_SOAP_HEADER_LOCAL_NAME, parent_ns, &this_node);
     header_impl->om_ele = this_ele;
     header_impl->om_ele_node = this_node;
+    AXIS2_SOAP_ENVELOPE_SET_HEADER(envelope, env, header);
     return &(header_impl->soap_header);                 
 }