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/14 12:06:46 UTC

svn commit: r377691 - /webservices/axis2/trunk/c/modules/core/receivers/raw_xml_in_out_msg_recv.c

Author: samisa
Date: Tue Feb 14 03:06:43 2006
New Revision: 377691

URL: http://svn.apache.org/viewcvs?rev=377691&view=rev
Log:
Fixed the duplicate header and body setting

Modified:
    webservices/axis2/trunk/c/modules/core/receivers/raw_xml_in_out_msg_recv.c

Modified: webservices/axis2/trunk/c/modules/core/receivers/raw_xml_in_out_msg_recv.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/core/receivers/raw_xml_in_out_msg_recv.c?rev=377691&r1=377690&r2=377691&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/receivers/raw_xml_in_out_msg_recv.c (original)
+++ webservices/axis2/trunk/c/modules/core/receivers/raw_xml_in_out_msg_recv.c Tue Feb 14 03:06:43 2006
@@ -251,7 +251,6 @@
     {
         return AXIS2_FAILURE;
     }
-    AXIS2_SOAP_ENVELOPE_SET_HEADER(default_envelope, env, out_header);
 
     out_body = axis2_soap_body_create_with_parent(env, default_envelope);
     if (!out_body)
@@ -264,7 +263,6 @@
     {
         return AXIS2_FAILURE;
     }
-    AXIS2_SOAP_ENVELOPE_SET_BODY(default_envelope, env, out_body);
     
     if (status != AXIS2_SUCCESS)
     {