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 sa...@apache.org on 2006/06/04 05:09:41 UTC

svn commit: r411506 [4/27] - in /webservices/axis2/trunk/c: axiom/include/ axiom/src/attachments/ axiom/src/om/ axiom/src/parser/guththila/ axiom/src/parser/libxml2/ axiom/src/soap/ axiom/test/om/ axiom/test/soap/ guththila/src/ include/ modules/core/c...

Modified: webservices/axis2/trunk/c/include/axis2_http_out_transport_info.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/include/axis2_http_out_transport_info.h?rev=411506&r1=411505&r2=411506&view=diff
==============================================================================
--- webservices/axis2/trunk/c/include/axis2_http_out_transport_info.h (original)
+++ webservices/axis2/trunk/c/include/axis2_http_out_transport_info.h Sat Jun  3 20:09:08 2006
@@ -38,7 +38,7 @@
   */
 
 typedef struct axis2_http_out_transport_info_ops 
-					axis2_http_out_transport_info_ops_t;
+               axis2_http_out_transport_info_ops_t;
 typedef struct axis2_http_out_transport_info axis2_http_out_transport_info_t;
     
     
@@ -49,15 +49,15 @@
 AXIS2_DECLARE_DATA struct axis2_http_out_transport_info_ops
 {
     int (AXIS2_CALL *set_content_type) (axis2_http_out_transport_info_t *info, 
-					const axis2_env_t *env, axis2_char_t *content_type);
+               const axis2_env_t *env, axis2_char_t *content_type);
     
     axis2_status_t (AXIS2_CALL *set_char_encoding) 
                     (axis2_http_out_transport_info_t *info, const axis2_env_t *env,
-					axis2_char_t *encoding);
+               axis2_char_t *encoding);
     
     axis2_status_t (AXIS2_CALL *free) 
-					(axis2_http_out_transport_info_t *out_transport_info, 
-					const axis2_env_t *env);
+               (axis2_http_out_transport_info_t *out_transport_info, 
+               const axis2_env_t *env);
 };
 
 /**
@@ -72,7 +72,7 @@
 
 AXIS2_EXTERN axis2_http_out_transport_info_t * AXIS2_CALL 
 axis2_http_out_transport_info_create(const axis2_env_t *env,
-					axis2_http_simple_response_t *response);
+               axis2_http_simple_response_t *response);
 
 /**
  * Free http_out_transport_info passed as void pointer. This will be
@@ -86,11 +86,11 @@
 /************************* Start of function macros    ***************************/
 
 #define AXIS2_HTTP_OUT_TRANSPORT_INFO_SET_CONTENT_TYPE(out_transport_info, \
-					env, content_type) ((out_transport_info)->ops->\
-					set_content_type (out_transport_info, env, content_type))
+               env, content_type) ((out_transport_info)->ops->\
+               set_content_type (out_transport_info, env, content_type))
 #define AXIS2_HTTP_OUT_TRANSPORT_INFO_SET_CHAR_ENCODING(out_transport_info,\
-					env, encoding) ((out_transport_info)->ops->set_char_encoding \
-					(out_transport_info, env, encoding))
+               env, encoding) ((out_transport_info)->ops->set_char_encoding \
+               (out_transport_info, env, encoding))
 #define AXIS2_HTTP_OUT_TRANSPORT_INFO_FREE(out_transport_info, env)\
                     ((out_transport_info)->ops->free(out_transport_info, env))
 

Modified: webservices/axis2/trunk/c/include/axis2_http_request_line.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/include/axis2_http_request_line.h?rev=411506&r1=411505&r2=411506&view=diff
==============================================================================
--- webservices/axis2/trunk/c/include/axis2_http_request_line.h (original)
+++ webservices/axis2/trunk/c/include/axis2_http_request_line.h Sat Jun  3 20:09:08 2006
@@ -46,23 +46,23 @@
  */
 AXIS2_DECLARE_DATA struct axis2_http_request_line_ops
 {
-	axis2_char_t* (AXIS2_CALL *get_method) 
+   axis2_char_t* (AXIS2_CALL *get_method) 
                                 (axis2_http_request_line_t *request_line, 
                                 const axis2_env_t *env);
-	
-	axis2_char_t* (AXIS2_CALL *get_http_version) 
+   
+   axis2_char_t* (AXIS2_CALL *get_http_version) 
                                 (axis2_http_request_line_t *request_line, 
                                 const axis2_env_t *env);
     
-	axis2_char_t* (AXIS2_CALL *get_uri) 
+   axis2_char_t* (AXIS2_CALL *get_uri) 
                                 (axis2_http_request_line_t *request_line, 
                                 const axis2_env_t *env);
     
-	axis2_char_t* (AXIS2_CALL *to_string)
+   axis2_char_t* (AXIS2_CALL *to_string)
                                 (axis2_http_request_line_t *request_line, 
                                 const axis2_env_t *env);
-	
-	axis2_status_t (AXIS2_CALL *free) 
+   
+   axis2_status_t (AXIS2_CALL *free) 
                                 (axis2_http_request_line_t *request_line, 
                                 const axis2_env_t *env);
 };
@@ -73,7 +73,7 @@
  */
 AXIS2_DECLARE_DATA struct axis2_http_request_line
 {
-	axis2_http_request_line_ops_t *ops;
+   axis2_http_request_line_ops_t *ops;
 };
 
 
@@ -83,7 +83,7 @@
 
 AXIS2_EXTERN axis2_http_request_line_t* AXIS2_CALL
 axis2_http_request_line_parse_line(const axis2_env_t *env, const axis2_char_t *str);
-/********************* Start of function macros	***************************/
+/********************* Start of function macros   ***************************/
 
 #define AXIS2_HTTP_REQUEST_LINE_GET_METHOD(request_line, env) \
                         ((request_line)->ops->get_method (request_line, env))

Modified: webservices/axis2/trunk/c/include/axis2_http_server.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/include/axis2_http_server.h?rev=411506&r1=411505&r2=411506&view=diff
==============================================================================
--- webservices/axis2/trunk/c/include/axis2_http_server.h (original)
+++ webservices/axis2/trunk/c/include/axis2_http_server.h Sat Jun  3 20:09:08 2006
@@ -39,16 +39,16 @@
  * @{
  */
 int axis2_http_socket_read_timeout = 0;
-	
-	
+   
+   
 AXIS2_EXTERN axis2_transport_receiver_t * AXIS2_CALL 
 axis2_http_server_create (const axis2_env_t *env, 
-	                      axis2_char_t *repo, 
-	                      int port);
+                         axis2_char_t *repo, 
+                         int port);
 
 axis2_status_t AXIS2_CALL 
 axis2_http_server_stop(axis2_transport_receiver_t *server, 
-	                   const axis2_env_t *env);
+                      const axis2_env_t *env);
 
 
 /** @} */

Modified: webservices/axis2/trunk/c/include/axis2_http_simple_request.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/include/axis2_http_simple_request.h?rev=411506&r1=411505&r2=411506&view=diff
==============================================================================
--- webservices/axis2/trunk/c/include/axis2_http_simple_request.h (original)
+++ webservices/axis2/trunk/c/include/axis2_http_simple_request.h Sat Jun  3 20:09:08 2006
@@ -54,7 +54,7 @@
     axis2_http_request_line_t* (AXIS2_CALL *get_request_line)
                             (axis2_http_simple_request_t *simple_request, 
                             const axis2_env_t *env);
-	    
+       
     axis2_status_t (AXIS2_CALL *set_request_line)
                             (axis2_http_simple_request_t *simple_request, 
                             const axis2_env_t *env, 
@@ -99,10 +99,10 @@
     axis2_ssize_t (AXIS2_CALL *get_body_bytes)
                             (axis2_http_simple_request_t *simple_request, 
                             const axis2_env_t *env, char **buf);
-							
-	axis2_status_t (AXIS2_CALL *set_body_string)
-                    		(axis2_http_simple_request_t *simple_request, 
-                    		const axis2_env_t *env, axis2_char_t *str);
+                     
+   axis2_status_t (AXIS2_CALL *set_body_string)
+                          (axis2_http_simple_request_t *simple_request, 
+                          const axis2_env_t *env, axis2_char_t *str);
 
     axis2_status_t (AXIS2_CALL *free)
                             (axis2_http_simple_request_t *simple_request, 

Modified: webservices/axis2/trunk/c/include/axis2_http_simple_response.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/include/axis2_http_simple_response.h?rev=411506&r1=411505&r2=411506&view=diff
==============================================================================
--- webservices/axis2/trunk/c/include/axis2_http_simple_response.h (original)
+++ webservices/axis2/trunk/c/include/axis2_http_simple_response.h Sat Jun  3 20:09:08 2006
@@ -52,91 +52,91 @@
 AXIS2_DECLARE_DATA struct axis2_http_simple_response_ops
 {
     axis2_status_t (AXIS2_CALL *
-	set_status_line)(struct axis2_http_simple_response *simple_response, 
+   set_status_line)(struct axis2_http_simple_response *simple_response, 
                     const axis2_env_t *env, 
-	                const axis2_char_t *http_ver, 
+                   const axis2_char_t *http_ver, 
                     const int status_code, 
-	                const axis2_char_t *phrase);
+                   const axis2_char_t *phrase);
     
     axis2_char_t* (AXIS2_CALL *
-	get_phrase)(axis2_http_simple_response_t *simple_response, 
+   get_phrase)(axis2_http_simple_response_t *simple_response, 
                 const axis2_env_t *env);
     
     int (AXIS2_CALL *
-	get_status_code)(axis2_http_simple_response_t *simple_response, 
+   get_status_code)(axis2_http_simple_response_t *simple_response, 
                     const axis2_env_t *env);
 
     axis2_char_t* (AXIS2_CALL *
-	get_http_version)(axis2_http_simple_response_t *simple_response, 
+   get_http_version)(axis2_http_simple_response_t *simple_response, 
                       const axis2_env_t *env);
 
     axis2_char_t* (AXIS2_CALL *
-	get_status_line)(axis2_http_simple_response_t *simple_response, 
+   get_status_line)(axis2_http_simple_response_t *simple_response, 
                      const axis2_env_t *env);
 
     axis2_bool_t (AXIS2_CALL *
-	contains_header)(axis2_http_simple_response_t *simple_response, 
+   contains_header)(axis2_http_simple_response_t *simple_response, 
                      const axis2_env_t *env, 
-					 axis2_char_t *name);
+                axis2_char_t *name);
 
     axis2_array_list_t* (AXIS2_CALL *
-	get_headers)(axis2_http_simple_response_t *simple_response, 
+   get_headers)(axis2_http_simple_response_t *simple_response, 
                  const axis2_env_t *env);
     
     axis2_http_header_t* (AXIS2_CALL *
-	get_first_header)(axis2_http_simple_response_t *simple_response, 
+   get_first_header)(axis2_http_simple_response_t *simple_response, 
                       const axis2_env_t *env, 
-					  axis2_char_t *str);
+                 axis2_char_t *str);
     
     axis2_status_t (AXIS2_CALL *
-	remove_headers)(axis2_http_simple_response_t *simple_response, 
+   remove_headers)(axis2_http_simple_response_t *simple_response, 
                     const axis2_env_t *env, 
-					const axis2_char_t *str);
+               const axis2_char_t *str);
     
     axis2_status_t (AXIS2_CALL *
-	set_header)(axis2_http_simple_response_t *simple_response, 
+   set_header)(axis2_http_simple_response_t *simple_response, 
                 const axis2_env_t *env, 
-				axis2_http_header_t* header);
+            axis2_http_header_t* header);
 
     axis2_status_t (AXIS2_CALL *
-	set_headers)(axis2_http_simple_response_t *simple_response, 
+   set_headers)(axis2_http_simple_response_t *simple_response, 
                  const axis2_env_t *env, 
-				 axis2_http_header_t** headers, 
+             axis2_http_header_t** headers, 
                  axis2_ssize_t array_size);
     
     axis2_char_t* (AXIS2_CALL *
-	get_charset)(axis2_http_simple_response_t *simple_response, 
+   get_charset)(axis2_http_simple_response_t *simple_response, 
                  const axis2_env_t *env);
     
     axis2_ssize_t (AXIS2_CALL *
-	get_content_length)(axis2_http_simple_response_t *simple_response, 
+   get_content_length)(axis2_http_simple_response_t *simple_response, 
                         const axis2_env_t *env);
     
     axis2_char_t* (AXIS2_CALL *
-	get_content_type)(axis2_http_simple_response_t *simple_response, 
+   get_content_type)(axis2_http_simple_response_t *simple_response, 
                       const axis2_env_t *env);
 
     axis2_status_t (AXIS2_CALL *
-	set_body_string)(axis2_http_simple_response_t *simple_response, 
+   set_body_string)(axis2_http_simple_response_t *simple_response, 
                      const axis2_env_t *env, 
-					 axis2_char_t *str);
+                axis2_char_t *str);
     
     axis2_status_t (AXIS2_CALL *
-	set_body_stream)(axis2_http_simple_response_t *simple_response, 
+   set_body_stream)(axis2_http_simple_response_t *simple_response, 
                      const axis2_env_t *env, 
-					 axis2_stream_t *stream);    
+                axis2_stream_t *stream);    
 
     axis2_stream_t* (AXIS2_CALL *
-	get_body)(axis2_http_simple_response_t *simple_response, 
+   get_body)(axis2_http_simple_response_t *simple_response, 
               const axis2_env_t *env);
 
     axis2_ssize_t (AXIS2_CALL *
-	get_body_bytes)(axis2_http_simple_response_t *simple_response, 
+   get_body_bytes)(axis2_http_simple_response_t *simple_response, 
                     const axis2_env_t *env, 
-					axis2_char_t **buf);
+               axis2_char_t **buf);
 
     axis2_status_t (AXIS2_CALL *
-	free)(axis2_http_simple_response_t *simple_response, 
+   free)(axis2_http_simple_response_t *simple_response, 
           const axis2_env_t *env);
     
 };
