You are viewing a plain text version of this content. The canonical link for it is here.
Posted to fx-dev@ws.apache.org by da...@apache.org on 2006/08/31 08:33:24 UTC

svn commit: r438816 - in /webservices/sandesha/trunk/c/src: handlers/ msgprocessors/ util/ workers/ wsrm/

Author: damitha
Date: Wed Aug 30 23:33:23 2006
New Revision: 438816

URL: http://svn.apache.org/viewvc?rev=438816&view=rev
Log:
Code formatting and more bug fixes

Modified:
    webservices/sandesha/trunk/c/src/handlers/sandesha2_global_in_handler.c
    webservices/sandesha/trunk/c/src/handlers/sandesha2_in_handler.c
    webservices/sandesha/trunk/c/src/msgprocessors/ack_msg_processor.c
    webservices/sandesha/trunk/c/src/msgprocessors/app_msg_processor.c
    webservices/sandesha/trunk/c/src/util/msg_init.c
    webservices/sandesha/trunk/c/src/util/seq_mgr.c
    webservices/sandesha/trunk/c/src/workers/sender.c
    webservices/sandesha/trunk/c/src/wsrm/rm_elements.c
    webservices/sandesha/trunk/c/src/wsrm/seq_ack.c

Modified: webservices/sandesha/trunk/c/src/handlers/sandesha2_global_in_handler.c
URL: http://svn.apache.org/viewvc/webservices/sandesha/trunk/c/src/handlers/sandesha2_global_in_handler.c?rev=438816&r1=438815&r2=438816&view=diff
==============================================================================
--- webservices/sandesha/trunk/c/src/handlers/sandesha2_global_in_handler.c (original)
+++ webservices/sandesha/trunk/c/src/handlers/sandesha2_global_in_handler.c Wed Aug 30 23:33:23 2006
@@ -111,7 +111,6 @@
     sandesha2_transaction_t *transaction = NULL;
     axis2_property_t *property = NULL;
     
-    
     AXIS2_ENV_CHECK( env, AXIS2_FAILURE);
     AXIS2_PARAM_CHECK(env->error, msg_ctx, AXIS2_FAILURE);
     
@@ -241,18 +240,18 @@
 
 axis2_qname_t *AXIS2_CALL
 sandesha2_global_in_handler_get_qname(
-        struct axis2_handler *handler, 
-        const axis2_env_t *env)
+    struct axis2_handler *handler, 
+    const axis2_env_t *env)
 {
     return axis2_qname_create(env, SANDESHA2_GLOBAL_IN_HANDLER_NAME, NULL, NULL);
 }
 
 axis2_bool_t AXIS2_CALL
 sandesha2_global_in_handler_drop_if_duplicate(
-                        struct axis2_handler *handler, 
-                        const axis2_env_t *env,
-                        sandesha2_msg_ctx_t *rm_msg_ctx,
-                        sandesha2_storage_mgr_t *storage_mgr)
+    struct axis2_handler *handler, 
+    const axis2_env_t *env,
+    sandesha2_msg_ctx_t *rm_msg_ctx,
+    sandesha2_storage_mgr_t *storage_mgr)
 {
     axis2_bool_t drop = AXIS2_FALSE;
     
@@ -298,7 +297,7 @@
                         rcvd_msgs_str);
                 if(msg_no_list)
                     size = AXIS2_ARRAY_LIST_SIZE(msg_no_list, env);
