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 2005/12/28 09:16:07 UTC

svn commit: r359437 - /webservices/axis2/trunk/c/modules/core/engine/src/engine.c

Author: damitha
Date: Wed Dec 28 00:16:00 2005
New Revision: 359437

URL: http://svn.apache.org/viewcvs?rev=359437&view=rev
Log:
Commented AXIS2_TRANSPORT_SENDER_INVOKE call until unitl it is implemented
with a TODO comment

Modified:
    webservices/axis2/trunk/c/modules/core/engine/src/engine.c

Modified: webservices/axis2/trunk/c/modules/core/engine/src/engine.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/core/engine/src/engine.c?rev=359437&r1=359436&r2=359437&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/engine/src/engine.c (original)
+++ webservices/axis2/trunk/c/modules/core/engine/src/engine.c Wed Dec 28 00:16:00 2005
@@ -212,7 +212,8 @@
         /* write the message to the wire */
         axis2_transport_out_desc_t *transport_out = AXIS2_MSG_CTX_GET_TRANSPORT_OUT_DESC(msg_ctx, env);
         axis2_transport_sender_t *transport_sender = AXIS2_TRANSPORT_OUT_DESC_GET_SENDER(transport_out, env);
-        AXIS2_TRANSPORT_SENDER_INVOKE(transport_sender, env, msg_ctx);
+        /*TODO:Uncomment this once the implementation done*/
+        /*AXIS2_TRANSPORT_SENDER_INVOKE(transport_sender, env, msg_ctx);*/
     }
     
     return AXIS2_SUCCESS;
@@ -343,7 +344,8 @@
         /* actually send the SOAP Fault*/
         axis2_transport_out_desc_t *transport_out = AXIS2_MSG_CTX_GET_TRANSPORT_OUT_DESC(msg_ctx, env);
         axis2_transport_sender_t *transport_sender = AXIS2_TRANSPORT_OUT_DESC_GET_SENDER(transport_out, env);
-        AXIS2_TRANSPORT_SENDER_INVOKE(transport_sender, env, msg_ctx);
+        /*TODO:Uncomment this once the implementation done*/
+        /*AXIS2_TRANSPORT_SENDER_INVOKE(transport_sender, env, msg_ctx);*/
     }
     return AXIS2_SUCCESS;
 }