@@ -165,7 +165,7 @@
 
 
 #define AXIS2_HTTP_SIMPLE_RESPONSE_SET_STATUS_LINE(\
-					simple_response, env, http_version, status_code, phrase)\
+               simple_response, env, http_version, status_code, phrase)\
                     ((simple_response)->ops->set_status_line\
                     (simple_response, env, http_version, status_code, phrase))
 #define AXIS2_HTTP_SIMPLE_RESPONSE_GET_PHRASE\

Modified: webservices/axis2/trunk/c/include/axis2_http_status_line.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/include/axis2_http_status_line.h?rev=411506&r1=411505&r2=411506&view=diff
==============================================================================
--- webservices/axis2/trunk/c/include/axis2_http_status_line.h (original)
+++ webservices/axis2/trunk/c/include/axis2_http_status_line.h Sat Jun  3 20:09:08 2006
@@ -47,27 +47,27 @@
 AXIS2_DECLARE_DATA struct axis2_http_status_line_ops
 {
     int (AXIS2_CALL *
-	get_status_code)(axis2_http_status_line_t *status_line, 
+   get_status_code)(axis2_http_status_line_t *status_line, 
                      const axis2_env_t *env);
     
     axis2_char_t* (AXIS2_CALL *
-	get_http_version)(axis2_http_status_line_t *status_line, 
-					  const axis2_env_t *env);
+   get_http_version)(axis2_http_status_line_t *status_line, 
+                 const axis2_env_t *env);
     
     axis2_char_t* (AXIS2_CALL *
-	get_reason_phrase)(axis2_http_status_line_t *status_line, 
-					   const axis2_env_t *env);
+   get_reason_phrase)(axis2_http_status_line_t *status_line, 
+                  const axis2_env_t *env);
     
     axis2_bool_t (AXIS2_CALL *
-	starts_with_http)(axis2_http_status_line_t *status_line, 
-		              const axis2_env_t *env);
+   starts_with_http)(axis2_http_status_line_t *status_line, 
+                    const axis2_env_t *env);
     
     axis2_char_t* (AXIS2_CALL *
-	to_string)(axis2_http_status_line_t *status_line, 
-		       const axis2_env_t *env);
+   to_string)(axis2_http_status_line_t *status_line, 
+             const axis2_env_t *env);
     
     axis2_status_t (AXIS2_CALL *
-	free) (axis2_http_status_line_t *status_line, 
+   free) (axis2_http_status_line_t *status_line, 
            const axis2_env_t *env);
 };
 

Modified: webservices/axis2/trunk/c/include/axis2_http_svr_thread.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/include/axis2_http_svr_thread.h?rev=411506&r1=411505&r2=411506&view=diff
==============================================================================
--- webservices/axis2/trunk/c/include/axis2_http_svr_thread.h (original)
+++ webservices/axis2/trunk/c/include/axis2_http_svr_thread.h Sat Jun  3 20:09:08 2006
@@ -50,21 +50,21 @@
 AXIS2_DECLARE_DATA struct axis2_http_svr_thread_ops
 {
     axis2_status_t (AXIS2_CALL *run)
-						(axis2_http_svr_thread_t *svr_thread, 
-						const axis2_env_t *env);
-	axis2_status_t (AXIS2_CALL *destroy) 
-						(axis2_http_svr_thread_t *svr_thread, 
-						const axis2_env_t *env);
-	int (AXIS2_CALL *get_local_port)
-						(axis2_http_svr_thread_t *svr_thread, 
-						const axis2_env_t *env);
+                  (axis2_http_svr_thread_t *svr_thread, 
+                  const axis2_env_t *env);
+   axis2_status_t (AXIS2_CALL *destroy) 
+                  (axis2_http_svr_thread_t *svr_thread, 
+                  const axis2_env_t *env);
+   int (AXIS2_CALL *get_local_port)
+                  (axis2_http_svr_thread_t *svr_thread, 
+                  const axis2_env_t *env);
     axis2_bool_t (AXIS2_CALL *is_running) 
-						(axis2_http_svr_thread_t *svr_thread, 
-                    	const axis2_env_t *env);
-	axis2_status_t (AXIS2_CALL *set_worker) 
-						(axis2_http_svr_thread_t *svr_thread, 
-                    	const axis2_env_t *env, axis2_http_worker_t *worker);
-	axis2_status_t (AXIS2_CALL *free)
+                  (axis2_http_svr_thread_t *svr_thread, 
+                       const axis2_env_t *env);
+   axis2_status_t (AXIS2_CALL *set_worker) 
+                  (axis2_http_svr_thread_t *svr_thread, 
+                       const axis2_env_t *env, axis2_http_worker_t *worker);
+   axis2_status_t (AXIS2_CALL *free)
                     (axis2_http_svr_thread_t *svr_thread, 
                     const axis2_env_t *env);
 };
@@ -85,17 +85,17 @@
 /************************** Start of function macros **************************/
 
 #define AXIS2_HTTP_SVR_THREAD_RUN(svr_thread, env) \
-						((svr_thread)->ops->run(svr_thread, env))
+                  ((svr_thread)->ops->run(svr_thread, env))
 #define AXIS2_HTTP_SVR_THREAD_DESTROY(svr_thread, env) \
                         ((svr_thread)->ops->destroy(svr_thread, env))
 #define AXIS2_HTTP_SVR_THREAD_GET_LOCAL_PORT(svr_thread, env) \
                         ((svr_thread)->ops->get_local_port(svr_thread,\
-						env))
+                  env))
 #define AXIS2_HTTP_SVR_THREAD_IS_RUNNING(svr_thread, env) \
                         ((svr_thread)->ops->is_running(svr_thread, env))
 #define AXIS2_HTTP_SVR_THREAD_SET_WORKER(svr_thread, env, worker) \
                         ((svr_thread)->ops->set_worker(svr_thread, env,\
-						worker))
+                  worker))
 #define AXIS2_HTTP_SVR_THREAD_FREE(svr_thread, env) \
                 ((svr_thread)->ops->free(svr_thread, env))
 /************************** End of function macros ****************************/    

Modified: webservices/axis2/trunk/c/include/axis2_http_transport.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/include/axis2_http_transport.h?rev=411506&r1=411505&r2=411506&view=diff
==============================================================================
--- webservices/axis2/trunk/c/include/axis2_http_transport.h (original)
+++ webservices/axis2/trunk/c/include/axis2_http_transport.h Sat Jun  3 20:09:08 2006
@@ -357,16 +357,16 @@
      * Default charset in content
      */
     #define AXIS2_HTTP_DEFAULT_CONTENT_CHARSET "ISO-8859-1"
-	
-	/**
+   
+   /**
      * Field TRANSPORT_HTTP
      */
     #define AXIS2_TRANSPORT_HTTP "http"
-	
-	/**
-	 * Msg context response written key
-	 */
-	#define AXIS2_RESPONSE_WRITTEN "CONTENT_WRITTEN"
+   
+   /**
+    * Msg context response written key
+    */
+   #define AXIS2_RESPONSE_WRITTEN "CONTENT_WRITTEN"
     
     /**
      * Content type for MTOM

Modified: webservices/axis2/trunk/c/include/axis2_http_transport_utils.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/include/axis2_http_transport_utils.h?rev=411506&r1=411505&r2=411506&view=diff
==============================================================================
--- webservices/axis2/trunk/c/include/axis2_http_transport_utils.h (original)
+++ webservices/axis2/trunk/c/include/axis2_http_transport_utils.h Sat Jun  3 20:09:08 2006
@@ -47,14 +47,14 @@
 
 /* 
  * struct to hold the callback information
- */	
+ */   
 struct axis2_callback_info
 {
-	const axis2_env_t *env;
-	void *in_stream;
-	int content_length;
-	int unread_len;
-	axis2_http_chunked_stream_t *chunked_stream;
+   const axis2_env_t *env;
+   void *in_stream;
+   int content_length;
+   int unread_len;
+   axis2_http_chunked_stream_t *chunked_stream;
 };
 typedef struct axis2_callback_info axis2_callback_info_t;
 
@@ -62,7 +62,7 @@
 axis2_http_transport_utils_process_http_post_request
                         (const axis2_env_t *env, axis2_msg_ctx_t *msg_ctx, 
                         axis2_stream_t *in_stream, axis2_stream_t *out_stream,
-						axis2_char_t *content_type, int content_length, 
+                  axis2_char_t *content_type, int content_length, 
                         axis2_char_t *soap_action_header,
                         axis2_char_t *request_uri);
     
@@ -70,7 +70,7 @@
 axis2_http_transport_utils_process_http_get_request
                         (const axis2_env_t *env, axis2_msg_ctx_t *msg_ctx,
                         axis2_stream_t *in_stream, axis2_stream_t *out_stream,
-						axis2_char_t *content_type,
+                  axis2_char_t *content_type,
                         axis2_char_t *soap_action_header, 
                         axis2_char_t *request_uri, axis2_conf_ctx_t *conf_ctx, 
                         axis2_hash_t *request_params);
@@ -97,18 +97,18 @@
 AXIS2_EXTERN axis2_bool_t AXIS2_CALL 
 axis2_http_transport_utils_is_doing_rest_through_post
                         (const axis2_env_t *env, axis2_msg_ctx_t *msg_ctx);
-						
+                  
 AXIS2_EXTERN axis2_hash_t * AXIS2_CALL
 axis2_http_transport_utils_get_request_params(const axis2_env_t *env, 
-						axis2_char_t *request_uri);
-						
+                  axis2_char_t *request_uri);
+                  
 AXIS2_EXTERN axis2_char_t* AXIS2_CALL
 axis2_http_transport_utils_get_services_html(const axis2_env_t *env, 
-							axis2_conf_ctx_t *conf_ctx);
+                     axis2_conf_ctx_t *conf_ctx);
 
 AXIS2_EXTERN axis2_hash_t * AXIS2_CALL
 axis2_http_transport_utils_get_request_params(const axis2_env_t *env, 
-						axis2_char_t *request_uri);
+                  axis2_char_t *request_uri);
 
 AXIS2_EXTERN axis2_soap_envelope_t* AXIS2_CALL
 axis2_http_transport_utils_create_soap_msg(const axis2_env_t *env, 

Modified: webservices/axis2/trunk/c/include/axis2_http_worker.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/include/axis2_http_worker.h?rev=411506&r1=411505&r2=411506&view=diff
==============================================================================
--- webservices/axis2/trunk/c/include/axis2_http_worker.h (original)
+++ webservices/axis2/trunk/c/include/axis2_http_worker.h Sat Jun  3 20:09:08 2006
@@ -83,8 +83,8 @@
 
 
 #define AXIS2_HTTP_WORKER_PROCESS_REQUEST(http_worker, env, svr_conn,\
-				simple_request) ((http_worker)->ops->process_request(\
-				http_worker, env, svr_conn, simple_request))
+            simple_request) ((http_worker)->ops->process_request(\
+            http_worker, env, svr_conn, simple_request))
 #define AXIS2_HTTP_WORKER_SET_SVR_PORT(http_worker, env, port) \
                 ((http_worker)->ops->set_svr_port(http_worker, env, port))
 #define AXIS2_HTTP_WORKER_FREE(http_worker, env) \