-                printf("global_in_handler, size:%d\n", size);
+                printf("global_in_handler, msg_no_list->size:%d\n", size);
                 for(i = 0; i < size; i++)
                 {
                     axis2_char_t *temp = NULL;
@@ -404,10 +403,10 @@
 
 axis2_status_t AXIS2_CALL
 sandesha2_global_in_handler_process_dropped_msg(
-                        struct axis2_handler *handler, 
-                        const axis2_env_t *env,
-                        sandesha2_msg_ctx_t *rm_msg_ctx,
-                        sandesha2_storage_mgr_t *storage_mgr)
+    struct axis2_handler *handler, 
+    const axis2_env_t *env,
+    sandesha2_msg_ctx_t *rm_msg_ctx,
+    sandesha2_storage_mgr_t *storage_mgr)
 {
     
     AXIS2_ENV_CHECK(env, AXIS2_FALSE);

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=438816&r1=438815&r2=438816&view=diff
==============================================================================
--- webservices/sandesha/trunk/c/src/handlers/sandesha2_in_handler.c (original)
+++ webservices/sandesha/trunk/c/src/handlers/sandesha2_in_handler.c Wed Aug 30 23:33:23 2006
@@ -74,8 +74,10 @@
         struct axis2_msg_ctx *msg_ctx)
 {
     axis2_property_t *temp_prop = NULL;
+    axis2_property_t *property = NULL;
     axis2_conf_ctx_t *conf_ctx = NULL;
     axis2_conf_t *conf = NULL;
+    axis2_op_ctx_t *op_ctx = NULL;
     axis2_ctx_t *ctx = NULL;
     axis2_char_t *str_done = NULL;
     axis2_char_t *reinjected_msg = NULL;
@@ -89,12 +91,14 @@
     sandesha2_msg_processor_t *msg_processor = NULL;
     /* test code */
     sandesha2_seq_t *seq_part = NULL;
+    axis2_endpoint_ref_t *reply_to_epr = NULL;
     /* end test code */
 
     AXIS2_ENV_CHECK( env, AXIS2_FAILURE);
     AXIS2_PARAM_CHECK(env->error, msg_ctx, AXIS2_FAILURE);
     
     AXIS2_LOG_INFO(env->log, "[sandesha2] Starting in handler .........");
+    printf("came10\n");
 
     conf_ctx = AXIS2_MSG_CTX_GET_CONF_CTX(msg_ctx, env);
     if(conf_ctx == NULL)
@@ -104,6 +108,7 @@
         return AXIS2_FAILURE;
     }
     ctx = AXIS2_MSG_CTX_GET_BASE(msg_ctx, env);
+    printf("came11\n");
     temp_prop = AXIS2_CTX_GET_PROPERTY(ctx, env, 
             SANDESHA2_APPLICATION_PROCESSING_DONE, AXIS2_FALSE);
     if(temp_prop)
@@ -154,7 +159,14 @@
     }
     rm_msg_ctx = sandesha2_msg_init_init_msg(env, msg_ctx);
     /* test code */
-
+    reply_to_epr = AXIS2_MSG_CTX_GET_TO(msg_ctx, env);
+    op_ctx = AXIS2_MSG_CTX_GET_OP_CTX(msg_ctx, env);
+    ctx = AXIS2_OP_CTX_GET_BASE(op_ctx, env);
+    property = axis2_property_create(env);
+    AXIS2_PROPERTY_SET_SCOPE(property, env, AXIS2_SCOPE_REQUEST);
+    AXIS2_PROPERTY_SET_VALUE(property, env, reply_to_epr);
+    AXIS2_CTX_SET_PROPERTY(ctx, env, SANDESHA2_SEQ_PROP_REPLY_TO_EPR, property, 
+            AXIS2_FALSE);
     seq_part = (sandesha2_seq_t *) SANDESHA2_MSG_CTX_GET_MSG_PART(
         rm_msg_ctx, env, SANDESHA2_MSG_PART_SEQ);
     if(seq_part)

