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/06 06:28:11 UTC

svn commit: r375183 - /webservices/axis2/trunk/c/modules/core/clientapi/call.c

Author: nandika
Date: Sun Feb  5 21:28:09 2006
New Revision: 375183

URL: http://svn.apache.org/viewcvs?rev=375183&view=rev
Log: (empty)

Modified:
    webservices/axis2/trunk/c/modules/core/clientapi/call.c

Modified: webservices/axis2/trunk/c/modules/core/clientapi/call.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/core/clientapi/call.c?rev=375183&r1=375182&r2=375183&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/clientapi/call.c (original)
+++ webservices/axis2/trunk/c/modules/core/clientapi/call.c Sun Feb  5 21:28:09 2006
@@ -325,6 +325,9 @@
     axis2_status_t status = AXIS2_SUCCESS;
     axis2_svc_ctx_t *svc_ctx = NULL;
     axis2_svc_t *svc = NULL;
+    /* The message ID is sent all the time */
+    axis2_char_t *message_id = "uuid:"; /* TODO UUIDGenerator.getUUID()*/
+    
     
     AXIS2_FUNC_PARAM_CHECK(call, env, AXIS2_FAILURE);
     
@@ -339,8 +342,6 @@
     if (!svc_ctx)
         return NULL;
     
-    /* The message ID is sent all the time */
-    axis2_char_t *message_id = "uuid:"; /* TODO UUIDGenerator.getUUID()*/
     AXIS2_MSG_CTX_SET_MESSAGE_ID(msg_ctx, env, message_id);
 
     if (call_impl->use_separate_listener)