Modified: webservices/axis2/trunk/c/include/axis2_mep_client.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/include/axis2_mep_client.h?rev=411506&r1=411505&r2=411506&view=diff
==============================================================================
--- webservices/axis2/trunk/c/include/axis2_mep_client.h (original)
+++ webservices/axis2/trunk/c/include/axis2_mep_client.h Sat Jun  3 20:09:08 2006
@@ -51,14 +51,14 @@
 struct axis2_mep_client_ops
 {
     axis2_char_t* (AXIS2_CALL *
-	get_soap_action)(struct axis2_mep_client *mep_client, 
+   get_soap_action)(struct axis2_mep_client *mep_client, 
                      const axis2_env_t *env);
     /**
      * prepare the message context for invocation, here the properties kept in the
      * MEPClient copied to the axis2_msg_ctx_t *
      */
     axis2_status_t (AXIS2_CALL *
-	prepare_invocation)(struct axis2_mep_client *mep_client, 
+   prepare_invocation)(struct axis2_mep_client *mep_client, 
                         const axis2_env_t *env, 
                         axis2_op_t *op, 
                         axis2_msg_ctx_t *msg_ctx);
@@ -70,7 +70,7 @@
      * @
      */
     axis2_msg_ctx_t* (AXIS2_CALL *
-	prepare_soap_envelope)(struct axis2_mep_client *mep_client, 
+   prepare_soap_envelope)(struct axis2_mep_client *mep_client, 
                            const axis2_env_t *env, 
                            axis2_om_node_t *to_send);
     /**
@@ -83,8 +83,8 @@
      * @
      */
     axis2_transport_out_desc_t* (AXIS2_CALL *
-	infer_transport)(struct axis2_mep_client *mep_client, 
-		             const axis2_env_t *env, 
+   infer_transport)(struct axis2_mep_client *mep_client, 
+                   const axis2_env_t *env, 
                      axis2_endpoint_ref_t *epr);
     /**
      * create write SOAPEvelope(in terms of version) based on the values set.
@@ -93,7 +93,7 @@
      * @
      */
     axis2_soap_envelope_t* (AXIS2_CALL *
-	create_default_soap_envelope)(struct axis2_mep_client *mep_client, 
+   create_default_soap_envelope)(struct axis2_mep_client *mep_client, 
                                   const axis2_env_t *env);
     /**
      * Engage a given Module to the current invocation. But to call this method the
@@ -104,45 +104,45 @@
      * @
      */
     axis2_status_t (AXIS2_CALL *
-	engage_module)(struct axis2_mep_client *mep_client, 
-		           const axis2_env_t *env, 
-	               axis2_qname_t *qname);
+   engage_module)(struct axis2_mep_client *mep_client, 
+                 const axis2_env_t *env, 
+                  axis2_qname_t *qname);
     /**
      * @param string
      */
     axis2_status_t (AXIS2_CALL *
-	set_soap_version_uri)(struct axis2_mep_client *mep_client, 
-		                  const axis2_env_t *env, 
-	                      axis2_char_t *soap_version_uri);
+   set_soap_version_uri)(struct axis2_mep_client *mep_client, 
+                        const axis2_env_t *env, 
+                         axis2_char_t *soap_version_uri);
     /**
      * @param string
      */
     axis2_status_t (AXIS2_CALL *
-	set_soap_action)(struct axis2_mep_client *mep_client, 
-		             const axis2_env_t *env, 
-	                 axis2_char_t *soap_action);
+   set_soap_action)(struct axis2_mep_client *mep_client, 
+                   const axis2_env_t *env, 
+                    axis2_char_t *soap_action);
     /**
      * @param string
      */
     axis2_status_t (AXIS2_CALL *
-	set_wsa_action)(struct axis2_mep_client *mep_client, 
-		            const axis2_env_t *env, 
-	                axis2_char_t *wsa_action);
-	
-	
+   set_wsa_action)(struct axis2_mep_client *mep_client, 
+                  const axis2_env_t *env, 
+                   axis2_char_t *wsa_action);
+   
+   
     axis2_svc_ctx_t* (AXIS2_CALL *
-	get_svc_ctx)(struct axis2_mep_client *mep_client, 
-		         const axis2_env_t *env);
-	
-	
+   get_svc_ctx)(struct axis2_mep_client *mep_client, 
+               const axis2_env_t *env);
+   
+   
     axis2_status_t (AXIS2_CALL *
-	free)(struct axis2_mep_client *mep_client, 
+   free)(struct axis2_mep_client *mep_client, 
           const axis2_env_t *env);
 };
 
 /** 
  * @brief Message Context struct
-  *	Axis2 Message Context
+  *   Axis2 Message Context
  */
 struct axis2_mep_client
 {
@@ -155,7 +155,7 @@
 
 axis2_msg_ctx_t* AXIS2_CALL 
 axis2_mep_client_two_way_send(const axis2_env_t *env, 
-				   axis2_msg_ctx_t *msg_ctx);
+               axis2_msg_ctx_t *msg_ctx);
 
 axis2_msg_ctx_t* AXIS2_CALL 
 axis2_mep_client_receive(const axis2_env_t *env, 
@@ -167,35 +167,35 @@
         ((mep_client)->ops->get_soap_action(mep_client, env))
 
 #define AXIS2_MEP_CLIENT_PREPARE_INVOCATION(mep_client, env, op, msg_ctx) \
-		((mep_client)->ops->prepare_invocation(mep_client, env, op, msg_ctx))
+      ((mep_client)->ops->prepare_invocation(mep_client, env, op, msg_ctx))
 
 #define AXIS2_MEP_CLIENT_PREPARE_SOAP_ENVELOPE(mep_client, env, to_send) \
-		((mep_client)->ops->prepare_soap_envelope(mep_client, env, to_send))
+      ((mep_client)->ops->prepare_soap_envelope(mep_client, env, to_send))
 
 #define AXIS2_MEP_CLIENT_INFER_TRANSPORT(mep_client, env, epr) \
-		((mep_client)->ops->infer_transport(mep_client, env, epr))
-		
+      ((mep_client)->ops->infer_transport(mep_client, env, epr))
+      
 #define AXIS2_MEP_CLIENT_CREATE_DEFAULT_SOAP_ENVELOPE(mep_client, env) \
-		((mep_client)->ops->create_default_soap_envelope(mep_client, env))
-		
+      ((mep_client)->ops->create_default_soap_envelope(mep_client, env))
+      
 #define AXIS2_MEP_CLIENT_ENGAGE_MODULE(mep_client, env, qname) \
-		((mep_client)->ops->engage_module(mep_client, env, qname))
-		
+      ((mep_client)->ops->engage_module(mep_client, env, qname))
+      
 #define AXIS2_MEP_CLIENT_SET_SOAP_VERSION_URI(mep_client, env, soap_version_uri)\
-		((mep_client)->ops->set_soap_version_uri(mep_client, env, soap_version_uri))
-		
+      ((mep_client)->ops->set_soap_version_uri(mep_client, env, soap_version_uri))
+      
 #define AXIS2_MEP_CLIENT_SET_SOAP_ACTION(mep_client, env, soap_action) \
-		((mep_client)->ops->set_soap_action(mep_client, env, soap_action))
-		
+      ((mep_client)->ops->set_soap_action(mep_client, env, soap_action))
+      
 #define AXIS2_MEP_CLIENT_SET_WSA_ACTION(mep_client, env, wsa_action) \
-		((mep_client)->ops->set_wsa_action(mep_client, env, wsa_action))
-		
+      ((mep_client)->ops->set_wsa_action(mep_client, env, wsa_action))
+      
 #define AXIS2_MEP_CLIENT_GET_SVC_CTX(mep_client, env) \
-		((mep_client)->ops->get_svc_ctx(mep_client, env))
-		
+      ((mep_client)->ops->get_svc_ctx(mep_client, env))
+      
 #define AXIS2_MEP_CLIENT_FREE(mep_client, env) \
-		((mep_client)->ops->free (mep_client, env))
-		
+      ((mep_client)->ops->free (mep_client, env))
+      
 
 /************************** End of function macros ****************************/    
 

Modified: webservices/axis2/trunk/c/include/axis2_module.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/include/axis2_module.h?rev=411506&r1=411505&r2=411506&view=diff
==============================================================================
--- webservices/axis2/trunk/c/include/axis2_module.h (original)
+++ webservices/axis2/trunk/c/include/axis2_module.h Sat Jun  3 20:09:08 2006
@@ -99,13 +99,13 @@
 /*************************** Function macros **********************************/
 
 #define AXIS2_MODULE_INIT(module, env) \
-		((module)->ops->init (module, env)) 
+      ((module)->ops->init (module, env)) 
 
 #define AXIS2_MODULE_SHUTDOWN(module, env) \
-		((module)->ops->shutdown (module, env)) 
+      ((module)->ops->shutdown (module, env)) 
 
 #define AXIS2_MODULE_FILL_HANDLER_CREATE_FUNC_MAP(module, env) \
-		((module)->ops->fill_handler_create_func_map (module, env))
+      ((module)->ops->fill_handler_create_func_map (module, env))
 
 /** @} */
 

Modified: webservices/axis2/trunk/c/include/axis2_module_desc.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/include/axis2_module_desc.h?rev=411506&r1=411505&r2=411506&view=diff
==============================================================================
--- webservices/axis2/trunk/c/include/axis2_module_desc.h (original)
+++ webservices/axis2/trunk/c/include/axis2_module_desc.h Sat Jun  3 20:09:08 2006
@@ -51,10 +51,10 @@
 #endif
 
 struct axis2_op;
-struct axis2_conf;	
+struct axis2_conf;   
 typedef struct axis2_module_desc_ops axis2_module_desc_ops_t;
-typedef struct axis2_module_desc axis2_module_desc_t;	
-	
+typedef struct axis2_module_desc axis2_module_desc_t;   
+   
 
 /** @defgroup axis2_module_desc Module Description
   * @ingroup axis2_module_desc
@@ -235,7 +235,7 @@
  */
 struct axis2_module_desc
 {
-	axis2_module_desc_ops_t *ops;
+   axis2_module_desc_ops_t *ops;
     
     axis2_flow_container_t *flow_container;
     
@@ -266,11 +266,11 @@
                                         const axis2_env_t *env);
 
                                 
-/************************* Start of function macros	***************************/
-	
+/************************* Start of function macros   ***************************/
+   
 #define AXIS2_MODULE_DESC_FREE(module_desc, env) \
-		((module_desc)->ops->free(module_desc, env))
-	
+      ((module_desc)->ops->free(module_desc, env))
+   
 #define AXIS2_MODULE_DESC_GET_INFLOW(module_desc, env) \
         ((module_desc)->ops->get_inflow (module_desc, env))
 
@@ -278,23 +278,23 @@
         ((module_desc)->ops->set_inflow (module_desc, env, inflow))
 
 #define AXIS2_MODULE_DESC_GET_OUTFLOW(module_desc, env) \
-		((module_desc)->ops->get_outflow (module_desc, env))
-		
+      ((module_desc)->ops->get_outflow (module_desc, env))
+      
 #define AXIS2_MODULE_DESC_SET_OUTFLOW(module_desc, env, outflow) \
-		((module_desc)->ops->set_outflow (module_desc, env, outflow))
+      ((module_desc)->ops->set_outflow (module_desc, env, outflow))
 
 #define AXIS2_MODULE_DESC_GET_FAULT_INFLOW(module_desc, env) \
-		((module_desc)->ops->get_fault_inflow (module_desc, env))
+      ((module_desc)->ops->get_fault_inflow (module_desc, env))
         
 #define AXIS2_MODULE_DESC_SET_FAULT_INFLOW(module_desc, env, falut_inflow) \
         ((module_desc)->ops->set_fault_inflow(module_desc , env, falut_inflow))
-		
+      
 #define AXIS2_MODULE_DESC_GET_FAULT_OUTFLOW(module_desc, env) \
         ((module_desc)->ops->get_fault_outflow(module_desc , env))
-		
+      
 #define AXIS2_MODULE_DESC_SET_FAULT_OUTFLOW(module_desc, env, falut_outflow) \
         ((module_desc)->ops->set_fault_outflow(module_desc , env, falut_outflow))
-		
+      
 #define AXIS2_MODULE_DESC_GET_NAME(module_desc, env) \
         ((module_desc)->ops->get_name(module_desc, env))
 

Modified: webservices/axis2/trunk/c/include/axis2_msg.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/include/axis2_msg.h?rev=411506&r1=411505&r2=411506&view=diff
==============================================================================
--- webservices/axis2/trunk/c/include/axis2_msg.h (original)
+++ webservices/axis2/trunk/c/include/axis2_msg.h Sat Jun  3 20:09:08 2006
@@ -64,7 +64,7 @@
     axis2_status_t (AXIS2_CALL *
     free)(
         axis2_msg_t *msg, 
-        const axis2_env_t *env);	
+        const axis2_env_t *env);   
     
     axis2_status_t (AXIS2_CALL *
     add_param)(
@@ -147,11 +147,11 @@
 
 /** 
  * @brief message struct
- *	Axis2 message   
+ *   Axis2 message   
  */  
 AXIS2_DECLARE_DATA struct axis2_msg
 {
-	axis2_msg_ops_t *ops;
+   axis2_msg_ops_t *ops;
     struct axis2_param_container *param_container;
 };
 
@@ -168,13 +168,13 @@
         ((msg)->ops->free (msg, env))
 
 #define AXIS2_MSG_ADD_PARAM(msg, env, param) \
-		((msg)->ops->add_param (msg, env, param))
+      ((msg)->ops->add_param (msg, env, param))
 
 #define AXIS2_MSG_GET_PARAM(msg, env, key) \
-		((msg)->ops->get_param (msg, env, key))
+      ((msg)->ops->get_param (msg, env, key))
 
 #define AXIS2_MSG_GET_PARAMS(msg, env) \
-		((msg)->ops->get_params (msg, env))
+      ((msg)->ops->get_params (msg, env))
 
 #define AXIS2_MSG_IS_PARAM_LOCKED(msg, env, param_name) \
         ((msg)->ops->is_param_locked(msg, env, param_name))
@@ -183,31 +183,31 @@
         ((msg)->ops->set_parent (msg, env, service_desc))
 
 #define AXIS2_MSG_GET_PARENT(msg, env) \
-		((msg)->ops->get_parent (msg, env))
+      ((msg)->ops->get_parent (msg, env))
 
 #define AXIS2_MSG_GET_FLOW(msg, env) \
-		((msg)->ops->get_flow (msg, env))
+      ((msg)->ops->get_flow (msg, env))
 
 #define AXIS2_MSG_SET_FLOW(msg, env, flow) \
-		((msg)->ops->set_flow (msg, env, flow))
+      ((msg)->ops->set_flow (msg, env, flow))
 
 #define AXIS2_MSG_GET_DIRECTION(msg, env) \
-		((msg)->ops->get_direction (msg, env))
+      ((msg)->ops->get_direction (msg, env))
     
 #define AXIS2_MSG_SET_DIRECTION(msg, env, direction) \
-		((msg)->ops->set_direction (msg, env, direction))
+      ((msg)->ops->set_direction (msg, env, direction))
 
 #define AXIS2_MSG_GET_ELEMENT_QNAME(msg, env) \
-		((msg)->ops->get_element_qname(msg, env))
+      ((msg)->ops->get_element_qname(msg, env))
     
 #define AXIS2_MSG_SET_ELEMENT_QNAME(msg, env, element_qname) \
-		((msg)->ops->set_element_qname(msg, env, element_qname))
+      ((msg)->ops->set_element_qname(msg, env, element_qname))
 
 #define AXIS2_MSG_GET_NAME(msg, env) \
-		((msg)->ops->get_name(msg, env))
+      ((msg)->ops->get_name(msg, env))
     
 #define AXIS2_MSG_SET_NAME(msg, env, name) \
-		((msg)->ops->set_name(msg, env, name))
+      ((msg)->ops->set_name(msg, env, name))
 
 /************************** End of function macros ****************************/
 

Modified: webservices/axis2/trunk/c/include/axis2_msg_ctx.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/include/axis2_msg_ctx.h?rev=411506&r1=411505&r2=411506&view=diff
==============================================================================
--- webservices/axis2/trunk/c/include/axis2_msg_ctx.h (original)
+++ webservices/axis2/trunk/c/include/axis2_msg_ctx.h Sat Jun  3 20:09:08 2006
@@ -83,33 +83,33 @@
 struct axis2_msg_ctx_ops
 {
     struct axis2_ctx* (AXIS2_CALL *
-	get_base)(struct axis2_msg_ctx *msg_ctx, 
+   get_base)(struct axis2_msg_ctx *msg_ctx, 
               const axis2_env_t *env);
-	
+   
     
     struct axis2_op_ctx* (AXIS2_CALL *
-	get_parent)(struct axis2_msg_ctx *msg_ctx, 
+   get_parent)(struct axis2_msg_ctx *msg_ctx, 
                 const axis2_env_t *env);
     
     /**
      * @param context
      */
     axis2_status_t (AXIS2_CALL *
-	set_parent)(struct axis2_msg_ctx *msg_ctx, 
+   set_parent)(struct axis2_msg_ctx *msg_ctx, 
                 const axis2_env_t *env, 
                 struct axis2_op_ctx *parent);
-					
-				
+               
+            
     
     axis2_status_t (AXIS2_CALL *
-	free)(axis2_msg_ctx_t *msg_ctx,
+   free)(axis2_msg_ctx_t *msg_ctx,
           const axis2_env_t *env);
     /**
      * The method is used to do the intialization of the EngineContext
      *
      */
     axis2_status_t (AXIS2_CALL *
-	init)(struct axis2_msg_ctx *msg_ctx, 
+   init)(struct axis2_msg_ctx *msg_ctx, 
           const axis2_env_t *env, 
           struct axis2_conf *conf);
     
@@ -117,14 +117,14 @@
      * @return
      */
     axis2_endpoint_ref_t *(AXIS2_CALL *
-	get_fault_to)(struct axis2_msg_ctx *msg_ctx, 
+   get_fault_to)(struct axis2_msg_ctx *msg_ctx, 
                   const axis2_env_t *env);
     
     /**
      * @return
      */
     axis2_endpoint_ref_t *(AXIS2_CALL *
-	get_from)(struct axis2_msg_ctx *msg_ctx, 
+   get_from)(struct axis2_msg_ctx *msg_ctx, 
               const axis2_env_t *env);
     
     
@@ -132,46 +132,46 @@
      * @return
      */
     axis2_bool_t (AXIS2_CALL *
-	get_in_fault_flow)(struct axis2_msg_ctx *msg_ctx, 
+   get_in_fault_flow)(struct axis2_msg_ctx *msg_ctx, 
                        const axis2_env_t *env);
     
     /**
      * @return
      */
     struct axis2_soap_envelope* (AXIS2_CALL *
-	get_soap_envelope)(struct axis2_msg_ctx *msg_ctx, 
+   get_soap_envelope)(struct axis2_msg_ctx *msg_ctx, 
                        const axis2_env_t *env);
     
     struct axis2_soap_envelope* (AXIS2_CALL *
-	get_fault_soap_envelope)(struct axis2_msg_ctx *msg_ctx, 
+   get_fault_soap_envelope)(struct axis2_msg_ctx *msg_ctx, 
                        const axis2_env_t *env);
     
     /**
      * @return
      */
     axis2_char_t* (AXIS2_CALL *
-	get_msg_id)(struct axis2_msg_ctx *msg_ctx, 
+   get_msg_id)(struct axis2_msg_ctx *msg_ctx, 
                 const axis2_env_t *env);
     
     /**
      * @return
      */
     axis2_bool_t (AXIS2_CALL *
-	get_process_fault)(struct axis2_msg_ctx *msg_ctx, 
+   get_process_fault)(struct axis2_msg_ctx *msg_ctx, 
                        const axis2_env_t *env);
     
     /**
      * @return
      */
     axis2_relates_to_t* (AXIS2_CALL *
-	get_relates_to)(struct axis2_msg_ctx *msg_ctx, 
+   get_relates_to)(struct axis2_msg_ctx *msg_ctx, 
                     const axis2_env_t *env);    
     
     /**
      * @return
      */
     axis2_endpoint_ref_t *(AXIS2_CALL *
-	get_reply_to)(struct axis2_msg_ctx *msg_ctx, 
+   get_reply_to)(struct axis2_msg_ctx *msg_ctx, 
                   const axis2_env_t *env);
     
     
@@ -179,57 +179,57 @@
      * @return
      */
     axis2_bool_t (AXIS2_CALL *
-	get_response_written)(struct axis2_msg_ctx *msg_ctx, 
+   get_response_written)(struct axis2_msg_ctx *msg_ctx, 
                           const axis2_env_t *env);
     
     /**
      * @return
      */
     axis2_bool_t (AXIS2_CALL *
-	get_server_side)(struct axis2_msg_ctx *msg_ctx, 
+   get_server_side)(struct axis2_msg_ctx *msg_ctx, 
                      const axis2_env_t *env);
     
     /**
      * @return
      */
     axis2_endpoint_ref_t* (AXIS2_CALL *
-	get_to)(struct axis2_msg_ctx *msg_ctx, 
+   get_to)(struct axis2_msg_ctx *msg_ctx, 
             const axis2_env_t *env);
     
     /**
      * @param reference
      */
     axis2_status_t (AXIS2_CALL *
-	set_fault_to)(struct axis2_msg_ctx *msg_ctx, 
+   set_fault_to)(struct axis2_msg_ctx *msg_ctx, 
                   const axis2_env_t *env, 
-	              axis2_endpoint_ref_t *reference);
+                 axis2_endpoint_ref_t *reference);
     
     /**
      * @param reference
      */    
     axis2_status_t (AXIS2_CALL *
-	set_from)(struct axis2_msg_ctx *msg_ctx, 
+   set_from)(struct axis2_msg_ctx *msg_ctx, 
               const axis2_env_t *env, 
-	          axis2_endpoint_ref_t *reference);
+             axis2_endpoint_ref_t *reference);
     
     /**
      * @param b
      */
     axis2_status_t (AXIS2_CALL *
-	set_in_fault_flow)(struct axis2_msg_ctx *msg_ctx, 
+   set_in_fault_flow)(struct axis2_msg_ctx *msg_ctx, 
                        const axis2_env_t *env, 
-					   axis2_bool_t in_fault_flow);
+                  axis2_bool_t in_fault_flow);
     
     /**
      * @param soap_envelope
      */
     axis2_status_t (AXIS2_CALL *
-	set_soap_envelope)(struct axis2_msg_ctx *msg_ctx, 
+   set_soap_envelope)(struct axis2_msg_ctx *msg_ctx, 
                   const axis2_env_t *env, 
                   struct axis2_soap_envelope *soap_envelope);
     
     axis2_status_t (AXIS2_CALL *
-	set_fault_soap_envelope)(struct axis2_msg_ctx *msg_ctx, 
+   set_fault_soap_envelope)(struct axis2_msg_ctx *msg_ctx, 
                   const axis2_env_t *env, 
                   struct axis2_soap_envelope *soap_envelope);
     