Modified: webservices/sandesha/trunk/c/src/msgprocessors/ack_msg_processor.c
URL: http://svn.apache.org/viewvc/webservices/sandesha/trunk/c/src/msgprocessors/ack_msg_processor.c?rev=438816&r1=438815&r2=438816&view=diff
==============================================================================
--- webservices/sandesha/trunk/c/src/msgprocessors/ack_msg_processor.c (original)
+++ webservices/sandesha/trunk/c/src/msgprocessors/ack_msg_processor.c Wed Aug 30 23:33:23 2006
@@ -140,9 +140,9 @@
 
 axis2_status_t AXIS2_CALL 
 sandesha2_ack_msg_processor_process_in_msg (
-                        sandesha2_msg_processor_t *msg_processor,
-						const axis2_env_t *env,
-                        sandesha2_msg_ctx_t *rm_msg_ctx)
+    sandesha2_msg_processor_t *msg_processor,
+    const axis2_env_t *env,
+    sandesha2_msg_ctx_t *rm_msg_ctx)
 {
     sandesha2_seq_ack_t *seq_ack = NULL;
     axis2_msg_ctx_t *msg_ctx = NULL;

Modified: webservices/sandesha/trunk/c/src/msgprocessors/app_msg_processor.c
URL: http://svn.apache.org/viewvc/webservices/sandesha/trunk/c/src/msgprocessors/app_msg_processor.c?rev=438816&r1=438815&r2=438816&view=diff
==============================================================================
--- webservices/sandesha/trunk/c/src/msgprocessors/app_msg_processor.c (original)
+++ webservices/sandesha/trunk/c/src/msgprocessors/app_msg_processor.c Wed Aug 30 23:33:23 2006
@@ -1042,7 +1042,6 @@
     axis2_property_t *property = NULL;
     axis2_char_t *msg_id = NULL;
     
-    
     AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
     AXIS2_PARAM_CHECK(env->error, msg_ctx, AXIS2_FAILURE);
     AXIS2_PARAM_CHECK(env->error, internal_seq_id, AXIS2_FAILURE);

Modified: webservices/sandesha/trunk/c/src/util/msg_init.c
URL: http://svn.apache.org/viewvc/webservices/sandesha/trunk/c/src/util/msg_init.c?rev=438816&r1=438815&r2=438816&view=diff
==============================================================================
--- webservices/sandesha/trunk/c/src/util/msg_init.c (original)
+++ webservices/sandesha/trunk/c/src/util/msg_init.c Wed Aug 30 23:33:23 2006
@@ -138,6 +138,7 @@
     create_seq = SANDESHA2_RM_ELEMENTS_GET_CREATE_SEQ(elements, env);
     if(create_seq)
     {
+        printf("create_seq\n");
         SANDESHA2_MSG_CTX_SET_MSG_PART(rm_msg_ctx, env, 
                 SANDESHA2_MSG_PART_CREATE_SEQ, (sandesha2_iom_rm_part_t *) 
                 create_seq);
@@ -147,6 +148,7 @@
     create_seq_res = SANDESHA2_RM_ELEMENTS_GET_CREATE_SEQ_RES(elements, env);
     if(create_seq_res)
     {
+        printf("create_seq_res\n");
         SANDESHA2_MSG_CTX_SET_MSG_PART(rm_msg_ctx, env, 
                 SANDESHA2_MSG_PART_CREATE_SEQ_RESPONSE, 
                 (sandesha2_iom_rm_part_t *) create_seq_res);
@@ -156,6 +158,7 @@
     seq = SANDESHA2_RM_ELEMENTS_GET_SEQ(elements, env);
     if(seq)
     {
+        printf("seq\n");
         SANDESHA2_MSG_CTX_SET_MSG_PART(rm_msg_ctx, env, 
                 SANDESHA2_MSG_PART_SEQ, (sandesha2_iom_rm_part_t *) seq);
         rm_ns = SANDESHA2_IOM_RM_ELEMENT_GET_NAMESPACE_VALUE(
@@ -164,6 +167,7 @@
     seq_ack = SANDESHA2_RM_ELEMENTS_GET_SEQ_ACK(elements, env);
     if(seq_ack)
     {
+        printf("seq_ack\n");
         SANDESHA2_MSG_CTX_SET_MSG_PART(rm_msg_ctx, env, 
                 SANDESHA2_MSG_PART_SEQ_ACKNOWLEDGEMENT, 
                 (sandesha2_iom_rm_part_t *) seq_ack);
@@ -392,6 +396,7 @@
             }
         }
     }
+    printf("came2\n");
     return AXIS2_TRUE; 
 }
     

Modified: webservices/sandesha/trunk/c/src/util/seq_mgr.c
URL: http://svn.apache.org/viewvc/webservices/sandesha/trunk/c/src/util/seq_mgr.c?rev=438816&r1=438815&r2=438816&view=diff
==============================================================================
--- webservices/sandesha/trunk/c/src/util/seq_mgr.c (original)
+++ webservices/sandesha/trunk/c/src/util/seq_mgr.c Wed Aug 30 23:33:23 2006
@@ -380,6 +380,7 @@
         axis2_op_ctx_t *op_ctx = NULL;
         axis2_msg_ctx_t *req_msg_ctx = NULL;
         axis2_endpoint_ref_t *reply_to_epr = NULL;
+        axis2_property_t *property = NULL;
         
         op_ctx = AXIS2_MSG_CTX_GET_OP_CTX(first_app_msg, env);
         /*req_msg_ctx = AXIS2_OP_CTX_GET_MSG_CTX(op_ctx, env, 
@@ -391,7 +392,10 @@
             return AXIS2_FAILURE;
         }
         reply_to_epr = AXIS2_MSG_CTX_GET_TO(req_msg_ctx, env);*/
-        reply_to_epr = AXIS2_MSG_CTX_GET_TO(first_app_msg, env);
+        ctx = AXIS2_OP_CTX_GET_BASE(op_ctx, env);
+        property = AXIS2_CTX_GET_PROPERTY(ctx, env, 
+                SANDESHA2_SEQ_PROP_REPLY_TO_EPR, AXIS2_FALSE);
+        reply_to_epr = AXIS2_PROPERTY_GET_VALUE(property, env);
         if(NULL != reply_to_epr)
             reply_to_bean = sandesha2_seq_property_bean_create_with_data(env,
                         int_seq_id, SANDESHA2_SEQ_PROP_REPLY_TO_EPR,

Modified: webservices/sandesha/trunk/c/src/workers/sender.c
URL: http://svn.apache.org/viewvc/webservices/sandesha/trunk/c/src/workers/sender.c?rev=438816&r1=438815&r2=438816&view=diff
==============================================================================
--- webservices/sandesha/trunk/c/src/workers/sender.c (original)
+++ webservices/sandesha/trunk/c/src/workers/sender.c Wed Aug 30 23:33:23 2006
@@ -353,6 +353,9 @@
                     AXIS2_HTTP_CHAR_SET_ENCODING, AXIS2_CTX_GET_PROPERTY(ctx, env, 
                     AXIS2_HTTP_CHAR_SET_ENCODING, AXIS2_FALSE), AXIS2_FALSE);
         }
+        /* test code */
+        AXIS2_MSG_CTX_SET_OP_CTX(res_msg_ctx, env, req_op_ctx);
+        /* end test code */
     }
     AXIS2_MSG_CTX_SET_DOING_REST(res_msg_ctx, env, AXIS2_MSG_CTX_GET_DOING_REST(
                     msg_ctx, env));

