Author: damitha
Date: Thu Sep  4 03:02:49 2008
New Revision: 691956

URL: http://svn.apache.org/viewvc?rev=691956&view=rev
Log:
close sequence and terminate sequence api functions are changed so that it will 
accept null callback

Modified:
    webservices/sandesha/trunk/c/include/sandesha2_client.h
    webservices/sandesha/trunk/c/samples/rm_echo_single_1_1/rm_echo_single_1_1.c
    webservices/sandesha/trunk/c/src/client/client.c

Modified: webservices/sandesha/trunk/c/include/sandesha2_client.h
URL: 
http://svn.apache.org/viewvc/webservices/sandesha/trunk/c/include/sandesha2_client.h?rev=691956&r1=691955&r2=691956&view=diff
==============================================================================
--- webservices/sandesha/trunk/c/include/sandesha2_client.h (original)
+++ webservices/sandesha/trunk/c/include/sandesha2_client.h Thu Sep  4 03:02:49 
2008
@@ -118,6 +118,7 @@
 sandesha2_client_terminate_seq_with_svc_client_and_seq_key(
     const axutil_env_t *env,
     axis2_svc_client_t *svc_client,
+    axis2_callback_t *callback,
     axis2_char_t *seq_key);
 
 /**
@@ -135,6 +136,7 @@
 sandesha2_client_close_seq_with_svc_client_and_seq_key(
     const axutil_env_t *env,
     axis2_svc_client_t *svc_client,
+    axis2_callback_t *callback,
     axis2_char_t *seq_key);
 
 /**

Modified: 
webservices/sandesha/trunk/c/samples/rm_echo_single_1_1/rm_echo_single_1_1.c
URL: 
http://svn.apache.org/viewvc/webservices/sandesha/trunk/c/samples/rm_echo_single_1_1/rm_echo_single_1_1.c?rev=691956&r1=691955&r2=691956&view=diff
==============================================================================
--- 
webservices/sandesha/trunk/c/samples/rm_echo_single_1_1/rm_echo_single_1_1.c 
(original)
+++ 
webservices/sandesha/trunk/c/samples/rm_echo_single_1_1/rm_echo_single_1_1.c 
Thu Sep  4 03:02:49 2008
@@ -244,7 +244,7 @@
 
     AXIS2_SLEEP(SANDESHA2_SLEEP); 
 
-    sandesha2_client_terminate_seq_with_svc_client_and_seq_key(env, 
svc_client, seq_key);
+    sandesha2_client_terminate_seq_with_svc_client_and_seq_key(env, 
svc_client, NULL, seq_key);
 
     AXIS2_SLEEP(6 * SANDESHA2_SLEEP);
 

Modified: webservices/sandesha/trunk/c/src/client/client.c
URL: 
http://svn.apache.org/viewvc/webservices/sandesha/trunk/c/src/client/client.c?rev=691956&r1=691955&r2=691956&view=diff
==============================================================================
--- webservices/sandesha/trunk/c/src/client/client.c (original)
+++ webservices/sandesha/trunk/c/src/client/client.c Thu Sep  4 03:02:49 2008
@@ -767,6 +767,7 @@
 sandesha2_client_terminate_seq_with_svc_client_and_seq_key(
     const axutil_env_t *env,
     axis2_svc_client_t *svc_client,
+    axis2_callback_t *callback,
     axis2_char_t *seq_key)
 {
     axis2_options_t *options = NULL;
@@ -785,7 +786,7 @@
 
     property = axutil_property_create_with_args(env, 0, 0, 0, seq_key);
     axis2_options_set_property(options, env, SANDESHA2_CLIENT_SEQ_KEY, 
property);
-    sandesha2_client_terminate_seq_with_svc_client(env, svc_client, NULL);
+    sandesha2_client_terminate_seq_with_svc_client(env, svc_client, callback);
     axis2_options_set_property(options, env, SANDESHA2_CLIENT_SEQ_KEY, 
old_property);
     return AXIS2_SUCCESS;
 }
@@ -889,6 +890,7 @@
 sandesha2_client_close_seq_with_svc_client_and_seq_key(
     const axutil_env_t *env,
     axis2_svc_client_t *svc_client,
+    axis2_callback_t *callback,
     axis2_char_t *seq_key)
 {
     axis2_options_t *options = NULL;
@@ -912,7 +914,7 @@
 
     property = axutil_property_create_with_args(env, 0, 0, 0, seq_key);
     axis2_options_set_property(options, env, SANDESHA2_CLIENT_SEQ_KEY, 
property);
-    sandesha2_client_close_seq_with_svc_client(env, svc_client, NULL);
+    sandesha2_client_close_seq_with_svc_client(env, svc_client, callback);
     axis2_options_set_property(options, env, SANDESHA2_CLIENT_SEQ_KEY, 
old_property);
 
     AXIS2_LOG_TRACE(env->log, AXIS2_LOG_SI, 



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to