@@ -237,15 +237,15 @@
      * @param string
      */
     axis2_status_t (AXIS2_CALL *
-	set_message_id)(struct axis2_msg_ctx *msg_ctx, 
+   set_message_id)(struct axis2_msg_ctx *msg_ctx, 
                     const axis2_env_t *env, 
-					axis2_char_t *message_id);
+               axis2_char_t *message_id);
     
     /**
      * @param b
      */
     axis2_status_t (AXIS2_CALL *
-	set_process_fault)(struct axis2_msg_ctx *msg_ctx, 
+   set_process_fault)(struct axis2_msg_ctx *msg_ctx, 
                        const axis2_env_t *env, 
                        axis2_bool_t process_fault);
     
@@ -253,7 +253,7 @@
      * @param reference
      */
     axis2_status_t (AXIS2_CALL *
-	set_relates_to)(struct axis2_msg_ctx *msg_ctx, 
+   set_relates_to)(struct axis2_msg_ctx *msg_ctx, 
                     const axis2_env_t *env, 
                     axis2_relates_to_t *reference);
     
@@ -261,7 +261,7 @@
      * @param referance
      */
     axis2_status_t (AXIS2_CALL *
-	set_reply_to)(struct axis2_msg_ctx *msg_ctx, 
+   set_reply_to)(struct axis2_msg_ctx *msg_ctx, 
                   const axis2_env_t *env, 
                   axis2_endpoint_ref_t *referance);
     
@@ -269,7 +269,7 @@
      * @param b
      */
     axis2_status_t (AXIS2_CALL *
-	set_response_written)(struct axis2_msg_ctx *msg_ctx, 
+   set_response_written)(struct axis2_msg_ctx *msg_ctx, 
                           const axis2_env_t *env, 
                           axis2_bool_t response_written);
     
@@ -277,7 +277,7 @@
      * @param b
      */
     axis2_status_t (AXIS2_CALL *
-	set_server_side)(struct axis2_msg_ctx *msg_ctx, 
+   set_server_side)(struct axis2_msg_ctx *msg_ctx, 
                      const axis2_env_t *env, 
                      axis2_bool_t server_side);
     
@@ -285,7 +285,7 @@
      * @param referance
      */
     axis2_status_t (AXIS2_CALL *
-	set_to)(struct axis2_msg_ctx *msg_ctx, 
+   set_to)(struct axis2_msg_ctx *msg_ctx, 
             const axis2_env_t *env, 
             axis2_endpoint_ref_t *referance);
     
@@ -293,14 +293,14 @@
      * @return
      */
     axis2_bool_t (AXIS2_CALL *
-	get_new_thread_required)(struct axis2_msg_ctx *msg_ctx, 
+   get_new_thread_required)(struct axis2_msg_ctx *msg_ctx, 
                              const axis2_env_t *env);
     
     /**
      * @param b
      */
     axis2_status_t (AXIS2_CALL *
-	set_new_thread_required)(struct axis2_msg_ctx *msg_ctx, 
+   set_new_thread_required)(struct axis2_msg_ctx *msg_ctx, 
                              const axis2_env_t *env, 
                              axis2_bool_t new_thread_required);
     