Modified: webservices/sandesha/trunk/c/src/wsrm/rm_elements.c
URL: http://svn.apache.org/viewvc/webservices/sandesha/trunk/c/src/wsrm/rm_elements.c?rev=438816&r1=438815&r2=438816&view=diff
==============================================================================
--- webservices/sandesha/trunk/c/src/wsrm/rm_elements.c (original)
+++ webservices/sandesha/trunk/c/src/wsrm/rm_elements.c Wed Aug 30 23:33:23 2006
@@ -373,23 +373,24 @@
     rm_ns_val = elements_impl->rm_ns_val;
     addr_ns_val = elements_impl->addr_ns_val;
     
+    printf("came1\n");
     qname = axis2_qname_create(env, SANDESHA2_WSRM_COMMON_SEQ, rm_ns_val, NULL);
     seq_element = AXIOM_ELEMENT_GET_FIRST_CHILD_WITH_QNAME(header_element, env,
                         qname, header_node, &seq_node);
     if(NULL != seq_node)
     {
+        printf("rm:seq\n");
         elements_impl->seq = sandesha2_seq_create(env, rm_ns_val);
         SANDESHA2_IOM_RM_ELEMENT_FROM_OM_NODE(elements_impl->seq, env, 
                         header_node);
     }
     qname = axis2_qname_create(env, SANDESHA2_WSRM_COMMON_SEQ_ACK, rm_ns_val, 
                         NULL);
