svn commit: r690935 - in /webservices/sandesha/trunk/c/src: client/client.c handlers/sandesha2_in_handler.c msgprocessors/create_seq_msg_processor.c msgprocessors/create_seq_res_msg_processor.c polling/polling_mgr.c util/property_mgr.c

[email protected]
Newsgroups gmane.comp.apache.webservices.fx.devel
Message-ID <[email protected]>
Author: nandika
Date: Mon Sep  1 04:03:48 2008
New Revision: 690935

URL: http://svn.apache.org/viewvc?rev=690935&view=rev
Log:
missing headers added to fix compile errors

Modified:
    webservices/sandesha/trunk/c/src/client/client.c
    webservices/sandesha/trunk/c/src/handlers/sandesha2_in_handler.c
    webservices/sandesha/trunk/c/src/msgprocessors/create_seq_msg_processor.c
    webservices/sandesha/trunk/c/src/msgprocessors/create_seq_res_msg_processor.c
    webservices/sandesha/trunk/c/src/polling/polling_mgr.c
    webservices/sandesha/trunk/c/src/util/property_mgr.c

Modified: webservices/sandesha/trunk/c/src/client/client.c
URL: http://svn.apache.org/viewvc/webservices/sandesha/trunk/c/src/client/client.c?rev=690935&r1=690934&r2=690935&view=diff
==============================================================================
--- webservices/sandesha/trunk/c/src/client/client.c (original)
+++ webservices/sandesha/trunk/c/src/client/client.c Mon Sep  1 04:03:48 2008
@@ -1330,14 +1330,14 @@
     if(!options)
     {
         AXIS2_ERROR_SET(env->error, SANDESHA2_ERROR_OPTIONS_OBJECT_NOT_SET, AXIS2_FAILURE);
-        return AXIS2_FAILURE;
+        return NULL;
     }
 
     to_epr = axis2_options_get_to(options, env);
     if(!to_epr)
     {
         AXIS2_ERROR_SET(env->error, SANDESHA2_ERROR_TO_EPR_NOT_SET, AXIS2_FAILURE);
-        return AXIS2_FAILURE;
+        return NULL;
     }
 
     to = (axis2_char_t*)axis2_endpoint_ref_get_address(to_epr, env);
@@ -1749,7 +1749,7 @@
     if(!options)
     {
         AXIS2_ERROR_SET(env->error, SANDESHA2_ERROR_OPTIONS_OBJECT_NOT_SET, AXIS2_FAILURE);
-        return AXIS2_FAILURE;
+        return NULL;
     }
 
     to_epr = axis2_options_get_to(options, env);
@@ -1757,7 +1757,7 @@
     if(!to_epr)
     {
         AXIS2_ERROR_SET(env->error, SANDESHA2_ERROR_TO_EPR_NOT_SET, AXIS2_FAILURE);
-        return AXIS2_FAILURE;
+        return NULL;
     }
 
     to = (axis2_char_t*)axis2_endpoint_ref_get_address(to_epr, env);
@@ -1933,7 +1933,7 @@
     return axis2_op_client_execute(op_client, env, AXIS2_FALSE);
 }
 
-static void AXIS2_CALL
+static void
 sandesha2_client_fire_and_forget(
     const axutil_env_t *env,
     axis2_svc_client_t *svc_client,

Modified: webservices/sandesha/trunk/c/src/handlers/sandesha2_in_handler.c
URL: http://svn.apache.org/viewvc/webservices/sandesha/trunk/c/src/handlers/sandesha2_in_handler.c?rev=690935&r1=690934&r2=690935&view=diff
==============================================================================
--- webservices/sandesha/trunk/c/src/handlers/sandesha2_in_handler.c (original)
+++ webservices/sandesha/trunk/c/src/handlers/sandesha2_in_handler.c Mon Sep  1 04:03:48 2008
@@ -40,6 +40,7 @@
 #include <sandesha2_seq_ack.h>
 #include <sandesha2_ack_requested.h>
 #include <sandesha2_app_msg_processor.h>
+#include <axutil_types.h>
 
 static axis2_status_t AXIS2_CALL
 sandesha2_in_handler_invoke(

Modified: webservices/sandesha/trunk/c/src/msgprocessors/create_seq_msg_processor.c
URL: http://svn.apache.org/viewvc/webservices/sandesha/trunk/c/src/msgprocessors/create_seq_msg_processor.c?rev=690935&r1=690934&r2=690935&view=diff
==============================================================================
--- webservices/sandesha/trunk/c/src/msgprocessors/create_seq_msg_processor.c (original)
+++ webservices/sandesha/trunk/c/src/msgprocessors/create_seq_msg_processor.c Mon Sep  1 04:03:48 2008
@@ -14,6 +14,7 @@
  * limitations under the License.
  */
 #include <sandesha2_create_seq_msg_processor.h>
+#include <sandesha2_create_seq_res_msg_processor.h>
 #include <sandesha2_seq_property_mgr.h>
 #include <sandesha2_create_seq_mgr.h>
 #include <sandesha2_permanent_seq_property_mgr.h>

Modified: webservices/sandesha/trunk/c/src/msgprocessors/create_seq_res_msg_processor.c
URL: http://svn.apache.org/viewvc/webservices/sandesha/trunk/c/src/msgprocessors/create_seq_res_msg_processor.c?rev=690935&r1=690934&r2=690935&view=diff
==============================================================================
--- webservices/sandesha/trunk/c/src/msgprocessors/create_seq_res_msg_processor.c (original)
+++ webservices/sandesha/trunk/c/src/msgprocessors/create_seq_res_msg_processor.c Mon Sep  1 04:03:48 2008
@@ -55,7 +55,7 @@
 #include <sandesha2_msg_init.h>
 #include <sandesha2_seq_mgr.h>
 #include <sandesha2_msg_creator.h>
-
+#include <sandesha2_polling_mgr.h>
 
 /** 
  * @brief Create Sequence Response Message Processor struct impl

Modified: webservices/sandesha/trunk/c/src/polling/polling_mgr.c
URL: http://svn.apache.org/viewvc/webservices/sandesha/trunk/c/src/polling/polling_mgr.c?rev=690935&r1=690934&r2=690935&view=diff
==============================================================================
--- webservices/sandesha/trunk/c/src/polling/polling_mgr.c (original)
+++ webservices/sandesha/trunk/c/src/polling/polling_mgr.c Mon Sep  1 04:03:48 2008
@@ -38,6 +38,7 @@
 #include <platforms/axutil_platform_auto_sense.h>
 #include <axutil_types.h>
 #include <axiom_soap_const.h>
+#include <axis2_http_transport_utils.h>
 
 
 /** 

Modified: webservices/sandesha/trunk/c/src/util/property_mgr.c
URL: http://svn.apache.org/viewvc/webservices/sandesha/trunk/c/src/util/property_mgr.c?rev=690935&r1=690934&r2=690935&view=diff
==============================================================================
--- webservices/sandesha/trunk/c/src/util/property_mgr.c (original)
+++ webservices/sandesha/trunk/c/src/util/property_mgr.c Mon Sep  1 04:03:48 2008
@@ -31,6 +31,7 @@
 #include <sandesha2_utils.h>
 #include <axutil_param.h>
 #include <stdlib.h>
+#include <axutil_types.h>
 
 AXIS2_EXTERN  axis2_status_t AXIS2_CALL
 sandesha2_property_mgr_load_exp_backoff(
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.