@@ -308,37 +308,37 @@
      * Method AXIS2_CALL getExecutionChain
      */
     axis2_status_t (AXIS2_CALL *
-	set_wsa_action)(struct axis2_msg_ctx *msg_ctx, 
+   set_wsa_action)(struct axis2_msg_ctx *msg_ctx, 
                     const axis2_env_t *env, 
                     axis2_char_t *action_uri);
     
     axis2_char_t* (AXIS2_CALL *
-	get_wsa_action)(struct axis2_msg_ctx *msg_ctx, 
+   get_wsa_action)(struct axis2_msg_ctx *msg_ctx, 
                     const axis2_env_t *env);
 
     axis2_status_t (AXIS2_CALL *
-	set_wsa_message_id)(struct axis2_msg_ctx *msg_ctx, 
+   set_wsa_message_id)(struct axis2_msg_ctx *msg_ctx, 
                         const axis2_env_t *env, 
                         axis2_char_t *message_id);
     
     axis2_char_t* (AXIS2_CALL *
-	get_wsa_message_id)(struct axis2_msg_ctx *msg_ctx, 
+   get_wsa_message_id)(struct axis2_msg_ctx *msg_ctx, 
                         const axis2_env_t *env);
     
     axis2_msg_info_headers_t* (AXIS2_CALL *
-	get_msg_info_headers)(struct axis2_msg_ctx *msg_ctx, 
+   get_msg_info_headers)(struct axis2_msg_ctx *msg_ctx, 
                           const axis2_env_t *env);
     /**
      * @return
      */
     axis2_bool_t (AXIS2_CALL *
-	get_paused)(struct axis2_msg_ctx *msg_ctx, 
+   get_paused)(struct axis2_msg_ctx *msg_ctx, 
                 const axis2_env_t *env);
     
     /**
      */
     axis2_status_t (AXIS2_CALL *
-	set_paused)(struct axis2_msg_ctx *msg_ctx, 
+   set_paused)(struct axis2_msg_ctx *msg_ctx, 
                 const axis2_env_t *env, 
                 axis2_bool_t paused);
     
@@ -346,21 +346,21 @@
      * @return
      */
     struct axis2_transport_in_desc* (AXIS2_CALL *
-	get_transport_in_desc)(struct axis2_msg_ctx *msg_ctx, 
+   get_transport_in_desc)(struct axis2_msg_ctx *msg_ctx, 
                            const axis2_env_t *env);
     
     /**
      * @return
      */
     struct axis2_transport_out_desc* (AXIS2_CALL *
-	get_transport_out_desc)(struct axis2_msg_ctx *msg_ctx, 
+   get_transport_out_desc)(struct axis2_msg_ctx *msg_ctx, 
                             const axis2_env_t *env);
     
     /**
      * @param in
      */
     axis2_status_t (AXIS2_CALL *
-	set_transport_in_desc)(struct axis2_msg_ctx *msg_ctx, 
+   set_transport_in_desc)(struct axis2_msg_ctx *msg_ctx, 
                            const axis2_env_t *env, 
                            struct axis2_transport_in_desc *transport_in_desc);
     
@@ -368,19 +368,19 @@
      * @param out
      */
     axis2_status_t (AXIS2_CALL *
-	set_transport_out_desc)(struct axis2_msg_ctx *msg_ctx, 
+   set_transport_out_desc)(struct axis2_msg_ctx *msg_ctx, 
                             const axis2_env_t *env, 
                             struct axis2_transport_out_desc *transport_out_desc); 
     
     struct axis2_op_ctx* (AXIS2_CALL *
-	get_op_ctx)(struct axis2_msg_ctx *msg_ctx, 
+   get_op_ctx)(struct axis2_msg_ctx *msg_ctx, 
                 const axis2_env_t *env);
     
     /**
      * @param context
      */
     axis2_status_t (AXIS2_CALL *
-	set_op_ctx)(struct axis2_msg_ctx *msg_ctx, 
+   set_op_ctx)(struct axis2_msg_ctx *msg_ctx, 
                 const axis2_env_t *env, 
                 struct axis2_op_ctx * op_ctx);
     
@@ -388,14 +388,14 @@
      * @return
      */
     axis2_bool_t (AXIS2_CALL *
-	get_output_written)(struct axis2_msg_ctx *msg_ctx, 
+   get_output_written)(struct axis2_msg_ctx *msg_ctx, 
                         const axis2_env_t *env);
     
     /**
      * @param b
      */
     axis2_status_t (AXIS2_CALL *
-	set_output_written)(struct axis2_msg_ctx *msg_ctx, 
+   set_output_written)(struct axis2_msg_ctx *msg_ctx, 
                         const axis2_env_t *env,
                         axis2_bool_t output_written);
     
@@ -403,33 +403,33 @@
      * @return Returns the svc_ctx_id.
      */
     axis2_char_t* (AXIS2_CALL *
-	get_svc_ctx_id)(struct axis2_msg_ctx *msg_ctx, 
+   get_svc_ctx_id)(struct axis2_msg_ctx *msg_ctx, 
                     const axis2_env_t *env);
     
     /**
      * @param svc_ctx_id The svc_ctx_id to AXIS2_CALL set.
      */
     axis2_status_t (AXIS2_CALL *
-	set_svc_ctx_id)(struct axis2_msg_ctx *msg_ctx, 
+   set_svc_ctx_id)(struct axis2_msg_ctx *msg_ctx, 
                     const axis2_env_t *env,
                     axis2_char_t *svc_ctx_id);
     
     struct axis2_conf_ctx* (AXIS2_CALL *
-	get_conf_ctx)(struct axis2_msg_ctx *msg_ctx, 
+   get_conf_ctx)(struct axis2_msg_ctx *msg_ctx, 
                   const axis2_env_t *env);
     
     /**
      * @return
      */
     struct axis2_svc_ctx* (AXIS2_CALL *
-	get_svc_ctx)(struct axis2_msg_ctx *msg_ctx, 
+   get_svc_ctx)(struct axis2_msg_ctx *msg_ctx, 
                  const axis2_env_t *env);
     
     /**
      * @param context
      */
     axis2_status_t (AXIS2_CALL *
-	set_conf_ctx)(struct axis2_msg_ctx *msg_ctx, 
+   set_conf_ctx)(struct axis2_msg_ctx *msg_ctx, 
                   const axis2_env_t *env,
                   struct axis2_conf_ctx *conf_ctx);
     
@@ -437,7 +437,7 @@
      * @param context
      */
     axis2_status_t (AXIS2_CALL *
-	set_svc_ctx)(struct axis2_msg_ctx *msg_ctx, 
+   set_svc_ctx)(struct axis2_msg_ctx *msg_ctx, 
                  const axis2_env_t *env, 
                  struct axis2_svc_ctx *svc_ctx);
     
@@ -445,7 +445,7 @@
      * @param collection
      */
     axis2_status_t (AXIS2_CALL *
-	set_msg_info_headers)(struct axis2_msg_ctx *msg_ctx, 
+   set_msg_info_headers)(struct axis2_msg_ctx *msg_ctx, 
                           const axis2_env_t *env, 
                           axis2_msg_info_headers_t *msg_info_headers);
                                                 
@@ -462,9 +462,9 @@
      * @return Paramter <code>Paramter</code>
      */
     axis2_param_t* (AXIS2_CALL *
-	get_parameter)(struct axis2_msg_ctx *msg_ctx, 
+   get_parameter)(struct axis2_msg_ctx *msg_ctx, 
                    const axis2_env_t *env, 
-	               axis2_char_t *key);
+                  axis2_char_t *key);
     
     /**
      * This method is to retrive both module configuration parameters and othere paramerts
@@ -489,11 +489,11 @@
      * @return axis2_param_t *<code>Parameter</code>
      */
     axis2_param_t* (AXIS2_CALL *
-	get_module_parameter)(struct axis2_msg_ctx *msg_ctx, 
-							const axis2_env_t *env, 
-							axis2_char_t *key, 
-							axis2_char_t *module_name, 
-							axis2_handler_desc_t *handler_desc);
+   get_module_parameter)(struct axis2_msg_ctx *msg_ctx, 
+                     const axis2_env_t *env, 
+                     axis2_char_t *key, 
+                     axis2_char_t *module_name, 
+                     axis2_handler_desc_t *handler_desc);
 
     /**
      * To acess any property AXIS2_CALL set at the run time , a handler can add property to wherever he wants
@@ -505,36 +505,36 @@
      * @return Object
      */
     axis2_property_t* (AXIS2_CALL *
-	get_property)(struct axis2_msg_ctx *msg_ctx, 
-  				  const axis2_env_t *env, 
-				  axis2_char_t *key, 
-				  axis2_bool_t persistent);
+   get_property)(struct axis2_msg_ctx *msg_ctx, 
+                const axis2_env_t *env, 
+              axis2_char_t *key, 
+              axis2_bool_t persistent);
 
     axis2_status_t (AXIS2_CALL *
-	set_property)(struct axis2_msg_ctx *msg_ctx, 
-					const axis2_env_t *env, 
-					axis2_char_t *key, 
-					axis2_property_t *value,
-					axis2_bool_t persistent);
+   set_property)(struct axis2_msg_ctx *msg_ctx, 
+               const axis2_env_t *env, 
+               axis2_char_t *key, 
+               axis2_property_t *value,
+               axis2_bool_t persistent);
     /**
      * @return
      */
     axis2_qname_t* (AXIS2_CALL *
-	get_paused_handler_name)(struct axis2_msg_ctx *msg_ctx, 
+   get_paused_handler_name)(struct axis2_msg_ctx *msg_ctx, 
                              const axis2_env_t *env);
     
     /**
      * @return
      */
     axis2_char_t* (AXIS2_CALL *
-	get_paused_phase_name)(struct axis2_msg_ctx *msg_ctx, 
+   get_paused_phase_name)(struct axis2_msg_ctx *msg_ctx, 
                            const axis2_env_t *env);
     
     /**
      * @param name
      */
     axis2_status_t (AXIS2_CALL *
-	set_paused_phase_name)(struct axis2_msg_ctx *msg_ctx, 
+   set_paused_phase_name)(struct axis2_msg_ctx *msg_ctx, 
                            const axis2_env_t *env, 
                            axis2_char_t *paused_phase_name);
     
@@ -542,14 +542,14 @@
      * @return
      */
     axis2_char_t* (AXIS2_CALL *
-	get_soap_action)(struct axis2_msg_ctx *msg_ctx, 
+   get_soap_action)(struct axis2_msg_ctx *msg_ctx, 
                      const axis2_env_t *env);
     
     /**
      * @param string
      */
     axis2_status_t (AXIS2_CALL *
-	set_soap_action)(struct axis2_msg_ctx *msg_ctx, 
+   set_soap_action)(struct axis2_msg_ctx *msg_ctx, 
                      const axis2_env_t *env,
                      axis2_char_t *soap_action);
     
@@ -557,14 +557,14 @@
      * @return
      */
     axis2_bool_t (AXIS2_CALL *
-	get_doing_mtom)(struct axis2_msg_ctx *msg_ctx, 
+   get_doing_mtom)(struct axis2_msg_ctx *msg_ctx, 
                     const axis2_env_t *env);
     
     /**
      * @param b
      */
     axis2_status_t (AXIS2_CALL *
-	set_doing_mtom)(struct axis2_msg_ctx *msg_ctx, 
+   set_doing_mtom)(struct axis2_msg_ctx *msg_ctx, 
                     const axis2_env_t *env,
                     axis2_bool_t doing_mtom);
     
@@ -572,29 +572,29 @@
      * @return
      */
     axis2_bool_t (AXIS2_CALL *
-	get_doing_rest)(struct axis2_msg_ctx *msg_ctx, 
+   get_doing_rest)(struct axis2_msg_ctx *msg_ctx, 
                     const axis2_env_t *env);
     
     /**
      * @param b
      */
     axis2_status_t (AXIS2_CALL *
-	set_doing_rest)(struct axis2_msg_ctx *msg_ctx, 
+   set_doing_rest)(struct axis2_msg_ctx *msg_ctx, 
                     const axis2_env_t *env, 
-	                axis2_bool_t doing_rest);
+                   axis2_bool_t doing_rest);
     
     axis2_status_t (AXIS2_CALL *
-	set_do_rest_through_post)(struct axis2_msg_ctx *msg_ctx, 
+   set_do_rest_through_post)(struct axis2_msg_ctx *msg_ctx, 
                               const axis2_env_t *env, 
                               axis2_bool_t do_rest_through_post);