-    printf("came1\n");
     seq_ack_element = AXIOM_ELEMENT_GET_FIRST_CHILD_WITH_QNAME(header_element,
                         env, qname, header_node, &seq_ack_node);
     if(NULL != seq_ack_element)
     {
-        printf("came2\n");
+        printf("rm:seq_ack\n");
         elements_impl->seq_ack = sandesha2_seq_ack_create(env, rm_ns_val);
         SANDESHA2_IOM_RM_ELEMENT_FROM_OM_NODE(elements_impl->seq_ack, env,
                         header_node);
@@ -400,6 +401,7 @@
                         env, qname, body_node, &create_seq_node);
     if(NULL != create_seq_node)
     {
+        printf("rm:create_seq\n");
         elements_impl->create_seq = sandesha2_create_seq_create(env,
                         addr_ns_val, rm_ns_val);
         SANDESHA2_IOM_RM_ELEMENT_FROM_OM_NODE(elements_impl->create_seq, env,
@@ -413,7 +415,7 @@
                         &create_seq_res_node);
     if(NULL != create_seq_res_node)
     {
-        printf("came3\n");
+        printf("rm:create_seq_res\n");
         elements_impl->create_seq_res = sandesha2_create_seq_res_create(env, 
                         rm_ns_val, addr_ns_val);
         SANDESHA2_IOM_RM_ELEMENT_FROM_OM_NODE(elements_impl->create_seq_res, env,

Modified: webservices/sandesha/trunk/c/src/wsrm/seq_ack.c
URL: http://svn.apache.org/viewvc/webservices/sandesha/trunk/c/src/wsrm/seq_ack.c?rev=438816&r1=438815&r2=438816&view=diff
==============================================================================
--- webservices/sandesha/trunk/c/src/wsrm/seq_ack.c (original)
+++ webservices/sandesha/trunk/c/src/wsrm/seq_ack.c Wed Aug 30 23:33:23 2006
@@ -43,64 +43,78 @@
 
 /***************************** Function headers *******************************/
 axis2_char_t* AXIS2_CALL 
-sandesha2_seq_ack_get_namespace_value (sandesha2_iom_rm_element_t *seq_ack,
-						const axis2_env_t *env);
+sandesha2_seq_ack_get_namespace_value (
+    sandesha2_iom_rm_element_t *seq_ack,
+    const axis2_env_t *env);
     
 void* AXIS2_CALL 
-sandesha2_seq_ack_from_om_node(sandesha2_iom_rm_element_t *seq_ack,
-                    	const axis2_env_t *env, axiom_node_t *om_node);
+sandesha2_seq_ack_from_om_node(
+   sandesha2_iom_rm_element_t *seq_ack,
+   const axis2_env_t *env, axiom_node_t *om_node);
     
 axiom_node_t* AXIS2_CALL 
-sandesha2_seq_ack_to_om_node(sandesha2_iom_rm_element_t *seq_ack,
-                    	const axis2_env_t *env, void *om_node);
+sandesha2_seq_ack_to_om_node(
+   sandesha2_iom_rm_element_t *seq_ack,
+   const axis2_env_t *env, void *om_node);
                     	
 axis2_bool_t AXIS2_CALL 
-sandesha2_seq_ack_is_namespace_supported(sandesha2_iom_rm_element_t *seq_ack,
-                    	const axis2_env_t *env, axis2_char_t *namespace);
+sandesha2_seq_ack_is_namespace_supported(
+    sandesha2_iom_rm_element_t *seq_ack,
+    const axis2_env_t *env, axis2_char_t *namespace);
                     	
 sandesha2_identifier_t * AXIS2_CALL
-sandesha2_seq_ack_get_identifier(sandesha2_seq_ack_t *seq_ack,
-                    	const axis2_env_t *env);
+sandesha2_seq_ack_get_identifier(
+    sandesha2_seq_ack_t *seq_ack,
+    const axis2_env_t *env);
 
 axis2_status_t AXIS2_CALL                 
-sandesha2_seq_ack_set_identifier(sandesha2_seq_ack_t *seq_ack,
-                    	const axis2_env_t *env, 
-                        sandesha2_identifier_t *identifier);
+sandesha2_seq_ack_set_identifier(
+    sandesha2_seq_ack_t *seq_ack,
+    const axis2_env_t *env, 
+    sandesha2_identifier_t *identifier);
                     	
 axis2_array_list_t * AXIS2_CALL
-sandesha2_seq_ack_get_nack_list(sandesha2_seq_ack_t *seq_ack,
-                    	const axis2_env_t *env);
+sandesha2_seq_ack_get_nack_list(
+    sandesha2_seq_ack_t *seq_ack,
+    const axis2_env_t *env);
 
 axis2_status_t AXIS2_CALL                 
-sandesha2_seq_ack_set_ack_final(sandesha2_seq_ack_t *seq_ack,
-                    	const axis2_env_t *env, 
-                        sandesha2_ack_final_t *ack_final);
+sandesha2_seq_ack_set_ack_final(
+    sandesha2_seq_ack_t *seq_ack,
+    const axis2_env_t *env, 
+    sandesha2_ack_final_t *ack_final);
                     	
 axis2_array_list_t * AXIS2_CALL
-sandesha2_seq_ack_get_ack_range_list(sandesha2_seq_ack_t *seq_ack,
-                    	const axis2_env_t *env);
+sandesha2_seq_ack_get_ack_range_list(
+    sandesha2_seq_ack_t *seq_ack,
+    const axis2_env_t *env);
 
 axis2_status_t AXIS2_CALL                 
-sandesha2_seq_ack_add_ack_range(sandesha2_seq_ack_t *seq_ack,
-                    	const axis2_env_t *env, 
-                        sandesha2_ack_range_t *ack_range);
+sandesha2_seq_ack_add_ack_range(
+    sandesha2_seq_ack_t *seq_ack,
+    const axis2_env_t *env, 
+    sandesha2_ack_range_t *ack_range);
 
 axis2_status_t AXIS2_CALL
-sandesha2_seq_ack_to_soap_env(sandesha2_iom_rm_part_t *seq_ack,
-                    	const axis2_env_t *env, 
-                        axiom_soap_envelope_t *envelope);
+sandesha2_seq_ack_to_soap_env(
+    sandesha2_iom_rm_part_t *seq_ack,
+    const axis2_env_t *env, 
+    axiom_soap_envelope_t *envelope);
                     	
 axis2_bool_t AXIS2_CALL
-sandesha2_seq_ack_is_must_understand(sandesha2_seq_ack_t *seq_ack,
-                    	const axis2_env_t *env);
+sandesha2_seq_ack_is_must_understand(
+    sandesha2_seq_ack_t *seq_ack,
+    const axis2_env_t *env);
 
 axis2_status_t AXIS2_CALL                 
-sandesha2_seq_ack_set_must_understand(sandesha2_seq_ack_t *seq_ack,
-                    	const axis2_env_t *env, axis2_bool_t mu);
+sandesha2_seq_ack_set_must_understand(
+    sandesha2_seq_ack_t *seq_ack,
+    const axis2_env_t *env, axis2_bool_t mu);
                     	                    	
 axis2_status_t AXIS2_CALL 
-sandesha2_seq_ack_free (sandesha2_iom_rm_element_t *seq_ack, 
-						const axis2_env_t *env);								
+sandesha2_seq_ack_free (
+    sandesha2_iom_rm_element_t *seq_ack, 
+    const axis2_env_t *env);								
 
 /***************************** End of function headers ************************/
 
@@ -203,8 +217,8 @@
 
 axis2_status_t AXIS2_CALL 
 sandesha2_seq_ack_free (
-        sandesha2_iom_rm_element_t *seq_ack, 
-		const axis2_env_t *env)
+    sandesha2_iom_rm_element_t *seq_ack, 
+    const axis2_env_t *env)
 {
     sandesha2_seq_ack_impl_t *seq_ack_impl = NULL;
 	AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
@@ -251,8 +265,8 @@
 
 axis2_char_t* AXIS2_CALL 
 sandesha2_seq_ack_get_namespace_value (
-        sandesha2_iom_rm_element_t *seq_ack,
-		const axis2_env_t *env)
+    sandesha2_iom_rm_element_t *seq_ack,
+    const axis2_env_t *env)
 {
 	sandesha2_seq_ack_impl_t *seq_ack_impl = NULL;
 	AXIS2_ENV_CHECK(env, NULL);
@@ -264,9 +278,9 @@
 
 void* AXIS2_CALL 
 sandesha2_seq_ack_from_om_node(
-        sandesha2_iom_rm_element_t *seq_ack,
-        const axis2_env_t *env, 
-        axiom_node_t *om_node)
+    sandesha2_iom_rm_element_t *seq_ack,
+    const axis2_env_t *env, 
+    axiom_node_t *om_node)
 {
 	sandesha2_seq_ack_impl_t *seq_ack_impl = NULL;
     axiom_element_t *om_element = NULL;
@@ -434,8 +448,9 @@
 
 
 axiom_node_t* AXIS2_CALL 
-sandesha2_seq_ack_to_om_node(sandesha2_iom_rm_element_t *seq_ack,
-                    	const axis2_env_t *env, void *om_node)
+sandesha2_seq_ack_to_om_node(
+    sandesha2_iom_rm_element_t *seq_ack,
+    const axis2_env_t *env, void *om_node)
 {
 	sandesha2_seq_ack_impl_t *seq_ack_impl = NULL;
     axiom_namespace_t *rm_ns = NULL;
@@ -541,8 +556,9 @@
 }
 
 axis2_bool_t AXIS2_CALL 
-sandesha2_seq_ack_is_namespace_supported(sandesha2_iom_rm_element_t *seq_ack,
-                    	const axis2_env_t *env, axis2_char_t *namespace)
+sandesha2_seq_ack_is_namespace_supported(
+    sandesha2_iom_rm_element_t *seq_ack,
+    const axis2_env_t *env, axis2_char_t *namespace)
 {
 	sandesha2_seq_ack_impl_t *seq_ack_impl = NULL;
     AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
@@ -560,8 +576,9 @@
 }
 
 sandesha2_identifier_t * AXIS2_CALL
-sandesha2_seq_ack_get_identifier(sandesha2_seq_ack_t *seq_ack,
-                    	const axis2_env_t *env)
+sandesha2_seq_ack_get_identifier(
+    sandesha2_seq_ack_t *seq_ack,
+    const axis2_env_t *env)
 {
 	sandesha2_seq_ack_impl_t *seq_ack_impl = NULL;
 	AXIS2_ENV_CHECK(env, NULL);
@@ -572,9 +589,10 @@
 }                    	
 
 axis2_status_t AXIS2_CALL                 
-sandesha2_seq_ack_set_identifier(sandesha2_seq_ack_t *seq_ack,
-                    	const axis2_env_t *env,
-                        sandesha2_identifier_t *identifier)
+sandesha2_seq_ack_set_identifier(
+    sandesha2_seq_ack_t *seq_ack,
+    const axis2_env_t *env,
+    sandesha2_identifier_t *identifier)
 {
 	sandesha2_seq_ack_impl_t *seq_ack_impl = NULL;
 	AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
@@ -585,8 +603,9 @@
 }
 
 axis2_array_list_t * AXIS2_CALL
-sandesha2_seq_ack_get_nack_list(sandesha2_seq_ack_t *seq_ack,
-                    	const axis2_env_t *env)
+sandesha2_seq_ack_get_nack_list(
+    sandesha2_seq_ack_t *seq_ack,
+    const axis2_env_t *env)
 {
 	sandesha2_seq_ack_impl_t *seq_ack_impl = NULL;
 	AXIS2_ENV_CHECK(env, NULL);
@@ -597,9 +616,10 @@
 }                    	
 
 axis2_status_t AXIS2_CALL                 
-sandesha2_seq_ack_set_ack_final(sandesha2_seq_ack_t *seq_ack,
-                    	const axis2_env_t *env, 
-                        sandesha2_ack_final_t *ack_final)
+sandesha2_seq_ack_set_ack_final(
+    sandesha2_seq_ack_t *seq_ack,
+    const axis2_env_t *env, 
+    sandesha2_ack_final_t *ack_final)
 {
 	sandesha2_seq_ack_impl_t *seq_ack_impl = NULL;
 	AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
@@ -610,8 +630,9 @@
 }
 
 axis2_array_list_t * AXIS2_CALL
-sandesha2_seq_ack_get_ack_range_list(sandesha2_seq_ack_t *seq_ack,
-                    	const axis2_env_t *env)
+sandesha2_seq_ack_get_ack_range_list(
+    sandesha2_seq_ack_t *seq_ack,
+    const axis2_env_t *env)
 {
 	sandesha2_seq_ack_impl_t *seq_ack_impl = NULL;
 	AXIS2_ENV_CHECK(env, NULL);
@@ -622,9 +643,10 @@
 }                    	
 
 axis2_status_t AXIS2_CALL                 
-sandesha2_seq_ack_add_ack_range(sandesha2_seq_ack_t *seq_ack,
-                    	const axis2_env_t *env, 
-                        sandesha2_ack_range_t *ack_range)
+sandesha2_seq_ack_add_ack_range(
+    sandesha2_seq_ack_t *seq_ack,
+    const axis2_env_t *env, 
+    sandesha2_ack_range_t *ack_range)
 {
 	sandesha2_seq_ack_impl_t *seq_ack_impl = NULL;
 	AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
@@ -635,8 +657,9 @@
 }
 
 axis2_bool_t AXIS2_CALL
-sandesha2_seq_ack_is_must_understand(sandesha2_seq_ack_t *seq_ack,
-                    	const axis2_env_t *env)
+sandesha2_seq_ack_is_must_understand(
+    sandesha2_seq_ack_t *seq_ack,
+    const axis2_env_t *env)
 {
 	sandesha2_seq_ack_impl_t *seq_ack_impl = NULL;
 	AXIS2_ENV_CHECK(env, AXIS2_FALSE);
@@ -646,8 +669,9 @@
 }                    	
 
 axis2_status_t AXIS2_CALL                 
-sandesha2_seq_ack_set_must_understand(sandesha2_seq_ack_t *seq_ack,
-                    	const axis2_env_t *env, axis2_bool_t mu)
+sandesha2_seq_ack_set_must_understand(
+    sandesha2_seq_ack_t *seq_ack,
+    const axis2_env_t *env, axis2_bool_t mu)
 {
 	sandesha2_seq_ack_impl_t *seq_ack_impl = NULL;
     
@@ -660,8 +684,9 @@
 
 
 axis2_status_t AXIS2_CALL
-sandesha2_seq_ack_to_soap_env(sandesha2_iom_rm_part_t *seq_ack,
-                    	const axis2_env_t *env, axiom_soap_envelope_t *envelope)
+sandesha2_seq_ack_to_soap_env(
+    sandesha2_iom_rm_part_t *seq_ack,
+    const axis2_env_t *env, axiom_soap_envelope_t *envelope)
 {
 	sandesha2_seq_ack_impl_t *seq_ack_impl = NULL;
     axiom_soap_header_t *soap_header = NULL;



---------------------------------------------------------------------
To unsubscribe, e-mail: sandesha-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: sandesha-dev-help@ws.apache.org