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/21 02:45:34 UTC

svn commit: r379309 - /webservices/axis2/trunk/c/modules/xml/soap/soap_builder.c

Author: samisa
Date: Mon Feb 20 17:45:32 2006
New Revision: 379309

URL: http://svn.apache.org/viewcvs?rev=379309&view=rev
Log:
Hack to fix google sample segfault

Modified:
    webservices/axis2/trunk/c/modules/xml/soap/soap_builder.c

Modified: webservices/axis2/trunk/c/modules/xml/soap/soap_builder.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/xml/soap/soap_builder.c?rev=379309&r1=379308&r2=379309&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/xml/soap/soap_builder.c (original)
+++ webservices/axis2/trunk/c/modules/xml/soap/soap_builder.c Mon Feb 20 17:45:32 2006
@@ -497,8 +497,10 @@
             AXIS2_SOAP_BODY_SET_BASE_NODE(soap_body, env, om_element_node);
             AXIS2_SOAP_BODY_SET_BUILDER(soap_body, env, builder);
             AXIS2_SOAP_ENVELOPE_SET_BODY(builder_impl->soap_envelope, env, soap_body);
+            /*HACK: to fix AXIS2C-75 - Samisa
             status = axis2_soap_builder_process_namespace_data(builder, env, 
                         om_element_node, AXIS2_TRUE);
+            */
             if(status == AXIS2_FAILURE)
                 return AXIS2_FAILURE;
         }