-	
+   
     
     axis2_bool_t (AXIS2_CALL *
-	get_do_rest_through_post)(struct axis2_msg_ctx *msg_ctx, 
+   get_do_rest_through_post)(struct axis2_msg_ctx *msg_ctx, 
                               const axis2_env_t *env);
     
     axis2_bool_t (AXIS2_CALL *
-	get_is_soap_11)(struct axis2_msg_ctx *msg_ctx, 
+   get_is_soap_11)(struct axis2_msg_ctx *msg_ctx, 
                     const axis2_env_t *env);
     
     axis2_status_t (AXIS2_CALL *
@@ -603,53 +603,53 @@
                                 axis2_bool_t is_soap11);
 
     struct axis2_svc_grp_ctx* (AXIS2_CALL *
-	get_svc_grp_ctx)(struct axis2_msg_ctx *msg_ctx, 
+   get_svc_grp_ctx)(struct axis2_msg_ctx *msg_ctx, 
                      const axis2_env_t *env);
     
     axis2_status_t (AXIS2_CALL *
-	set_svc_grp_ctx)(struct axis2_msg_ctx *msg_ctx, 
+   set_svc_grp_ctx)(struct axis2_msg_ctx *msg_ctx, 
                      const axis2_env_t *env, 
                      struct axis2_svc_grp_ctx *svc_grp_ctx);
     
     
     struct axis2_op* (AXIS2_CALL *
-	get_op)(struct axis2_msg_ctx *msg_ctx, 
+   get_op)(struct axis2_msg_ctx *msg_ctx, 
             const axis2_env_t *env);
     
-	
+   
     axis2_status_t (AXIS2_CALL *
-	set_op)(struct axis2_msg_ctx *msg_ctx, 
+   set_op)(struct axis2_msg_ctx *msg_ctx, 
             const axis2_env_t *env, 
             struct axis2_op *op);
-				
+            
     
     struct axis2_svc* (AXIS2_CALL *
-	get_svc)(struct axis2_msg_ctx *msg_ctx, 
+   get_svc)(struct axis2_msg_ctx *msg_ctx, 
              const axis2_env_t *env);
     
-	
+   
     axis2_status_t (AXIS2_CALL *
-	set_svc)(struct axis2_msg_ctx *msg_ctx, 
+   set_svc)(struct axis2_msg_ctx *msg_ctx, 
              const axis2_env_t *env, 
-			 struct axis2_svc *svc);
-				 
+          struct axis2_svc *svc);
+             
     
     struct axis2_svc_grp* (AXIS2_CALL *
-	get_svc_grp)(struct axis2_msg_ctx *msg_ctx, 
+   get_svc_grp)(struct axis2_msg_ctx *msg_ctx, 
                  const axis2_env_t *env);
     
     axis2_status_t (AXIS2_CALL *
-	set_svc_grp)(struct axis2_msg_ctx *msg_ctx, 
+   set_svc_grp)(struct axis2_msg_ctx *msg_ctx, 
                  const axis2_env_t *env, 
                  struct axis2_svc_grp *svc_grp);
     
-				 
+             
     axis2_char_t* (AXIS2_CALL *
-	get_svc_grp_ctx_id)(struct axis2_msg_ctx *msg_ctx, 
+   get_svc_grp_ctx_id)(struct axis2_msg_ctx *msg_ctx, 
                         const axis2_env_t *env);
     
     axis2_status_t (AXIS2_CALL *
-	set_svc_grp_ctx_id)(struct axis2_msg_ctx *msg_ctx, 
+   set_svc_grp_ctx_id)(struct axis2_msg_ctx *msg_ctx, 
                         const axis2_env_t *env,
                         axis2_char_t *svc_grp_ctx_id);
 
@@ -660,7 +660,7 @@
     * @return
     */
     struct axis2_svc* (AXIS2_CALL *
-	find_svc)(axis2_msg_ctx_t *msg_ctx, 
+   find_svc)(axis2_msg_ctx_t *msg_ctx, 
               const axis2_env_t *env);
     /**
     * finds the op
@@ -670,7 +670,7 @@
     * @return
     */
     struct axis2_op* (AXIS2_CALL *
-	find_op)(axis2_msg_ctx_t *msg_ctx,
+   find_op)(axis2_msg_ctx_t *msg_ctx,
              const axis2_env_t *env,
              struct axis2_svc *svc);
 
@@ -678,11 +678,11 @@
      * @return
      */
     axis2_bool_t (AXIS2_CALL *
-	is_paused) (axis2_msg_ctx_t *msg_ctx,
+   is_paused) (axis2_msg_ctx_t *msg_ctx,
                 const axis2_env_t *env);
              
     axis2_status_t (AXIS2_CALL *
-	set_options )(
+   set_options )(
         axis2_msg_ctx_t *msg_ctx,
         const axis2_env_t *env,
         struct axis2_options *options);
@@ -690,7 +690,7 @@
 
 /** 
  * @brief Message Context struct
-  *	Axis2 Message Context
+  *   Axis2 Message Context
  */
 struct axis2_msg_ctx
 {
@@ -708,253 +708,253 @@
 
 
 #define AXIS2_MSG_CTX_GET_BASE(msg_ctx, env) \
-		((msg_ctx)->ops->get_base(msg_ctx, env))
-						
+      ((msg_ctx)->ops->get_base(msg_ctx, env))
+                  
 #define AXIS2_MSG_CTX_GET_PARENT(msg_ctx, env) \
-		((msg_ctx)->ops->get_parent(msg_ctx, env))
-						
+      ((msg_ctx)->ops->get_parent(msg_ctx, env))
+                  
 #define AXIS2_MSG_CTX_SET_PARENT(msg_ctx, env, parent) \
-		((msg_ctx)->ops->get_parent(msg_ctx, env, parent))
+      ((msg_ctx)->ops->get_parent(msg_ctx, env, parent))
         
 #define AXIS2_MSG_CTX_FREE(msg_ctx, env) \
-		((msg_ctx)->ops->free(msg_ctx, env))
-						
+      ((msg_ctx)->ops->free(msg_ctx, env))
+                  
 #define AXIS2_MSG_CTX_INIT(msg_ctx, env, conf) \
-		((msg_ctx)->ops->init(msg_ctx, env, conf))
+      ((msg_ctx)->ops->init(msg_ctx, env, conf))
 
 #define AXIS2_MSG_CTX_GET_FAULT_TO(msg_ctx, env) \
-		((msg_ctx)->ops->get_fault_to(msg_ctx, env))
-		
+      ((msg_ctx)->ops->get_fault_to(msg_ctx, env))
+      
 #define AXIS2_MSG_CTX_GET_FROM(msg_ctx, env) \
-		((msg_ctx)->ops->get_from(msg_ctx, env))
+      ((msg_ctx)->ops->get_from(msg_ctx, env))
         
 #define AXIS2_MSG_CTX_GET_IN_FAULT_FLOW(msg_ctx, env) \
-		((msg_ctx)->ops->get_in_fault_flow(msg_ctx, env))
-		
+      ((msg_ctx)->ops->get_in_fault_flow(msg_ctx, env))
+      
 #define AXIS2_MSG_CTX_GET_SOAP_ENVELOPE(msg_ctx, env) \
-		((msg_ctx)->ops->get_soap_envelope(msg_ctx, env))
-		
+      ((msg_ctx)->ops->get_soap_envelope(msg_ctx, env))
+      
 #define AXIS2_MSG_CTX_GET_FAULT_SOAP_ENVELOPE(msg_ctx, env) \
-		((msg_ctx)->ops->get_fault_soap_envelope(msg_ctx, env))
-		
+      ((msg_ctx)->ops->get_fault_soap_envelope(msg_ctx, env))
+      
 #define AXIS2_MSG_CTX_GET_MSG_ID(msg_ctx, env) \
-		((msg_ctx)->ops->get_msg_id(msg_ctx, env))
-		
+      ((msg_ctx)->ops->get_msg_id(msg_ctx, env))
+      
 #define AXIS2_MSG_CTX_GET_PROCESS_FAULT(msg_ctx, env) \
-		((msg_ctx)->ops->get_process_fault(msg_ctx, env))
-		
+      ((msg_ctx)->ops->get_process_fault(msg_ctx, env))
+      
 #define AXIS2_MSG_CTX_GET_RELATES_TO(msg_ctx, env) \
-		((msg_ctx)->ops->get_relates_to(msg_ctx, env))
-		
+      ((msg_ctx)->ops->get_relates_to(msg_ctx, env))
+      
 #define AXIS2_MSG_CTX_GET_REPLY_TO(msg_ctx, env) \
-		((msg_ctx)->ops->get_reply_to(msg_ctx, env))
-		
+      ((msg_ctx)->ops->get_reply_to(msg_ctx, env))
+      
 #define AXIS2_MSG_CTX_GET_RESPONSE_WRITTEN(msg_ctx, env) \
-		((msg_ctx)->ops->get_response_written(msg_ctx, env))
-		
+      ((msg_ctx)->ops->get_response_written(msg_ctx, env))
+      
 #define AXIS2_MSG_CTX_GET_SERVER_SIDE(msg_ctx, env) \
-		((msg_ctx)->ops->get_server_side(msg_ctx, env))
-		
+      ((msg_ctx)->ops->get_server_side(msg_ctx, env))
+      
 #define AXIS2_MSG_CTX_GET_TO(msg_ctx, env) \
-		((msg_ctx)->ops->get_to(msg_ctx, env))
-		
+      ((msg_ctx)->ops->get_to(msg_ctx, env))
+      
 #define AXIS2_MSG_CTX_SET_FAULT_TO(msg_ctx, env, reference) \
-		((msg_ctx)->ops->set_fault_to(msg_ctx, env, reference))
-		
+      ((msg_ctx)->ops->set_fault_to(msg_ctx, env, reference))
+      
 #define AXIS2_MSG_CTX_SET_FROM(msg_ctx, env, reference) \
-		((msg_ctx)->ops->set_from(msg_ctx, env, reference))
-		
+      ((msg_ctx)->ops->set_from(msg_ctx, env, reference))
+      
 #define AXIS2_MSG_CTX_SET_IN_FAULT_FLOW(msg_ctx, env, in_fault_flow) \
-		((msg_ctx)->ops->get_in_fault_flow(msg_ctx, env, in_fault_flow))
-		
+      ((msg_ctx)->ops->get_in_fault_flow(msg_ctx, env, in_fault_flow))
+      
 #define AXIS2_MSG_CTX_SET_SOAP_ENVELOPE(msg_ctx, env, soap_envelope) \
-		((msg_ctx)->ops->set_soap_envelope(msg_ctx, env, soap_envelope))
-		
+      ((msg_ctx)->ops->set_soap_envelope(msg_ctx, env, soap_envelope))
+      
 #define AXIS2_MSG_CTX_SET_FAULT_SOAP_ENVELOPE(msg_ctx, env, soap_envelope) \
-		((msg_ctx)->ops->set_fault_soap_envelope(msg_ctx, env, soap_envelope))
-		
+      ((msg_ctx)->ops->set_fault_soap_envelope(msg_ctx, env, soap_envelope))
+      
 #define AXIS2_MSG_CTX_SET_MESSAGE_ID(msg_ctx, env, message_id) \
-		((msg_ctx)->ops->set_message_id(msg_ctx, env, message_id))
-		
+      ((msg_ctx)->ops->set_message_id(msg_ctx, env, message_id))
+      
 #define AXIS2_MSG_CTX_SET_PROCESS_FAULT(msg_ctx, env, process_fault) \
-		((msg_ctx)->ops->set_process_fault(msg_ctx, env, process_fault))
-		
+      ((msg_ctx)->ops->set_process_fault(msg_ctx, env, process_fault))
+      
 #define AXIS2_MSG_CTX_SET_RELATES_TO(msg_ctx, env, reference) \
-		((msg_ctx)->ops->set_relates_to(msg_ctx, env, reference))
-		
+      ((msg_ctx)->ops->set_relates_to(msg_ctx, env, reference))
+      
 #define AXIS2_MSG_CTX_SET_REPLY_TO(msg_ctx, env, reference) \
-		((msg_ctx)->ops->set_reply_to(msg_ctx, env, reference))
-		
+      ((msg_ctx)->ops->set_reply_to(msg_ctx, env, reference))
+      
 #define AXIS2_MSG_CTX_SET_RESPONSE_WRITTEN(msg_ctx, env, response_written) \
-		((msg_ctx)->ops->set_response_written(msg_ctx, env, response_written))
-		
+      ((msg_ctx)->ops->set_response_written(msg_ctx, env, response_written))
+      
 #define AXIS2_MSG_CTX_SET_SERVER_SIDE(msg_ctx, env, server_side) \
-		((msg_ctx)->ops->set_server_side(msg_ctx, env, server_side))
-		
+      ((msg_ctx)->ops->set_server_side(msg_ctx, env, server_side))
+      
 #define AXIS2_MSG_CTX_SET_TO(msg_ctx, env, reference) \
-		((msg_ctx)->ops->set_to(msg_ctx, env, reference))
-		
+      ((msg_ctx)->ops->set_to(msg_ctx, env, reference))
+      
 #define AXIS2_MSG_CTX_GET_NEW_THREAD_REQUIRED(msg_ctx, env) \
-		((msg_ctx)->ops->set_response_written(msg_ctx, env))
-		
+      ((msg_ctx)->ops->set_response_written(msg_ctx, env))
+      
 #define AXIS2_MSG_CTX_SET_NEW_THREAD_REQUIRED(msg_ctx, env, new_thread_required) \
-		((msg_ctx)->ops->set_response_written(msg_ctx, env, new_thread_required))
-		
+      ((msg_ctx)->ops->set_response_written(msg_ctx, env, new_thread_required))
+      
 #define AXIS2_MSG_CTX_SET_WSA_ACTION(msg_ctx, env, action_uri) \
-		((msg_ctx)->ops->set_wsa_action(msg_ctx, env, action_uri))
-		
+      ((msg_ctx)->ops->set_wsa_action(msg_ctx, env, action_uri))
+      
 #define AXIS2_MSG_CTX_GET_WSA_ACTION(msg_ctx, env) \
-		((msg_ctx)->ops->get_wsa_action(msg_ctx, env))
-		
+      ((msg_ctx)->ops->get_wsa_action(msg_ctx, env))
+      
 #define AXIS2_MSG_CTX_SET_WSA_MESSAGE_ID(msg_ctx, env, message_id) \
-		((msg_ctx)->ops->set_wsa_message_id(msg_ctx, env, message_id))
-		
+      ((msg_ctx)->ops->set_wsa_message_id(msg_ctx, env, message_id))
+      
 #define AXIS2_MSG_CTX_GET_WSA_MESSAGE_ID(msg_ctx, env) \
-		((msg_ctx)->ops->get_wsa_message_id(msg_ctx, env))
-		
+      ((msg_ctx)->ops->get_wsa_message_id(msg_ctx, env))
+      
 #define AXIS2_MSG_CTX_GET_MSG_INFO_HEADERS(msg_ctx, env) \
-		((msg_ctx)->ops->get_msg_info_headers(msg_ctx, env))
-		
+      ((msg_ctx)->ops->get_msg_info_headers(msg_ctx, env))
+      
 #define AXIS2_MSG_CTX_GET_PAUSED(msg_ctx, env) \
-		((msg_ctx)->ops->get_paused(msg_ctx, env))
-		
+      ((msg_ctx)->ops->get_paused(msg_ctx, env))
+      
 #define AXIS2_MSG_CTX_SET_PAUSED(msg_ctx, env, paused) \
-		((msg_ctx)->ops->set_paused(msg_ctx, env, paused))
-		
+      ((msg_ctx)->ops->set_paused(msg_ctx, env, paused))
+      
 #define AXIS2_MSG_CTX_GET_TRANSPORT_IN_DESC(msg_ctx, env) \
-		((msg_ctx)->ops->get_transport_in_desc(msg_ctx, env))
-		
+      ((msg_ctx)->ops->get_transport_in_desc(msg_ctx, env))
+      
 #define AXIS2_MSG_CTX_GET_TRANSPORT_OUT_DESC(msg_ctx, env) \
-		((msg_ctx)->ops->get_transport_out_desc(msg_ctx, env))
-		
+      ((msg_ctx)->ops->get_transport_out_desc(msg_ctx, env))
+      
 #define AXIS2_MSG_CTX_SET_TRANSPORT_IN_DESC(msg_ctx, env, transport_in_desc) \
-		((msg_ctx)->ops->set_transport_in_desc(msg_ctx, env, transport_in_desc))
-		
+      ((msg_ctx)->ops->set_transport_in_desc(msg_ctx, env, transport_in_desc))
+      
 #define AXIS2_MSG_CTX_SET_TRANSPORT_OUT_DESC(msg_ctx, env, transport_out_desc) \
-		((msg_ctx)->ops->set_transport_out_desc(msg_ctx, env, transport_out_desc))
-		
+      ((msg_ctx)->ops->set_transport_out_desc(msg_ctx, env, transport_out_desc))
+      
 #define AXIS2_MSG_CTX_GET_OP_CTX(msg_ctx, env) \
-		((msg_ctx)->ops->get_op_ctx(msg_ctx, env))
-		
+      ((msg_ctx)->ops->get_op_ctx(msg_ctx, env))
+      
 #define AXIS2_MSG_CTX_SET_OP_CTX(msg_ctx, env, op_ctx) \
-		((msg_ctx)->ops->set_op_ctx(msg_ctx, env, op_ctx))
-		
+      ((msg_ctx)->ops->set_op_ctx(msg_ctx, env, op_ctx))
+      
 #define AXIS2_MSG_CTX_GET_OUTPUT_WRITTEN(msg_ctx, env) \
-		((msg_ctx)->ops->get_output_written(msg_ctx, env))
-		
+      ((msg_ctx)->ops->get_output_written(msg_ctx, env))
+      
 #define AXIS2_MSG_CTX_SET_OUTPUT_WRITTEN(msg_ctx, env, output_written) \
-		((msg_ctx)->ops->set_output_written(msg_ctx, env, output_written))
-		
+      ((msg_ctx)->ops->set_output_written(msg_ctx, env, output_written))
+      
 #define AXIS2_MSG_CTX_GET_SVC_CTX_ID(msg_ctx, env) \
-		((msg_ctx)->ops->get_svc_ctx_id(msg_ctx, env))
-		
+      ((msg_ctx)->ops->get_svc_ctx_id(msg_ctx, env))
+      
 #define AXIS2_MSG_CTX_SET_SVC_CTX_ID(msg_ctx, env, svc_ctx_id) \
-		((msg_ctx)->ops->set_svc_ctx_id(msg_ctx, env, svc_ctx_id))
-		
+      ((msg_ctx)->ops->set_svc_ctx_id(msg_ctx, env, svc_ctx_id))
+      
 #define AXIS2_MSG_CTX_GET_CONF_CTX(msg_ctx, env) \
-		((msg_ctx)->ops->get_conf_ctx(msg_ctx, env))
-		
+      ((msg_ctx)->ops->get_conf_ctx(msg_ctx, env))
+      
 #define AXIS2_MSG_CTX_SET_CONF_CTX(msg_ctx, env, conf_ctx) \
-		((msg_ctx)->ops->set_conf_ctx(msg_ctx, env, conf_ctx))
-		
+      ((msg_ctx)->ops->set_conf_ctx(msg_ctx, env, conf_ctx))
+      
 #define AXIS2_MSG_CTX_GET_SVC_CTX(msg_ctx, env) \
-		((msg_ctx)->ops->get_svc_ctx(msg_ctx, env))
-		
+      ((msg_ctx)->ops->get_svc_ctx(msg_ctx, env))
+      
 #define AXIS2_MSG_CTX_SET_SVC_CTX(msg_ctx, env, svc_ctx) \
-		((msg_ctx)->ops->set_svc_ctx(msg_ctx, env, svc_ctx))
-		
+      ((msg_ctx)->ops->set_svc_ctx(msg_ctx, env, svc_ctx))
+      
 #define AXIS2_MSG_CTX_SET_MSG_INFO_HEADERS(msg_ctx, env, msg_info_headers) \
-		((msg_ctx)->ops->set_msg_info_headers(msg_ctx, env, msg_info_headers))
-		
+      ((msg_ctx)->ops->set_msg_info_headers(msg_ctx, env, msg_info_headers))
+      
 #define AXIS2_MSG_CTX_GET_PARAMETER(msg_ctx, env, key) \
-		((msg_ctx)->ops->get_parameter(msg_ctx, env, key))
-		
+      ((msg_ctx)->ops->get_parameter(msg_ctx, env, key))
+      
 #define AXIS2_MSG_CTX_GET_MODULE_PARAMETER(msg_ctx, env, key, module_name, handler_desc) \
-		((msg_ctx)->ops->get_module_parameter(msg_ctx, env, key, module_name, handler_desc))
-		
+      ((msg_ctx)->ops->get_module_parameter(msg_ctx, env, key, module_name, handler_desc))
+      
 #define AXIS2_MSG_CTX_GET_PROPERTY(msg_ctx, env, key, persistent) \
-		((msg_ctx)->ops->get_property(msg_ctx, env, key, persistent))
-		
+      ((msg_ctx)->ops->get_property(msg_ctx, env, key, persistent))
+      
 #define AXIS2_MSG_CTX_SET_PROPERTY(msg_ctx, env, key, value, persistent) \
-		((msg_ctx)->ops->set_property(msg_ctx, env, key, value, persistent))
-		
+      ((msg_ctx)->ops->set_property(msg_ctx, env, key, value, persistent))
+      
 #define AXIS2_MSG_CTX_GET_PAUSED_HANDLER_NAME(msg_ctx, env) \
-		((msg_ctx)->ops->get_paused_handler_name(msg_ctx, env))
-		
+      ((msg_ctx)->ops->get_paused_handler_name(msg_ctx, env))
+      
 #define AXIS2_MSG_CTX_GET_PAUSED_PHASE_NAME(msg_ctx, env) \
-		((msg_ctx)->ops->get_paused_phase_name(msg_ctx, env))
-		
+      ((msg_ctx)->ops->get_paused_phase_name(msg_ctx, env))
+      
 #define AXIS2_MSG_CTX_SET_PAUSED_PHASE_NAME(msg_ctx, env, paused_phase_name) \
-		((msg_ctx)->ops->set_paused_phase_name(msg_ctx, env, paused_phase_name))
-		
+      ((msg_ctx)->ops->set_paused_phase_name(msg_ctx, env, paused_phase_name))
+      
 #define AXIS2_MSG_CTX_GET_SOAP_ACTION(msg_ctx, env) \
-		((msg_ctx)->ops->get_soap_action(msg_ctx, env))
-		
+      ((msg_ctx)->ops->get_soap_action(msg_ctx, env))
+      
 #define AXIS2_MSG_CTX_SET_SOAP_ACTION(msg_ctx, env, soap_action) \
-		((msg_ctx)->ops->set_soap_action(msg_ctx, env, soap_action))
-		
+      ((msg_ctx)->ops->set_soap_action(msg_ctx, env, soap_action))
+      
 #define AXIS2_MSG_CTX_GET_DOING_MTOM(msg_ctx, env) \
-		((msg_ctx)->ops->get_doing_mtom(msg_ctx, env))
-		
+      ((msg_ctx)->ops->get_doing_mtom(msg_ctx, env))
+      
 #define AXIS2_MSG_CTX_SET_DOING_MTOM(msg_ctx, env, doing_mtom) \
-		((msg_ctx)->ops->set_doing_mtom(msg_ctx, env, doing_mtom))
-		
+      ((msg_ctx)->ops->set_doing_mtom(msg_ctx, env, doing_mtom))
+      
 #define AXIS2_MSG_CTX_GET_DOING_REST(msg_ctx, env) \
-		((msg_ctx)->ops->get_doing_rest(msg_ctx, env))
-		
+      ((msg_ctx)->ops->get_doing_rest(msg_ctx, env))
+      
 #define AXIS2_MSG_CTX_SET_DOING_REST(msg_ctx, env, doing_rest) \
-		((msg_ctx)->ops->set_doing_rest(msg_ctx, env, doing_rest))
-		
+      ((msg_ctx)->ops->set_doing_rest(msg_ctx, env, doing_rest))
+      
 #define AXIS2_MSG_CTX_SET_DO_REST_THROUGH_POST(msg_ctx, env, do_rest_through_post) \
-		((msg_ctx)->ops->set_do_rest_through_post(msg_ctx, env, do_rest_through_post))
-		
+      ((msg_ctx)->ops->set_do_rest_through_post(msg_ctx, env, do_rest_through_post))
+      
 #define AXIS2_MSG_CTX_GET_IS_SOAP_11(msg_ctx, env) \
-		((msg_ctx)->ops->get_is_soap_11(msg_ctx, env))
-		
+      ((msg_ctx)->ops->get_is_soap_11(msg_ctx, env))
+      
 #define AXIS2_MSG_CTX_SET_IS_SOAP_11(msg_ctx, env, is_soap11) \
-		((msg_ctx)->ops->set_is_soap_11(msg_ctx, env, is_soap11))
-		
+      ((msg_ctx)->ops->set_is_soap_11(msg_ctx, env, is_soap11))
+      
 #define AXIS2_MSG_CTX_GET_SVC_GRP_CTX(msg_ctx, env) \
-		((msg_ctx)->ops->get_svc_grp_ctx(msg_ctx, env))
-		
+      ((msg_ctx)->ops->get_svc_grp_ctx(msg_ctx, env))
+      
 #define AXIS2_MSG_CTX_SET_SVC_GRP_CTX(msg_ctx, env, svc_grp_ctx) \
-		((msg_ctx)->ops->set_svc_grp_ctx(msg_ctx, env, svc_grp_ctx))
-		
+      ((msg_ctx)->ops->set_svc_grp_ctx(msg_ctx, env, svc_grp_ctx))
+      
 #define AXIS2_MSG_CTX_GET_OP(msg_ctx, env) \
-		((msg_ctx)->ops->get_op(msg_ctx, env))
-		
+      ((msg_ctx)->ops->get_op(msg_ctx, env))
+      
 #define AXIS2_MSG_CTX_SET_OP(msg_ctx, env, op) \
-		((msg_ctx)->ops->set_op(msg_ctx, env, op))
-		
+      ((msg_ctx)->ops->set_op(msg_ctx, env, op))
+      
 #define AXIS2_MSG_CTX_GET_SVC(msg_ctx, env) \
-		((msg_ctx)->ops->get_svc(msg_ctx, env))
-		
+      ((msg_ctx)->ops->get_svc(msg_ctx, env))
+      
 #define AXIS2_MSG_CTX_SET_SVC(msg_ctx, env, svc) \
-		((msg_ctx)->ops->set_svc(msg_ctx, env, svc))
-		
+      ((msg_ctx)->ops->set_svc(msg_ctx, env, svc))
+      
 #define AXIS2_MSG_CTX_GET_SVC_GRP(msg_ctx, env) \
-		((msg_ctx)->ops->get_svc_grp(msg_ctx, env))
-		
+      ((msg_ctx)->ops->get_svc_grp(msg_ctx, env))
+      
 #define AXIS2_MSG_CTX_SET_SVC_GRP(msg_ctx, env, svc_grp) \
-		((msg_ctx)->ops->set_svc_grp(msg_ctx, env, svc_grp))
-		
+      ((msg_ctx)->ops->set_svc_grp(msg_ctx, env, svc_grp))
+      
 #define AXIS2_MSG_CTX_GET_SVC_GRP_CTX_ID(msg_ctx, env) \
-		((msg_ctx)->ops->get_svc_grp_ctx_id(msg_ctx, env))
-		
+      ((msg_ctx)->ops->get_svc_grp_ctx_id(msg_ctx, env))
+      
 #define AXIS2_MSG_CTX_SET_SVC_GRP_CTX_ID(msg_ctx, env, svc_grp_ctx_id) \
-		((msg_ctx)->ops->set_svc_grp_ctx_id(msg_ctx, env, svc_grp_ctx_id))
-		
+      ((msg_ctx)->ops->set_svc_grp_ctx_id(msg_ctx, env, svc_grp_ctx_id))
+      
 #define AXIS2_MSG_CTX_IS_PAUSED(msg_ctx, env) \
-		((msg_ctx)->ops->is_paused(msg_ctx, env))
-		
+      ((msg_ctx)->ops->is_paused(msg_ctx, env))
+      
 #define AXIS2_MSG_CTX_FIND_SVC(msg_ctx, env) \
-		((msg_ctx)->ops->find_svc(msg_ctx, env))
-		
+      ((msg_ctx)->ops->find_svc(msg_ctx, env))
+      
 #define AXIS2_MSG_CTX_FIND_OP(msg_ctx, env, svc) \
-		((msg_ctx)->ops->find_op(msg_ctx, env, svc))
-		
+      ((msg_ctx)->ops->find_op(msg_ctx, env, svc))
+      
 #define AXIS2_MSG_CTX_SET_OPTIONS(msg_ctx, env, options) \
-		((msg_ctx)->ops->set_options(msg_ctx, env, options))
+      ((msg_ctx)->ops->set_options(msg_ctx, env, options))
 
 /************************** End of function macros ****************************/    
 

Modified: webservices/axis2/trunk/c/include/axis2_msg_info_headers.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/include/axis2_msg_info_headers.h?rev=411506&r1=411505&r2=411506&view=diff
==============================================================================
--- webservices/axis2/trunk/c/include/axis2_msg_info_headers.h (original)
+++ webservices/axis2/trunk/c/include/axis2_msg_info_headers.h Sat Jun  3 20:09:08 2006
@@ -57,7 +57,7 @@
          * @return
          */
         axis2_endpoint_ref_t* (AXIS2_CALL *
-		get_to)(struct axis2_msg_info_headers *msg_info_headers, 
+      get_to)(struct axis2_msg_info_headers *msg_info_headers, 
                 const axis2_env_t *env); 
         /**
          * Method set_to
@@ -65,16 +65,16 @@
          * @param to
          */
         axis2_status_t (AXIS2_CALL *
-		set_to)(struct axis2_msg_info_headers *msg_info_headers, 
+      set_to)(struct axis2_msg_info_headers *msg_info_headers, 
                 const axis2_env_t *env, 
-		        axis2_endpoint_ref_t *to);
+              axis2_endpoint_ref_t *to);
         /**
          * Method getFrom
          *
          * @return
          */
         axis2_endpoint_ref_t* (AXIS2_CALL *
-		get_from)(struct axis2_msg_info_headers *msg_info_headers, 
+      get_from)(struct axis2_msg_info_headers *msg_info_headers, 
                   const axis2_env_t *env);
         /**
          * Method set_from
@@ -82,9 +82,9 @@
          * @param from
          */
         axis2_status_t (AXIS2_CALL *
-		set_from)(struct axis2_msg_info_headers *msg_info_headers, 
+      set_from)(struct axis2_msg_info_headers *msg_info_headers, 
                   const axis2_env_t *env, 
-				  axis2_endpoint_ref_t *from);
+              axis2_endpoint_ref_t *from);
         
         /**
          * Method get_reply_to
@@ -92,7 +92,7 @@
          * @return
          */
         axis2_endpoint_ref_t* (AXIS2_CALL *
-		get_reply_to)(struct axis2_msg_info_headers *msg_info_headers, 
+      get_reply_to)(struct axis2_msg_info_headers *msg_info_headers, 
                       const axis2_env_t *env);
         /**
          * Method set_reply_to
@@ -100,9 +100,9 @@
          * @param reply_to
          */
         axis2_status_t (AXIS2_CALL *
-		set_reply_to)(struct axis2_msg_info_headers *msg_info_headers, 
+      set_reply_to)(struct axis2_msg_info_headers *msg_info_headers, 
                       const axis2_env_t *env, 
-		              axis2_endpoint_ref_t *reply_to);
+                    axis2_endpoint_ref_t *reply_to);
         
         axis2_status_t (AXIS2_CALL *
         set_reply_to_none)(struct axis2_msg_info_headers *msg_info_headers, 
@@ -126,7 +126,7 @@
          * @return
          */
         axis2_endpoint_ref_t* (AXIS2_CALL *
-		get_fault_to)(struct axis2_msg_info_headers *msg_info_headers, 
+      get_fault_to)(struct axis2_msg_info_headers *msg_info_headers, 
                       const axis2_env_t *env);
         /**
          * Method set_fault_to
@@ -134,9 +134,9 @@
          * @param fault_to
          */
         axis2_status_t (AXIS2_CALL *
-		set_fault_to)(struct axis2_msg_info_headers *msg_info_headers, 
+      set_fault_to)(struct axis2_msg_info_headers *msg_info_headers, 
                       const axis2_env_t *env, 
-		              axis2_endpoint_ref_t *fault_to);
+                    axis2_endpoint_ref_t *fault_to);
         
         axis2_status_t (AXIS2_CALL *
         set_fault_to_none)(struct axis2_msg_info_headers *msg_info_headers, 
@@ -160,7 +160,7 @@
          * @return
          */
         axis2_char_t* (AXIS2_CALL *
-		get_action)(struct axis2_msg_info_headers *msg_info_headers, 
+      get_action)(struct axis2_msg_info_headers *msg_info_headers, 
                     const axis2_env_t *env);
         /**
          * Method set_action
@@ -168,16 +168,16 @@
          * @param action
          */
         axis2_status_t (AXIS2_CALL *
-		set_action)(struct axis2_msg_info_headers *msg_info_headers, 
+      set_action)(struct axis2_msg_info_headers *msg_info_headers, 
                     const axis2_env_t *env, 
-		            axis2_char_t *action);
+                  axis2_char_t *action);
         /**
          * Method get_message_id
          *
          * @return
          */
         axis2_char_t* (AXIS2_CALL *
-		get_message_id)(struct axis2_msg_info_headers *msg_info_headers, 
+      get_message_id)(struct axis2_msg_info_headers *msg_info_headers, 
                         const axis2_env_t *env);
         /**
          * Method set_message_id
@@ -185,16 +185,16 @@
          * @param message_id
          */
         axis2_status_t (AXIS2_CALL *
-		set_message_id)(struct axis2_msg_info_headers *msg_info_headers, 
+      set_message_id)(struct axis2_msg_info_headers *msg_info_headers, 
                         const axis2_env_t *env, 
-		                axis2_char_t *message_id);
+                      axis2_char_t *message_id);
         /**
          * Method get_relates_to
          *
          * @return
          */
         axis2_relates_to_t* (AXIS2_CALL *
-		get_relates_to)(struct axis2_msg_info_headers *msg_info_headers, 
+      get_relates_to)(struct axis2_msg_info_headers *msg_info_headers, 
                         const axis2_env_t *env);
         /**
          * Method set_relates_to
@@ -202,27 +202,27 @@
          * @param relates_to
          */
         axis2_status_t (AXIS2_CALL *
-		set_relates_to)(struct axis2_msg_info_headers *msg_info_headers, 
+      set_relates_to)(struct axis2_msg_info_headers *msg_info_headers, 
                         const axis2_env_t *env, 
-		                axis2_relates_to_t *relates_to);
-		
-		
+                      axis2_relates_to_t *relates_to);
+      
+      
         axis2_array_list_t* (AXIS2_CALL *
-		get_ref_params)(struct axis2_msg_info_headers *msg_info_headers, 
+      get_ref_params)(struct axis2_msg_info_headers *msg_info_headers, 
                         const axis2_env_t *env);
-		
-		
+      
+      
         axis2_status_t (AXIS2_CALL *
-		add_ref_param)(struct axis2_msg_info_headers *msg_info_headers, 
+      add_ref_param)(struct axis2_msg_info_headers *msg_info_headers, 
                        const axis2_env_t *env, 
-		               axis2_om_node_t *ref_param);
-		
+                     axis2_om_node_t *ref_param);
+      
         axis2_status_t (AXIS2_CALL *
-		free)(struct axis2_msg_info_headers *msg_info_headers, 
+      free)(struct axis2_msg_info_headers *msg_info_headers, 
               const axis2_env_t *env);
-		
+      
     } axis2_msg_info_headers_ops_t;
-	
+   
    /** 
     * \brief Dispatcher struct
     */

Modified: webservices/axis2/trunk/c/include/axis2_msg_recv.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/include/axis2_msg_recv.h?rev=411506&r1=411505&r2=411506&view=diff
==============================================================================
--- webservices/axis2/trunk/c/include/axis2_msg_recv.h (original)
+++ webservices/axis2/trunk/c/include/axis2_msg_recv.h Sat Jun  3 20:09:08 2006
@@ -225,13 +225,13 @@
 #define AXIS2_MSG_RECV_FREE(msg_recv, env) ((msg_recv)->ops->free (msg_recv, env))
 
 #define AXIS2_MSG_RECV_RECEIVE(msg_recv, env, msg_ctx, callback_recv_param) \
-		((msg_recv)->ops->receive (msg_recv, env, msg_ctx, callback_recv_param))
+      ((msg_recv)->ops->receive (msg_recv, env, msg_ctx, callback_recv_param))
 
 #define AXIS2_MSG_RECV_RECEIVE_SYNC(msg_recv, env, msg_ctx, callback_recv_param) \
-		((msg_recv)->ops->receive_sync (msg_recv, env, msg_ctx, callback_recv_param))
+      ((msg_recv)->ops->receive_sync (msg_recv, env, msg_ctx, callback_recv_param))
 
 #define AXIS2_MSG_RECV_RECEIVE_ASYNC(msg_recv, env, msg_ctx, callback_recv_param) \
-		((msg_recv)->ops->receive_async (msg_recv, env, msg_ctx, callback_recv_param))
+      ((msg_recv)->ops->receive_async (msg_recv, env, msg_ctx, callback_recv_param))
 
 #define AXIS2_MSG_RECV_INVOKE_IN_BUSINESS_LOGIC_SYNC(msg_recv, env, in_msg_ctx) \
         ((msg_recv)->ops->invoke_in_business_logic_sync(msg_recv, env, in_msg_ctx))
@@ -255,10 +255,10 @@
         ((msg_recv)->ops->make_new_svc_obj(msg_recv, env, msg_ctx))
 
 #define AXIS2_MSG_RECV_GET_IMPL_OBJ(msg_recv, env, msg_ctx) \
-		((msg_recv)->ops->get_impl_obj(msg_recv, env, msg_ctx))
+      ((msg_recv)->ops->get_impl_obj(msg_recv, env, msg_ctx))
         
 #define AXIS2_MSG_RECV_SET_SCOPE(msg_recv, env, scope) \
-		((msg_recv)->ops->set_scope(msg_recv, env, scope))
+      ((msg_recv)->ops->set_scope(msg_recv, env, scope))
 
 #define AXIS2_MSG_RECV_GET_SCOPE(msg_recv, env) \
         ((msg_recv)->ops->get_scope(msg_recv, env))



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