You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by sa...@apache.org on 2006/05/31 17:54:39 UTC

svn commit: r410566 [2/49] - 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/ axiom/test/unit/om/ include/ modules/c...

Modified: webservices/axis2/trunk/c/axiom/include/axis2_om_node.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/axiom/include/axis2_om_node.h?rev=410566&r1=410565&r2=410566&view=diff
==============================================================================
--- webservices/axis2/trunk/c/axiom/include/axis2_om_node.h (original)
+++ webservices/axis2/trunk/c/axiom/include/axis2_om_node.h Wed May 31 08:54:07 2006
@@ -87,7 +87,7 @@
     */
     axis2_status_t (AXIS2_CALL *
     free) (axis2_om_node_t *om_node,
-           axis2_env_t **env);
+           const axis2_env_t *env);
     /**
     * Adds given node as child to parent. child should not have a parent
     * if child has a parent it will be detached from existing parent
@@ -98,7 +98,7 @@
     */
     axis2_status_t (AXIS2_CALL *
     add_child) (axis2_om_node_t* om_node,
-                axis2_env_t **env,
+                const axis2_env_t *env,
                 axis2_om_node_t *child);
 
     /**
@@ -110,7 +110,7 @@
     */
     axis2_om_node_t  *(AXIS2_CALL *
     detach) (axis2_om_node_t  *om_node,
-             axis2_env_t **env);
+             const axis2_env_t *env);
 
     /**
     * Inserts a sibling node after the given node
@@ -121,7 +121,7 @@
     */
     axis2_status_t (AXIS2_CALL *
     insert_sibling_after)(axis2_om_node_t  *om_node,
-                          axis2_env_t **env,
+                          const axis2_env_t *env,
                           axis2_om_node_t  * node_to_insert);
 
     /**
@@ -133,7 +133,7 @@
     */
     axis2_status_t (AXIS2_CALL *
     insert_sibling_before)(axis2_om_node_t  *om_node,
-                           axis2_env_t **env,
+                           const axis2_env_t *env,
                            axis2_om_node_t  * node_to_insert);
 
     /**
@@ -146,7 +146,7 @@
     */
     axis2_status_t (AXIS2_CALL *
     serialize)(axis2_om_node_t  * om_node,
-               axis2_env_t **env,
+               const axis2_env_t *env,
               struct axis2_om_output *om_output);
               
     /** get parent of om_node
@@ -158,7 +158,7 @@
 
     axis2_om_node_t * (AXIS2_CALL *
     get_parent)(axis2_om_node_t  *om_node,
-                axis2_env_t **env);
+                const axis2_env_t *env);
 
     /**
     * get the first child of om_node
@@ -169,7 +169,7 @@
     */
     axis2_om_node_t * (AXIS2_CALL *
     get_first_child)(axis2_om_node_t  *om_node,
-                     axis2_env_t **env);
+                     const axis2_env_t *env);
     /**
     * get the last child
     * @param om_node node
@@ -178,7 +178,7 @@
     */                                                   
     axis2_om_node_t * (AXIS2_CALL *
     get_last_child)(axis2_om_node_t  *om_node,
-                    axis2_env_t **env);
+                    const axis2_env_t *env);
     /**
     * get the previous sibling 
     * @param om_node om_node struct 
@@ -188,7 +188,7 @@
     */                                                            
     axis2_om_node_t * (AXIS2_CALL *
     get_previous_sibling)(axis2_om_node_t  *om_node,
-                          axis2_env_t **env);
+                          const axis2_env_t *env);
     /**
     * get next sibling
     * @param om_node om_node struct
@@ -197,7 +197,7 @@
     */ 
     axis2_om_node_t * (AXIS2_CALL *
     get_next_sibling)(axis2_om_node_t  *om_node,
-                      axis2_env_t **env);
+                      const axis2_env_t *env);
     /**
     * get the node type of this element
     * Node type can be one of AXIS2_OM_ELEMENT, AXIS2_OM_COMMENT, AXIS2_OM_TEXT
@@ -208,7 +208,7 @@
     */
     axis2_om_types_t (AXIS2_CALL *
     get_node_type)(axis2_om_node_t  *om_node,
-                   axis2_env_t **env);
+                   const axis2_env_t *env);
     /**
     * get the struct contained in the node
     * IF the node is on type AXIS2_OM_ELEMENT , this method returns
@@ -220,7 +220,7 @@
     */                                                
     void* (AXIS2_CALL *
     get_data_element)(axis2_om_node_t  *om_node,
-                      axis2_env_t **env);    
+                      const axis2_env_t *env);    
     /**
     * Indicates whether parser has parsed this information item completely or not 
     * @param om_node om_node struct
@@ -230,7 +230,7 @@
     */                                                
     axis2_bool_t (AXIS2_CALL *
     is_complete)(axis2_om_node_t  *om_node,
-                      axis2_env_t **env); 
+                      const axis2_env_t *env); 
    /**
     * returns the associated document,
     * only valid if built using builder and for a node of type 
@@ -241,11 +241,11 @@
     */   
     struct axis2_om_document* (AXIS2_CALL *
     get_document)(axis2_om_node_t *om_node,
-                  axis2_env_t **env);
+                  const axis2_env_t *env);
                   
     axis2_char_t* (AXIS2_CALL *
     to_string)(axis2_om_node_t *om_node,
-               axis2_env_t **env);                  
+               const axis2_env_t *env);                  
                                                                         
 } axis2_om_node_ops_t;
 
@@ -267,7 +267,7 @@
     * @return a pointer to newly created node struct. NULL on error. 
     */
 AXIS2_DECLARE(axis2_om_node_t *) 
-axis2_om_node_create (axis2_env_t **env);
+axis2_om_node_create (const axis2_env_t *env);
 
 /** frees given node */
 #define AXIS2_OM_NODE_FREE_TREE(om_node,env) \

Modified: webservices/axis2/trunk/c/axiom/include/axis2_om_output.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/axiom/include/axis2_om_output.h?rev=410566&r1=410565&r2=410566&view=diff
==============================================================================
--- webservices/axis2/trunk/c/axiom/include/axis2_om_output.h (original)
+++ webservices/axis2/trunk/c/axiom/include/axis2_om_output.h Wed May 31 08:54:07 2006
@@ -58,7 +58,7 @@
     */
     axis2_status_t (AXIS2_CALL *
 	free_fn)(axis2_om_output_t *om_output,
-             axis2_env_t **env);
+             const axis2_env_t *env);
     
 	/**
      * If the xml to be serialized is soap 11, this property is set to true
@@ -68,27 +68,27 @@
      */	
     axis2_bool_t (AXIS2_CALL *
 	is_soap11)(axis2_om_output_t *om_output,
-			   axis2_env_t **env); 
+			   const axis2_env_t *env); 
 	/**
      * @returns true if the ignore_xml_declaration property is true	
 	 */
 	axis2_bool_t (AXIS2_CALL *
 	is_ignore_xml_declaration)(axis2_om_output_t *om_output,
-							   axis2_env_t **env);                               
+							   const axis2_env_t *env);                               
 
 	/**
 	 * sets the ignore_xml_declaration property is true
 	 */
 	axis2_status_t (AXIS2_CALL *
 	set_ignore_xml_declaration)(axis2_om_output_t *om_output,
-							    axis2_env_t **env,
+							    const axis2_env_t *env,
 							    axis2_bool_t ignore_xml_dec); 
 	/**
 	 * sets the soap11  property to true
 	 */						   
 	axis2_status_t (AXIS2_CALL *
 	set_soap11)(axis2_om_output_t *om_output,
-				axis2_env_t **env,
+				const axis2_env_t *env,
 				axis2_bool_t soap11);
 					
 	/**
@@ -96,33 +96,33 @@
      */	 
 	axis2_status_t (AXIS2_CALL *
 	set_xml_version)(axis2_om_output_t *om_output,
-					 axis2_env_t **env,
+					 const axis2_env_t *env,
 					 axis2_char_t *xml_version);
 	/**
      * @returns xml version property
      */	 
 	axis2_char_t* (AXIS2_CALL *
 	get_xml_version)(axis2_om_output_t *om_output,
-					 axis2_env_t **env);  
+					 const axis2_env_t *env);  
 	/**	
      * set the char set encoding property
      */	 
 	axis2_status_t (AXIS2_CALL *
 	set_char_set_encoding)(axis2_om_output_t *om_output,
-						   axis2_env_t **env,
+						   const axis2_env_t *env,
 						   axis2_char_t *char_set_encoding);
 	/**
      * @returns the char set encoding property
      */	 
 	axis2_char_t* (AXIS2_CALL *
 	get_char_set_encoding)(axis2_om_output_t *om_output,
-						   axis2_env_t **env); 
+						   const axis2_env_t *env); 
 	/** 
      * set the do optimize property true
      */	 
 	axis2_status_t (AXIS2_CALL *
 	set_do_optimize)(axis2_om_output_t *om_output,
-					 axis2_env_t **env,
+					 const axis2_env_t *env,
 					 axis2_bool_t optimize); 
 	
 	/**
@@ -130,7 +130,7 @@
      */	 
 	axis2_xml_writer_t* (AXIS2_CALL *
 	get_xml_writer)(axis2_om_output_t *om_output,
-					axis2_env_t **env);                                                                                                                                               	/**
+					const axis2_env_t *env);                                                                                                                                               	/**
      *  returns the content type
      *  for soap11 'text/xml' etc..
      *  @param om_output
@@ -139,43 +139,43 @@
      */ 	 
 	axis2_char_t* (AXIS2_CALL *
 	get_content_type)(axis2_om_output_t *om_output,
-					  axis2_env_t **env);
+					  const axis2_env_t *env);
 							   
 	/**
      * writes the xml versio encoding 
      */	 
 	axis2_status_t (AXIS2_CALL *
 	write_xml_version_encoding)(axis2_om_output_t *om_output,
-							    axis2_env_t **env);
+							    const axis2_env_t *env);
 
     /**
      * @returns whether the output is to be optimized 
      */
     axis2_bool_t (AXIS2_CALL *
     is_optimized)(axis2_om_output_t *om_output,
-                  axis2_env_t **env);                               
+                  const axis2_env_t *env);                               
 
     /** returns the next content id 
      */
     axis2_char_t* (AXIS2_CALL *
     get_next_content_id)(axis2_om_output_t *om_output,
-                         axis2_env_t **env);
+                         const axis2_env_t *env);
                          
     /**
      * root content id
      */                         
     axis2_char_t* (AXIS2_CALL *
     get_root_content_id)(axis2_om_output_t *om_output,
-                         axis2_env_t **env);
+                         const axis2_env_t *env);
     
     
     axis2_char_t* (AXIS2_CALL *
     get_mime_boundry)(axis2_om_output_t *om_output,
-                      axis2_env_t **env);                       
+                      const axis2_env_t *env);                       
 
     axis2_byte_t* (AXIS2_CALL *
     flush)(axis2_om_output_t *om_output,
-                      axis2_env_t **env,
+                      const axis2_env_t *env,
                       axis2_byte_t **output_stream,
                       int *output_stream_size);
 
@@ -197,7 +197,7 @@
     */
 
 AXIS2_DECLARE(axis2_om_output_t*) 
-axis2_om_output_create (axis2_env_t **env,
+axis2_om_output_create (const axis2_env_t *env,
                         axis2_xml_writer_t *xml_writer);
 
 
@@ -213,13 +213,13 @@
 
 AXIS2_DECLARE(axis2_status_t)
 axis2_om_output_write(axis2_om_output_t * om_output, 
-                      axis2_env_t **env,
+                      const axis2_env_t *env,
                       axis2_om_types_t type,
                       int no_of_args, ...);
                       
 AXIS2_DECLARE(axis2_status_t)
 axis2_om_output_write_optimized(axis2_om_output_t *om_output, 
-                      axis2_env_t **env, 
+                      const axis2_env_t *env, 
                       struct axis2_om_text *om_text);
 /************** Macros ********************************************************/
 

Modified: webservices/axis2/trunk/c/axiom/include/axis2_om_processing_instruction.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/axiom/include/axis2_om_processing_instruction.h?rev=410566&r1=410565&r2=410566&view=diff
==============================================================================
--- webservices/axis2/trunk/c/axiom/include/axis2_om_processing_instruction.h (original)
+++ webservices/axis2/trunk/c/axiom/include/axis2_om_processing_instruction.h Wed May 31 08:54:07 2006
@@ -55,7 +55,7 @@
          */
         axis2_status_t (AXIS2_CALL *
         free)(struct axis2_om_processing_instruction * om_pi,
-              axis2_env_t **env);
+              const axis2_env_t *env);
         /**
          * set processing instruction data
          *@param om_pi
@@ -65,7 +65,7 @@
          
         axis2_status_t (AXIS2_CALL *
         set_value)(struct axis2_om_processing_instruction *om_pi,
-                   axis2_env_t **env,
+                   const axis2_env_t *env,
                    const axis2_char_t* value);
         /**
          * set processing instruction target
@@ -78,7 +78,7 @@
         
         axis2_status_t (AXIS2_CALL *
         set_target)(struct axis2_om_processing_instruction *om_pi,
-                    axis2_env_t **env,
+                    const axis2_env_t *env,
                     const axis2_char_t* target);
         /**
          * get PI target
@@ -88,7 +88,7 @@
          */
         axis2_char_t* (AXIS2_CALL *
         get_target)(struct axis2_om_processing_instruction *om_pi,
-                    axis2_env_t **env);
+                    const axis2_env_t *env);
         /**
          *  get data part of processing_instruction
          * @param om_pi processing instruction 
@@ -97,7 +97,7 @@
          */
         axis2_char_t* (AXIS2_CALL *
         get_value)(struct axis2_om_processing_instruction *om_pi,
-                   axis2_env_t **env);                                                                                                                           
+                   const axis2_env_t *env);                                                                                                                           
                            
         /**
          *  serialize function
@@ -109,7 +109,7 @@
          */
         axis2_status_t (AXIS2_CALL *
         serialize)(struct axis2_om_processing_instruction *om_pi,
-                  axis2_env_t **env, 
+                  const axis2_env_t *env, 
                   axis2_om_output_t *om_output);
                                     
                                           
@@ -138,7 +138,7 @@
     * @return a pointer tonewly created processing instruction struct 
     */
     AXIS2_DECLARE(axis2_om_processing_instruction_t *) 
-        axis2_om_processing_instruction_create (axis2_env_t **env,
+        axis2_om_processing_instruction_create (const axis2_env_t *env,
                                                 axis2_om_node_t * parent,
                                                 const axis2_char_t * target,
                                                 const axis2_char_t * value,

Modified: webservices/axis2/trunk/c/axiom/include/axis2_om_stax_builder.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/axiom/include/axis2_om_stax_builder.h?rev=410566&r1=410565&r2=410566&view=diff
==============================================================================
--- webservices/axis2/trunk/c/axiom/include/axis2_om_stax_builder.h (original)
+++ webservices/axis2/trunk/c/axiom/include/axis2_om_stax_builder.h Wed May 31 08:54:07 2006
@@ -58,7 +58,7 @@
         */
         axis2_om_node_t*(AXIS2_CALL *
 		next) (struct axis2_om_stax_builder *builder,
-               axis2_env_t **env);
+               const axis2_env_t *env);
 
       /**
         * Discards the element that is being built currently.
@@ -68,7 +68,7 @@
         */
         axis2_status_t (AXIS2_CALL *
 		discard_current_element)(struct axis2_om_stax_builder *builder,
-                                 axis2_env_t **env);
+                                 const axis2_env_t *env);
         /**
          * Free op
          * @param builder pointer to builder struct
@@ -79,7 +79,7 @@
 			 
 		axis2_status_t (AXIS2_CALL *
 		free)(struct axis2_om_stax_builder *builder,
-		      axis2_env_t **env);
+		      const axis2_env_t *env);
         
        /** get the document associated with the builder  
         * @param builder axis2_om_stax_builder 
@@ -90,21 +90,21 @@
         */                                             
         axis2_om_document_t* (AXIS2_CALL *
 		get_document)(struct axis2_om_stax_builder *builder,
-                      axis2_env_t **env);
+                      const axis2_env_t *env);
         /**
          * builder is finished building om structure
          */        
                                              
         axis2_bool_t (AXIS2_CALL *
 		is_complete)(struct axis2_om_stax_builder* builder,
-                     axis2_env_t **env);
+                     const axis2_env_t *env);
         /**
          * moves the reader to next event and returns the token returned
 		 * by the xml_reader , returns -1 on error 
          */                                                
         int (AXIS2_CALL *
 		next_with_token)(struct axis2_om_stax_builder *builder,
-                         axis2_env_t **env);                                                                                                                                                                                                                                                 
+                         const axis2_env_t *env);                                                                                                                                                                                                                                                 
                                                         
     } axis2_om_stax_builder_ops_t;
 
@@ -125,7 +125,7 @@
     * @return a pointer to the newly created builder struct. 
     */
     AXIS2_DECLARE(axis2_om_stax_builder_t *)
-    axis2_om_stax_builder_create(axis2_env_t **env,
+    axis2_om_stax_builder_create(const axis2_env_t *env,
                                  axis2_xml_reader_t *parser);
 
 

Modified: webservices/axis2/trunk/c/axiom/include/axis2_om_text.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/axiom/include/axis2_om_text.h?rev=410566&r1=410565&r2=410566&view=diff
==============================================================================
--- webservices/axis2/trunk/c/axiom/include/axis2_om_text.h (original)
+++ webservices/axis2/trunk/c/axiom/include/axis2_om_text.h Wed May 31 08:54:07 2006
@@ -56,7 +56,7 @@
         */
         axis2_status_t (AXIS2_CALL *
         free) (struct axis2_om_text *om_text,
-               axis2_env_t **env);
+               const axis2_env_t *env);
 
       /**
         * Serialize op
@@ -68,7 +68,7 @@
         */
         axis2_status_t (AXIS2_CALL *
         serialize) (struct axis2_om_text *om_text,
-                    axis2_env_t **env,
+                    const axis2_env_t *env,
                     axis2_om_output_t *om_output);
        /**
         *  set the text value
@@ -80,7 +80,7 @@
         */                                                
         axis2_status_t (AXIS2_CALL *
         set_value)(struct axis2_om_text *om_text,
-                   axis2_env_t **env,
+                   const axis2_env_t *env,
                    const axis2_char_t *value);
        /**
         *  get text value 
@@ -90,7 +90,7 @@
         */                                                
         axis2_char_t* (AXIS2_CALL *
         get_value)(struct axis2_om_text *om_text,
-                   axis2_env_t **env);                                               
+                   const axis2_env_t *env);                                               
        /**
         * set optimized 
         * @param om_text pointer to om_text struct
@@ -100,7 +100,7 @@
         */                                               
         axis2_status_t (AXIS2_CALL *
         set_optimize)(struct axis2_om_text *om_text,
-                      axis2_env_t **env,
+                      const axis2_env_t *env,
                       axis2_bool_t optimize);
 
        /**
@@ -111,16 +111,16 @@
         */
         axis2_status_t (AXIS2_CALL *
         set_is_binary)(struct axis2_om_text *om_text,
-                       axis2_env_t **env,
+                       const axis2_env_t *env,
                        axis2_bool_t is_binary);
         
         axis2_data_handler_t* (AXIS2_CALL *
         get_data_handler)(struct axis2_om_text *om_text,
-                        axis2_env_t **env);
+                        const axis2_env_t *env);
         
         axis2_char_t* (AXIS2_CALL *
         get_content_id)(struct axis2_om_text *om_text,
-                        axis2_env_t **env);
+                        const axis2_env_t *env);
                                                                                                 
     } axis2_om_text_ops_t;
 
@@ -148,7 +148,7 @@
     * @return pointer to newly created text struct 
     */
     AXIS2_DECLARE(axis2_om_text_t *) 
-    axis2_om_text_create (axis2_env_t **env,
+    axis2_om_text_create (const axis2_env_t *env,
                           axis2_om_node_t *parent,
                           const axis2_char_t *value,
                           axis2_om_node_t ** node);
@@ -165,7 +165,7 @@
     * @return pointer to newly created text struct 
     */
     AXIS2_DECLARE(axis2_om_text_t*)
-    axis2_om_text_create_with_data_handler (axis2_env_t **env,
+    axis2_om_text_create_with_data_handler (const axis2_env_t *env,
                           axis2_om_node_t * parent,
                           axis2_data_handler_t* data_handler,
                           axis2_om_node_t **node);

Modified: webservices/axis2/trunk/c/axiom/include/axis2_soap_body.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/axiom/include/axis2_soap_body.h?rev=410566&r1=410565&r2=410566&view=diff
==============================================================================
--- webservices/axis2/trunk/c/axiom/include/axis2_soap_body.h (original)
+++ webservices/axis2/trunk/c/axiom/include/axis2_soap_body.h Wed May 31 08:54:07 2006
@@ -71,7 +71,7 @@
          */
         axis2_status_t (AXIS2_CALL *
 		free)(axis2_soap_body_t *body,
-              axis2_env_t **env);
+              const axis2_env_t *env);
 		
         /**
          * Indicates whether a soap fault is available with this 
@@ -82,7 +82,7 @@
          */
         axis2_bool_t (AXIS2_CALL *
 		has_fault)(axis2_soap_body_t *body,
-                   axis2_env_t **env);
+                   const axis2_env_t *env);
 				   
         /**
          * returns the soap fault in this soap_body 
@@ -94,7 +94,7 @@
         */
         axis2_soap_fault_t* (AXIS2_CALL *
 		get_fault)(axis2_soap_body_t *body,
-                   axis2_env_t **env);
+                   const axis2_env_t *env);
 				   
         /**
          * get the underlying om_node 
@@ -104,7 +104,7 @@
          */
         axis2_om_node_t* (AXIS2_CALL *
 		get_base_node)(axis2_soap_body_t *body,
-                       axis2_env_t **env);
+                       const axis2_env_t *env);
 					   
         /**
          *  return the soap version 
@@ -114,7 +114,7 @@
          */
         int (AXIS2_CALL *
 		get_soap_version)(axis2_soap_body_t *body,
-                          axis2_env_t **env);
+                          const axis2_env_t *env);
                                                       
                                                      
         /**
@@ -123,7 +123,7 @@
          */                                                 
         axis2_status_t (AXIS2_CALL *
 		build)(axis2_soap_body_t *body, 
-               axis2_env_t **env);                                                 
+               const axis2_env_t *env);                                                 
 
        /** add an om node as the child to this soap_body 
         * the child is added to as the first child 
@@ -135,7 +135,7 @@
 
         axis2_status_t (AXIS2_CALL *
         add_child)(axis2_soap_body_t *body,
-                   axis2_env_t **env,
+                   const axis2_env_t *env,
                    axis2_om_node_t *child);
                    
 
@@ -158,7 +158,7 @@
     */
    
 AXIS2_DECLARE(axis2_soap_body_t *)
-axis2_soap_body_create_with_parent(axis2_env_t **env, 
+axis2_soap_body_create_with_parent(const axis2_env_t *env, 
                                    struct axis2_soap_envelope *envelope);
     
 /******************** Macros **************************************************/

Modified: webservices/axis2/trunk/c/axiom/include/axis2_soap_builder.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/axiom/include/axis2_soap_builder.h?rev=410566&r1=410565&r2=410566&view=diff
==============================================================================
--- webservices/axis2/trunk/c/axiom/include/axis2_soap_builder.h (original)
+++ webservices/axis2/trunk/c/axiom/include/axis2_soap_builder.h Wed May 31 08:54:07 2006
@@ -48,51 +48,51 @@
 AXIS2_DECLARE_DATA   struct axis2_soap_builder_ops
 {
         axis2_status_t (AXIS2_CALL *free)(axis2_soap_builder_t *builder,
-                                          axis2_env_t **env);
+                                          const axis2_env_t *env);
 
         axis2_soap_envelope_t* (AXIS2_CALL *get_soap_envelope)
                                          (axis2_soap_builder_t *builder,
-                                          axis2_env_t **env);
+                                          const axis2_env_t *env);
                                           
         axis2_om_document_t* (AXIS2_CALL *get_document)
                                          (axis2_soap_builder_t *builder,
-                                          axis2_env_t **env);
+                                          const axis2_env_t *env);
                                           
         axis2_status_t (AXIS2_CALL *next)(axis2_soap_builder_t *builder,
-                                axis2_env_t **env);
+                                const axis2_env_t *env);
                                 
                                                      
         axis2_om_node_t* (AXIS2_CALL *get_document_element)
                                             (axis2_soap_builder_t *builder,
-                                             axis2_env_t **env); 
+                                             const axis2_env_t *env); 
                                              
         axis2_status_t (AXIS2_CALL *set_bool_processing_mandatory_fault_elements)
                                             (axis2_soap_builder_t *builder,
-                                             axis2_env_t **env,
+                                             const axis2_env_t *env,
                                              axis2_bool_t value);
         
         axis2_status_t (AXIS2_CALL *set_processing_detail_elements)
                                     (axis2_soap_builder_t *builder,
-                                     axis2_env_t **env,
+                                     const axis2_env_t *env,
                                      axis2_bool_t value);
                                      
         axis2_bool_t (AXIS2_CALL *is_processing_detail_elements)
                                     (axis2_soap_builder_t *builder, 
-                                     axis2_env_t **env);
+                                     const axis2_env_t *env);
                                      
                                      
         int (AXIS2_CALL *get_soap_version)(axis2_soap_builder_t *builder,
-                                           axis2_env_t **env);
+                                           const axis2_env_t *env);
                                            
         axis2_status_t (AXIS2_CALL *process_namespace_data)
                                           (axis2_soap_builder_t *builder,
-                                           axis2_env_t **env,
+                                           const axis2_env_t *env,
                                            axis2_om_node_t *om_node,
                                            axis2_bool_t is_soap_element);
         axis2_status_t (AXIS2_CALL *
         set_mime_body_parts)
                                     (axis2_soap_builder_t *builder, 
-                                     axis2_env_t **env,
+                                     const axis2_env_t *env,
                                      axis2_hash_t *map); 
 };
                                                       
@@ -114,7 +114,7 @@
  */
 
 AXIS2_DECLARE(axis2_soap_builder_t *)
-axis2_soap_builder_create(axis2_env_t **env,
+axis2_soap_builder_create(const axis2_env_t *env,
                                 axis2_om_stax_builder_t *builder,
                                 axis2_char_t *soap_version);
 

Modified: webservices/axis2/trunk/c/axiom/include/axis2_soap_envelope.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/axiom/include/axis2_soap_envelope.h?rev=410566&r1=410565&r2=410566&view=diff
==============================================================================
--- webservices/axis2/trunk/c/axiom/include/axis2_soap_envelope.h (original)
+++ webservices/axis2/trunk/c/axiom/include/axis2_soap_envelope.h Wed May 31 08:54:07 2006
@@ -61,7 +61,7 @@
          */
         struct axis2_soap_header* (AXIS2_CALL *
 		get_header)(axis2_soap_envelope_t *envelope,
-                    axis2_env_t **env);
+                    const axis2_env_t *env);
         /**
          * Returns the soap body associated with this soap envelope
          * @param envelope soap_envelope
@@ -70,7 +70,7 @@
          */
         struct axis2_soap_body* (AXIS2_CALL *
 		get_body)(axis2_soap_envelope_t *envelope,
-                  axis2_env_t **env);
+                  const axis2_env_t *env);
         /**
          * serialize function , serialize the soap envelope 
          * IF the soap version it set to soap11 the soap fault part is converted 
@@ -84,7 +84,7 @@
          */
         axis2_status_t (AXIS2_CALL *
 		serialize)(axis2_soap_envelope_t *envelope,
-                   axis2_env_t **env,
+                   const axis2_env_t *env,
                    axis2_om_output_t *om_output, 
                    axis2_bool_t cache);
 		
@@ -99,7 +99,7 @@
          */         
         axis2_status_t (AXIS2_CALL *
 		free)(axis2_soap_envelope_t *envelope,
-              axis2_env_t **env);
+              const axis2_env_t *env);
 			  
         /**
          * returns the om_node associated with this soap envelope
@@ -109,7 +109,7 @@
          */
         axis2_om_node_t* (AXIS2_CALL *
 		get_base_node)(axis2_soap_envelope_t *envelope,
-                       axis2_env_t **env);
+                       const axis2_env_t *env);
 
            
         /** returns the soap version of this soap envelope
@@ -119,7 +119,7 @@
          */         
         int (AXIS2_CALL *
 		get_soap_version)(axis2_soap_envelope_t *envelope,
-                          axis2_env_t **env);
+                          const axis2_env_t *env);
                    
         /** return the soap envelope namespace 
          * @param envelope 
@@ -128,11 +128,11 @@
          */                                                
         axis2_om_namespace_t* (AXIS2_CALL *
 		get_namespace)(axis2_soap_envelope_t *envelope,
-                       axis2_env_t **env);
+                       const axis2_env_t *env);
 
         axis2_status_t (AXIS2_CALL *
         set_soap_version)(axis2_soap_envelope_t *envelope,
-                          axis2_env_t **env,
+                          const axis2_env_t *env,
                           int soap_version);
      
     };
@@ -153,7 +153,7 @@
   * as the prefix and uri, The uri of ns should be valid soap uri
   */
 AXIS2_DECLARE(axis2_soap_envelope_t*)
-axis2_soap_envelope_create(axis2_env_t **env, 
+axis2_soap_envelope_create(const axis2_env_t *env, 
 						   axis2_om_namespace_t *ns);
 
  /**
@@ -167,16 +167,16 @@
   * 
   */						   
 AXIS2_DECLARE(axis2_soap_envelope_t*)
-axis2_soap_envelope_create_with_soap_version_prefix(axis2_env_t **env,
+axis2_soap_envelope_create_with_soap_version_prefix(const axis2_env_t *env,
                                                     int soap_version,
                                                     axis2_char_t *prefix);						   
 
 AXIS2_DECLARE(axis2_soap_envelope_t *)
-axis2_soap_envelope_create_default_soap_envelope(axis2_env_t **env,
+axis2_soap_envelope_create_default_soap_envelope(const axis2_env_t *env,
                                                  int soap_version);
  
 AXIS2_DECLARE(axis2_soap_envelope_t *)
-axis2_soap_envelope_create_default_soap_fault_envelope(axis2_env_t **env,
+axis2_soap_envelope_create_default_soap_fault_envelope(const axis2_env_t *env,
 		    axis2_char_t *code_value, axis2_char_t *reason_text, int soap_version,
             axis2_array_list_t *sub_codes,
             axis2_om_node_t *detail_node);

Modified: webservices/axis2/trunk/c/axiom/include/axis2_soap_fault.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/axiom/include/axis2_soap_fault.h?rev=410566&r1=410565&r2=410566&view=diff
==============================================================================
--- webservices/axis2/trunk/c/axiom/include/axis2_soap_fault.h (original)
+++ webservices/axis2/trunk/c/axiom/include/axis2_soap_fault.h Wed May 31 08:54:07 2006
@@ -69,7 +69,7 @@
 
         axis2_status_t (AXIS2_CALL *
 		free_fn)(axis2_soap_fault_t *fault,
-                 axis2_env_t **env);
+                 const axis2_env_t *env);
 	   /**
         * this function returns a axis2_soap_fault_code struct
         * if a fault code is associated with this soap fault
@@ -81,7 +81,7 @@
         */		
         struct axis2_soap_fault_code * (AXIS2_CALL *
 		get_code)(axis2_soap_fault_t *fault,
-                  axis2_env_t **env);
+                  const axis2_env_t *env);
        /** 
         * @param fault soap fault struct
         * @param env environment must not be NULL
@@ -91,7 +91,7 @@
                                               
         struct axis2_soap_fault_reason *(AXIS2_CALL *
 		get_reason)(axis2_soap_fault_t *fault,
-                    axis2_env_t **env);
+                    const axis2_env_t *env);
                                              
        /** 
         * @param fault soap fault struct
@@ -101,7 +101,7 @@
         */	                                     
         struct axis2_soap_fault_node* (AXIS2_CALL *
 		get_node)(axis2_soap_fault_t *fault,
-                  axis2_env_t **env);
+                  const axis2_env_t *env);
                                              
        /** 
         * @param fault soap fault struct
@@ -111,7 +111,7 @@
         */	                                      
         struct axis2_soap_fault_role* (AXIS2_CALL *
 		get_role)(axis2_soap_fault_t *fault,
-                  axis2_env_t **env);
+                  const axis2_env_t *env);
 	   /** 
         * @param fault soap fault struct
         * @param env environment must not be NULL
@@ -121,7 +121,7 @@
 
         struct axis2_soap_fault_detail* (AXIS2_CALL *
 		get_detail)(axis2_soap_fault_t *fault,
-                    axis2_env_t **env); 
+                    const axis2_env_t *env); 
 	   /** 
         * @param fault soap fault struct 
         * @param env enviroment must not be NULL
@@ -130,7 +130,7 @@
         */	
         axis2_char_t * (AXIS2_CALL *
 		get_exception)(axis2_soap_fault_t *fault,
-                       axis2_env_t **env);
+                       const axis2_env_t *env);
 	   /**
         * set an error string 
         * @param fualt soap fault struct
@@ -139,7 +139,7 @@
         */		
         axis2_status_t (AXIS2_CALL *
 		set_exception) (axis2_soap_fault_t *fault,
-                        axis2_env_t **env,
+                        const axis2_env_t *env,
                         axis2_char_t *exception);                                                                                             
 	  /**
        * returns the axis2_om_node_t struct which is wrapped by
@@ -151,7 +151,7 @@
        */
         axis2_om_node_t* (AXIS2_CALL *
 		get_base_node)(axis2_soap_fault_t *fault,
-                       axis2_env_t **env);
+                       const axis2_env_t *env);
                        
                                  
     };
@@ -179,7 +179,7 @@
 
     
 AXIS2_DECLARE(axis2_soap_fault_t *)
-axis2_soap_fault_create_with_parent(axis2_env_t **env,
+axis2_soap_fault_create_with_parent(const axis2_env_t *env,
                                     struct axis2_soap_body *parent);
 
 /** create an returns a axis2_soap_fault_t struct with a soap fault detail 
@@ -193,12 +193,12 @@
  */
 
 AXIS2_DECLARE(axis2_soap_fault_t *)
-axis2_soap_fault_create_with_exception(axis2_env_t **env,
+axis2_soap_fault_create_with_exception(const axis2_env_t *env,
                                         struct axis2_soap_body *parent,  
                                         axis2_char_t* exception);
                                         
 AXIS2_DECLARE(axis2_soap_fault_t *)
-axis2_soap_fault_create_default_fault(axis2_env_t **env,
+axis2_soap_fault_create_default_fault(const axis2_env_t *env,
                                       struct axis2_soap_body *parent,
                                       axis2_char_t *code_value,
                                       axis2_char_t *reason_text,

Modified: webservices/axis2/trunk/c/axiom/include/axis2_soap_fault_code.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/axiom/include/axis2_soap_fault_code.h?rev=410566&r1=410565&r2=410566&view=diff
==============================================================================
--- webservices/axis2/trunk/c/axiom/include/axis2_soap_fault_code.h (original)
+++ webservices/axis2/trunk/c/axiom/include/axis2_soap_fault_code.h Wed May 31 08:54:07 2006
@@ -57,7 +57,7 @@
         */
         axis2_status_t (AXIS2_CALL *
 		free_fn)(axis2_soap_fault_code_t *fault_code,
-                 axis2_env_t **env);
+                 const axis2_env_t *env);
 	   /**
 		* @returns axis2_soap_fault_sub_code struct if one is associated with
 		* this fault_code struct , otherwise teturns NULL
@@ -65,18 +65,18 @@
         
         struct axis2_soap_fault_sub_code* (AXIS2_CALL *
 		get_sub_code)(axis2_soap_fault_code_t *fault_code,
-                      axis2_env_t **env);
+                      const axis2_env_t *env);
                                      
 	   /**
         * @returns soap_fault_value if available
 		*/		
         struct axis2_soap_fault_value* (AXIS2_CALL *get_value)                                         
                                     (axis2_soap_fault_code_t *fault_code,
-                                     axis2_env_t **env);
+                                     const axis2_env_t *env);
                                      
         axis2_om_node_t* (AXIS2_CALL *
 		get_base_node)(axis2_soap_fault_code_t *fault_code,
-                       axis2_env_t **env);
+                       const axis2_env_t *env);
                                  
 };      
 
@@ -97,11 +97,11 @@
     */
     
 AXIS2_DECLARE(axis2_soap_fault_code_t *)
-axis2_soap_fault_code_create_with_parent(axis2_env_t **env,
+axis2_soap_fault_code_create_with_parent(const axis2_env_t *env,
                             axis2_soap_fault_t *fault);
                             
 AXIS2_DECLARE(axis2_soap_fault_code_t *)
-axis2_soap_fault_code_create_with_parent_value(axis2_env_t **env,
+axis2_soap_fault_code_create_with_parent_value(const axis2_env_t *env,
                             axis2_soap_fault_t *fault,
                             axis2_char_t *value);
                             

Modified: webservices/axis2/trunk/c/axiom/include/axis2_soap_fault_detail.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/axiom/include/axis2_soap_fault_detail.h?rev=410566&r1=410565&r2=410566&view=diff
==============================================================================
--- webservices/axis2/trunk/c/axiom/include/axis2_soap_fault_detail.h (original)
+++ webservices/axis2/trunk/c/axiom/include/axis2_soap_fault_detail.h Wed May 31 08:54:07 2006
@@ -56,20 +56,20 @@
 
         axis2_status_t (AXIS2_CALL *
 		free_fn)(axis2_soap_fault_detail_t *fault_detail,
-                 axis2_env_t **env);
+                 const axis2_env_t *env);
                                      
         axis2_status_t (AXIS2_CALL *
 		add_detail_entry)(axis2_soap_fault_detail_t *fault_detail,
-                          axis2_env_t **env,
+                          const axis2_env_t *env,
                           axis2_om_node_t *ele_node);
                                  
         axis2_om_children_iterator_t* (AXIS2_CALL *
 		get_all_detail_entries) (axis2_soap_fault_detail_t *fault_detail,
-                                 axis2_env_t **env); 
+                                 const axis2_env_t *env); 
 
         axis2_om_node_t* (AXIS2_CALL *
 		get_base_node)(axis2_soap_fault_detail_t *fault_code,
-                       axis2_env_t **env);
+                       const axis2_env_t *env);
         
     };      
 
@@ -93,7 +93,7 @@
 
 AXIS2_DECLARE(axis2_soap_fault_detail_t *)
 axis2_soap_fault_detail_create_with_parent
-                        (axis2_env_t **env,
+                        (const axis2_env_t *env,
                          axis2_soap_fault_t *fault);
                          
 /******************** Macros **************************************************/

Modified: webservices/axis2/trunk/c/axiom/include/axis2_soap_fault_node.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/axiom/include/axis2_soap_fault_node.h?rev=410566&r1=410565&r2=410566&view=diff
==============================================================================
--- webservices/axis2/trunk/c/axiom/include/axis2_soap_fault_node.h (original)
+++ webservices/axis2/trunk/c/axiom/include/axis2_soap_fault_node.h Wed May 31 08:54:07 2006
@@ -53,20 +53,20 @@
 
         axis2_status_t (AXIS2_CALL *
 		free_fn) (axis2_soap_fault_node_t *fault_node,
-                  axis2_env_t **env);
+                  const axis2_env_t *env);
 
         axis2_status_t (AXIS2_CALL *
 		set_value)(axis2_soap_fault_node_t *fault_node,
-                   axis2_env_t **env,
+                   const axis2_env_t *env,
                    axis2_char_t *fault_val);
                                      
         axis2_char_t* (AXIS2_CALL *
 		get_value)(axis2_soap_fault_node_t *fault_node,
-                   axis2_env_t **env);
+                   const axis2_env_t *env);
     
         axis2_om_node_t* (AXIS2_CALL *
 		get_base_node)(axis2_soap_fault_node_t *fault_node,
-                       axis2_env_t **env);
+                       const axis2_env_t *env);
     };      
 
   /**
@@ -85,7 +85,7 @@
     * @param env Environment. MUST NOT be NULL
     */
 AXIS2_DECLARE(axis2_soap_fault_node_t *)
-axis2_soap_fault_node_create_with_parent(axis2_env_t **env,
+axis2_soap_fault_node_create_with_parent(const axis2_env_t *env,
                                          axis2_soap_fault_t *fault);
                             
 

Modified: webservices/axis2/trunk/c/axiom/include/axis2_soap_fault_reason.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/axiom/include/axis2_soap_fault_reason.h?rev=410566&r1=410565&r2=410566&view=diff
==============================================================================
--- webservices/axis2/trunk/c/axiom/include/axis2_soap_fault_reason.h (original)
+++ webservices/axis2/trunk/c/axiom/include/axis2_soap_fault_reason.h Wed May 31 08:54:07 2006
@@ -56,29 +56,29 @@
 
         axis2_status_t (AXIS2_CALL *
 		free_fn)(axis2_soap_fault_reason_t *fault_reason,
-                 axis2_env_t **env);
+                 const axis2_env_t *env);
 
         struct axis2_soap_fault_text* (AXIS2_CALL *
 		get_soap_fault_text)(axis2_soap_fault_reason_t *fault_reason,
-                             axis2_env_t **env,
+                             const axis2_env_t *env,
                              axis2_char_t *lang);
                              
         axis2_array_list_t* (AXIS2_CALL *
         get_all_soap_fault_texts)(axis2_soap_fault_reason_t *fault_reason,
-                                  axis2_env_t **env);
+                                  const axis2_env_t *env);
                                   
         struct axis2_soap_fault_text* (AXIS2_CALL *
         get_first_soap_fault_text)(axis2_soap_fault_reason_t *fault_reason,
-                                   axis2_env_t **env);
+                                   const axis2_env_t *env);
                              
         axis2_status_t (AXIS2_CALL *
         add_soap_fault_text)(axis2_soap_fault_reason_t *fault_reason,
-                             axis2_env_t **env,
+                             const axis2_env_t *env,
                              struct axis2_soap_fault_text *fault_text);
                                            
         axis2_om_node_t* (AXIS2_CALL *
 		get_base_node)(axis2_soap_fault_reason_t *fault_reason,
-                       axis2_env_t **env);
+                       const axis2_env_t *env);
                                  
     };      
 
@@ -100,7 +100,7 @@
     
     
 AXIS2_DECLARE(axis2_soap_fault_reason_t *)
-axis2_soap_fault_reason_create_with_parent(axis2_env_t **env,
+axis2_soap_fault_reason_create_with_parent(const axis2_env_t *env,
                             axis2_soap_fault_t *fault);
 
 /******************** Macros **************************************************/

Modified: webservices/axis2/trunk/c/axiom/include/axis2_soap_fault_role.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/axiom/include/axis2_soap_fault_role.h?rev=410566&r1=410565&r2=410566&view=diff
==============================================================================
--- webservices/axis2/trunk/c/axiom/include/axis2_soap_fault_role.h (original)
+++ webservices/axis2/trunk/c/axiom/include/axis2_soap_fault_role.h Wed May 31 08:54:07 2006
@@ -54,20 +54,20 @@
 
         axis2_status_t (AXIS2_CALL *
 		free_fn)(axis2_soap_fault_role_t *fault_role,
-                 axis2_env_t **env);
+                 const axis2_env_t *env);
 
         axis2_status_t (AXIS2_CALL *
 		set_role_value)(axis2_soap_fault_role_t *fault_role,
-                        axis2_env_t **env,
+                        const axis2_env_t *env,
                         axis2_char_t* uri);
                                      
         axis2_char_t* (AXIS2_CALL *
 		get_role_value)(axis2_soap_fault_role_t *fault_role,
-                        axis2_env_t **env);
+                        const axis2_env_t *env);
                                      
         axis2_om_node_t* (AXIS2_CALL *
 		get_base_node)(axis2_soap_fault_role_t *fault_role,
-                       axis2_env_t **env);
+                       const axis2_env_t *env);
                                                                                                                    
     };      
 
@@ -88,7 +88,7 @@
     */
     
 AXIS2_DECLARE(axis2_soap_fault_role_t *)
-axis2_soap_fault_role_create_with_parent(axis2_env_t **env,
+axis2_soap_fault_role_create_with_parent(const axis2_env_t *env,
                             axis2_soap_fault_t *fault);
                             
 /******************** Macros **************************************************/

Modified: webservices/axis2/trunk/c/axiom/include/axis2_soap_fault_sub_code.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/axiom/include/axis2_soap_fault_sub_code.h?rev=410566&r1=410565&r2=410566&view=diff
==============================================================================
--- webservices/axis2/trunk/c/axiom/include/axis2_soap_fault_sub_code.h (original)
+++ webservices/axis2/trunk/c/axiom/include/axis2_soap_fault_sub_code.h Wed May 31 08:54:07 2006
@@ -55,19 +55,19 @@
         */
         axis2_status_t (AXIS2_CALL *
 		free_fn)(axis2_soap_fault_sub_code_t *fault_sub_code,
-                 axis2_env_t **env);
+                 const axis2_env_t *env);
                                      
         axis2_soap_fault_sub_code_t* (AXIS2_CALL *
 		get_sub_code)(axis2_soap_fault_sub_code_t *fault_sub_code,
-                      axis2_env_t **env);
+                      const axis2_env_t *env);
                                      
         struct axis2_soap_fault_value* (AXIS2_CALL *
 		get_value)(axis2_soap_fault_sub_code_t *fault_sub_code,
-                   axis2_env_t **env);
+                   const axis2_env_t *env);
                                      
         axis2_om_node_t* (AXIS2_CALL *
 		get_base_node) (axis2_soap_fault_sub_code_t *fault_sub_code,
-                        axis2_env_t **env);
+                        const axis2_env_t *env);
 
         };      
 
@@ -87,11 +87,11 @@
     * @param env Environment. MUST NOT be NULL
     */
 AXIS2_DECLARE(axis2_soap_fault_sub_code_t *)
-axis2_soap_fault_sub_code_create_with_parent(axis2_env_t **env,
+axis2_soap_fault_sub_code_create_with_parent(const axis2_env_t *env,
                             axis2_soap_fault_code_t *fault_code);
                             
 AXIS2_DECLARE(axis2_soap_fault_sub_code_t *)
-axis2_soap_fault_sub_code_create_with_parent_value(axis2_env_t **env,
+axis2_soap_fault_sub_code_create_with_parent_value(const axis2_env_t *env,
                             axis2_soap_fault_code_t *fault_code,
                             axis2_char_t *value);                            
 

Modified: webservices/axis2/trunk/c/axiom/include/axis2_soap_fault_text.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/axiom/include/axis2_soap_fault_text.h?rev=410566&r1=410565&r2=410566&view=diff
==============================================================================
--- webservices/axis2/trunk/c/axiom/include/axis2_soap_fault_text.h (original)
+++ webservices/axis2/trunk/c/axiom/include/axis2_soap_fault_text.h Wed May 31 08:54:07 2006
@@ -53,30 +53,30 @@
 
         axis2_status_t (AXIS2_CALL *
 		free_fn)(axis2_soap_fault_text_t *fault_text,
-                 axis2_env_t **env);
+                 const axis2_env_t *env);
 
         axis2_status_t (AXIS2_CALL *
 		set_lang)(axis2_soap_fault_text_t *fault_text,
-                  axis2_env_t **env,
+                  const axis2_env_t *env,
                   axis2_char_t* lang);
                                      
         axis2_char_t* (AXIS2_CALL *
 		get_lang)(axis2_soap_fault_text_t *fault_text,
-                  axis2_env_t **env);
+                  const axis2_env_t *env);
     
         axis2_om_node_t* (AXIS2_CALL *
 		get_base_node)(axis2_soap_fault_text_t *fault_text,
-                       axis2_env_t **env);
+                       const axis2_env_t *env);
                        
         axis2_status_t (AXIS2_CALL *
         set_text)(axis2_soap_fault_text_t *fault_text,
-                  axis2_env_t **env,
+                  const axis2_env_t *env,
                   axis2_char_t *value,
                   axis2_char_t *lang);
                   
         axis2_char_t * (AXIS2_CALL *
         get_text)(axis2_soap_fault_text_t *fault_text,
-                  axis2_env_t **env);
+                  const axis2_env_t *env);
                                                             
     };      
 
@@ -96,7 +96,7 @@
     * @param env Environment. MUST NOT be NULL
     */
 AXIS2_DECLARE(axis2_soap_fault_text_t *)
-axis2_soap_fault_text_create_with_parent(axis2_env_t **env,
+axis2_soap_fault_text_create_with_parent(const axis2_env_t *env,
                             axis2_soap_fault_reason_t *fault);
                             
 /******************** Macros **************************************************/

Modified: webservices/axis2/trunk/c/axiom/include/axis2_soap_fault_value.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/axiom/include/axis2_soap_fault_value.h?rev=410566&r1=410565&r2=410566&view=diff
==============================================================================
--- webservices/axis2/trunk/c/axiom/include/axis2_soap_fault_value.h (original)
+++ webservices/axis2/trunk/c/axiom/include/axis2_soap_fault_value.h Wed May 31 08:54:07 2006
@@ -54,7 +54,7 @@
 
         axis2_status_t (AXIS2_CALL *
 		free_fn)(axis2_soap_fault_value_t *fault_value,
-                 axis2_env_t **env);
+                 const axis2_env_t *env);
 		
 		/**
 		  * Get the text value of the env:Value element directly under env:Code element
@@ -64,7 +64,7 @@
 		  */
 		axis2_char_t* (AXIS2_CALL *
 		get_text)(axis2_soap_fault_value_t *fault_value,
-				axis2_env_t **env);	
+				const axis2_env_t *env);	
 		
 		/**
 		  * Set the text value of the env:Value element directly under env:Code element
@@ -74,7 +74,7 @@
 		  */
         axis2_om_node_t* (AXIS2_CALL *
 		get_base_node)(axis2_soap_fault_value_t *fault_value,
-                       axis2_env_t **env);
+                       const axis2_env_t *env);
         /**
          * set the text value of soap_fault_value element 
          * @param fault_value pointer to soap fault value struct
@@ -84,7 +84,7 @@
                                 
         axis2_status_t (AXIS2_CALL *
 		set_text)(axis2_soap_fault_value_t *fault_value,
-				axis2_env_t **env, axis2_char_t *text);	
+				const axis2_env_t *env, axis2_char_t *text);	
 				
     };      
 
@@ -104,11 +104,11 @@
     * @param env Environment. MUST NOT be NULL
     */
 AXIS2_DECLARE(axis2_soap_fault_value_t *)
-axis2_soap_fault_value_create_with_subcode(axis2_env_t **env,
+axis2_soap_fault_value_create_with_subcode(const axis2_env_t *env,
                             axis2_soap_fault_sub_code_t *parent);
 
 AXIS2_DECLARE(axis2_soap_fault_value_t *)
-axis2_soap_fault_value_create_with_code(axis2_env_t **env,
+axis2_soap_fault_value_create_with_code(const axis2_env_t *env,
                             axis2_soap_fault_code_t *parent);  
 
 

Modified: webservices/axis2/trunk/c/axiom/include/axis2_soap_header.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/axiom/include/axis2_soap_header.h?rev=410566&r1=410565&r2=410566&view=diff
==============================================================================
--- webservices/axis2/trunk/c/axiom/include/axis2_soap_header.h (original)
+++ webservices/axis2/trunk/c/axiom/include/axis2_soap_header.h Wed May 31 08:54:07 2006
@@ -63,7 +63,7 @@
         */
         axis2_status_t (AXIS2_CALL *
 		free_fn)(axis2_soap_header_t *header,
-                 axis2_env_t **env);
+                 const axis2_env_t *env);
                                              
        /**
         * create a new axis2_soap_header_block_t struct initialized  with the
@@ -75,7 +75,7 @@
         */
         struct axis2_soap_header_block* (AXIS2_CALL *
 		add_header_block)(axis2_soap_header_t* header,
-		        		  axis2_env_t **env,
+		        		  const axis2_env_t *env,
 						  axis2_char_t *localname,
 						  axis2_om_namespace_t *ns); 
        /**
@@ -90,7 +90,7 @@
         */
         axis2_hash_t* (AXIS2_CALL *
 		examine_header_blocks)(axis2_soap_header_t* header,
-                               axis2_env_t **env,
+                               const axis2_env_t *env,
                                axis2_char_t* param_role);
        /**
         * returns an arraylist of header_blocks which has a given namesapce uri
@@ -103,7 +103,7 @@
         */
         axis2_array_list_t* (AXIS2_CALL *
 		get_header_blocks_with_namespace_uri)(axis2_soap_header_t* header,
-                                              axis2_env_t **env,
+                                              const axis2_env_t *env,
                                          	  axis2_char_t *ns_uri);
        /**
         * returns an iterator to iterate through all soap header block's om nodes 
@@ -114,7 +114,7 @@
         */
         axis2_om_children_qname_iterator_t* (AXIS2_CALL *
 		examine_all_header_blocks)(axis2_soap_header_t* header,
-                                   axis2_env_t **env);
+                                   const axis2_env_t *env);
        /**
         * returns an iterator to iterate through all  header blocks om_nodes 
         * with the matching role attribute
@@ -126,7 +126,7 @@
         */
         axis2_om_children_with_specific_attribute_iterator_t *(AXIS2_CALL *
 		extract_header_blocks)(axis2_soap_header_t *header,
-                               axis2_env_t **env,
+                               const axis2_env_t *env,
                                axis2_char_t *role);
                                          
        /**
@@ -137,7 +137,7 @@
         */
         axis2_om_node_t* (AXIS2_CALL *
 		get_base_node)(axis2_soap_header_t *header,
-                       axis2_env_t **env);
+                       const axis2_env_t *env);
         /**
          *  return the soap_version of this soap_header
          *  @param header soap_header
@@ -146,7 +146,7 @@
          */
        int  (AXIS2_CALL *
 	   get_soap_version) (axis2_soap_header_t *header,
-                          axis2_env_t **env);
+                          const axis2_env_t *env);
         
          
        /**
@@ -154,7 +154,7 @@
 		*/
        axis2_hash_t* (AXIS2_CALL *
 	   get_all_header_blocks)(axis2_soap_header_t *header,
-                               axis2_env_t **env);                                                
+                               const axis2_env_t *env);                                                
                                          
     };
 
@@ -177,7 +177,7 @@
 
     
 AXIS2_DECLARE(axis2_soap_header_t *)
-axis2_soap_header_create_with_parent(axis2_env_t **env,
+axis2_soap_header_create_with_parent(const axis2_env_t *env,
                                      struct axis2_soap_envelope *envelope);
                                      
 /******************** Macros **************************************************/

Modified: webservices/axis2/trunk/c/axiom/include/axis2_soap_header_block.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/axiom/include/axis2_soap_header_block.h?rev=410566&r1=410565&r2=410566&view=diff
==============================================================================
--- webservices/axis2/trunk/c/axiom/include/axis2_soap_header_block.h (original)
+++ webservices/axis2/trunk/c/axiom/include/axis2_soap_header_block.h Wed May 31 08:54:07 2006
@@ -57,43 +57,43 @@
         */
         axis2_status_t (AXIS2_CALL *
 		free_fn)(axis2_soap_header_block_t *header_block,
-                 axis2_env_t **env);
+                 const axis2_env_t *env);
                                              
         axis2_status_t (AXIS2_CALL *
 		set_role)(axis2_soap_header_block_t *header_block,
-                  axis2_env_t **env,
+                  const axis2_env_t *env,
                   axis2_char_t *uri);  
         
         axis2_status_t (AXIS2_CALL *
 		set_must_understand_with_bool)(axis2_soap_header_block_t *header_block,
-                             		   axis2_env_t **env,
+                             		   const axis2_env_t *env,
                              	 	   axis2_bool_t *must_understand);
                              
         axis2_status_t (AXIS2_CALL *
 		set_must_understand_with_string)(axis2_soap_header_block_t *header_block,
-                             			 axis2_env_t **env,
+                             			 const axis2_env_t *env,
                              			 axis2_char_t *must_understand);
                                              
         axis2_bool_t (AXIS2_CALL *
 		get_must_understand)(axis2_soap_header_block_t *header_block,
-                             axis2_env_t **env);
+                             const axis2_env_t *env);
                              
                              
         axis2_bool_t (AXIS2_CALL *
 		is_processed)(axis2_soap_header_block_t *header_block,
-                      axis2_env_t **env);
+                      const axis2_env_t *env);
                              
         axis2_status_t (AXIS2_CALL *
 		set_processed)(axis2_soap_header_block_t *header_block,
-                       axis2_env_t **env);
+                       const axis2_env_t *env);
 					   
         axis2_char_t* (AXIS2_CALL *
 		get_role)(axis2_soap_header_block_t *header_block,
-                  axis2_env_t **env);
+                  const axis2_env_t *env);
           
         axis2_status_t (AXIS2_CALL *
 		set_attribute)(axis2_soap_header_block_t *header_block,
-                       axis2_env_t **env,
+                       const axis2_env_t *env,
                        axis2_char_t *attr_name,
                        axis2_char_t *attr_value,
                        axis2_char_t *soap_envelope_namespace_uri);
@@ -101,18 +101,18 @@
                              
         axis2_char_t* (AXIS2_CALL *
 		get_attribute)(axis2_soap_header_block_t *header_block,
-                       axis2_env_t **env,
+                       const axis2_env_t *env,
                        axis2_char_t *attr_name,
                        axis2_char_t *soap_envelope_namespace_uri);                            
                                        
                                               
         axis2_om_node_t* (AXIS2_CALL *
 		get_base_node)(axis2_soap_header_block_t *header_block,
-                       axis2_env_t **env);
+                       const axis2_env_t *env);
         
         int (AXIS2_CALL *
 		get_soap_version)(axis2_soap_header_block_t *header_block,
-                          axis2_env_t **env);
+                          const axis2_env_t *env);
 
     };
 
@@ -135,7 +135,7 @@
 
 
 AXIS2_DECLARE(axis2_soap_header_block_t *)
-axis2_soap_header_block_create_with_parent(axis2_env_t **env,
+axis2_soap_header_block_create_with_parent(const axis2_env_t *env,
                                            axis2_char_t *localname,
                                            axis2_om_namespace_t *ns,
                                            struct axis2_soap_header *parent);

Modified: webservices/axis2/trunk/c/axiom/include/axis2_soap_message.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/axiom/include/axis2_soap_message.h?rev=410566&r1=410565&r2=410566&view=diff
==============================================================================
--- webservices/axis2/trunk/c/axiom/include/axis2_soap_message.h (original)
+++ webservices/axis2/trunk/c/axiom/include/axis2_soap_message.h Wed May 31 08:54:07 2006
@@ -57,15 +57,15 @@
 
         axis2_status_t (AXIS2_CALL *
 		free_fn)(axis2_soap_message_t *message,
-                 axis2_env_t **env);
+                 const axis2_env_t *env);
                                              
         axis2_soap_envelope_t* (AXIS2_CALL *
 		get_soap_envelope)(axis2_soap_message_t *message,
-                           axis2_env_t **env);
+                           const axis2_env_t *env);
                                              
         axis2_status_t (AXIS2_CALL *
 		serialize)(axis2_soap_message_t *message,
-                   axis2_env_t **env,
+                   const axis2_env_t *env,
                    axis2_om_output_t *om_output);
                                                        
                                                                                             
@@ -87,7 +87,7 @@
     * @param env Environment. MUST NOT be NULL
     */
 AXIS2_DECLARE(axis2_soap_message_t *)
-axis2_soap_message_create(axis2_env_t **env,
+axis2_soap_message_create(const axis2_env_t *env,
                           axis2_soap_builder_t *soap_builder,
                           axis2_om_document_t *om_doc);
 

Modified: webservices/axis2/trunk/c/axiom/include/axis2_xml_reader.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/axiom/include/axis2_xml_reader.h?rev=410566&r1=410565&r2=410566&view=diff
==============================================================================
--- webservices/axis2/trunk/c/axiom/include/axis2_xml_reader.h (original)
+++ webservices/axis2/trunk/c/axiom/include/axis2_xml_reader.h Wed May 31 08:54:07 2006
@@ -73,7 +73,7 @@
         
         int (AXIS2_CALL *
 		next)(axis2_xml_reader_t *parser,
-              axis2_env_t **env);
+              const axis2_env_t *env);
 		
          /**
          * free pull_parser
@@ -84,7 +84,7 @@
         
         axis2_status_t (AXIS2_CALL *
 		free)(axis2_xml_reader_t *parser,
-              axis2_env_t **env);
+              const axis2_env_t *env);
         /**
          * Get the Number of attributes in the current element 
          * @param parser axis2_xml_reader  
@@ -94,7 +94,7 @@
         
         int (AXIS2_CALL *
 		get_attribute_count)(axis2_xml_reader_t *parser,
-                             axis2_env_t **env);
+                             const axis2_env_t *env);
 							 
                                               
        /** This is used to get an attribute's localname using an index relative to 
@@ -108,7 +108,7 @@
          */
         axis2_char_t* (AXIS2_CALL *
 		get_attribute_name_by_number)(axis2_xml_reader_t *parser,
-                                      axis2_env_t **env,
+                                      const axis2_env_t *env,
                                       int i);
                                                      
        /** This is used to get an attribute's prefix using an index relative to 
@@ -123,7 +123,7 @@
         
         axis2_char_t* (AXIS2_CALL *
 		get_attribute_prefix_by_number)(axis2_xml_reader_t *parser,
-                                        axis2_env_t **env,
+                                        const axis2_env_t *env,
                                         int i);
                                                      
         /** get an attribute's value using an index relative to 
@@ -138,7 +138,7 @@
                                              
         axis2_char_t* (AXIS2_CALL *
 		get_attribute_value_by_number)(axis2_xml_reader_t *parser,
-                                       axis2_env_t **env,
+                                       const axis2_env_t *env,
                                        int i);
         
         /** get an attribute's namespace uri using an index relative to 
@@ -153,7 +153,7 @@
         
         axis2_char_t* (AXIS2_CALL *
 		get_attribute_namespace_by_number)(axis2_xml_reader_t *parser,
-                                           axis2_env_t **env,
+                                           const axis2_env_t *env,
                                            int i);
 										   
        /** returns the text value of current element
@@ -165,7 +165,7 @@
                                 
         axis2_char_t* (AXIS2_CALL *
 		get_value)(axis2_xml_reader_t *parser,
-                   axis2_env_t **env);
+                   const axis2_env_t *env);
         
         /**
          * Returns the namespace count of current element 
@@ -175,7 +175,7 @@
          */
         int (AXIS2_CALL *
 		get_namespace_count)(axis2_xml_reader_t *parser,
-                             axis2_env_t **env);
+                             const axis2_env_t *env);
         /**
          * access the namespace uri of the namespaces declared in current element 
          * using an index 
@@ -187,7 +187,7 @@
          */
         axis2_char_t* (AXIS2_CALL *
 		get_namespace_uri_by_number)(axis2_xml_reader_t *parser,
-                                     axis2_env_t **env,
+                                     const axis2_env_t *env,
                                      int i);
         /**
          * access the namespace prefix of the namespaces declared in current element 
@@ -200,7 +200,7 @@
          */                                               
         axis2_char_t* (AXIS2_CALL *
 		get_namespace_prefix_by_number)(axis2_xml_reader_t *parser,
-                                        axis2_env_t **env,
+                                        const axis2_env_t *env,
                                         int i); 
         /**
          * Used to obtain the current element prefix
@@ -212,7 +212,7 @@
         
         axis2_char_t* (AXIS2_CALL *
 		get_prefix)(axis2_xml_reader_t *parser,
-                    axis2_env_t **env);   
+                    const axis2_env_t *env);   
         /**
          *  Used to obtain the current element localname
          * @param parser parser struct 
@@ -222,7 +222,7 @@
          */         
         axis2_char_t* (AXIS2_CALL *
 		get_name)(axis2_xml_reader_t *parser,
-                  axis2_env_t **env); 
+                  const axis2_env_t *env); 
         /**
          * Used to get the processingInstruction target
          * @param parser parser struct
@@ -235,7 +235,7 @@
                 
         axis2_char_t* (AXIS2_CALL *
 		get_pi_target)(axis2_xml_reader_t *parser,
-                       axis2_env_t **env);
+                       const axis2_env_t *env);
         /**
          *  gets the processingInstruction data
          *@param parser parser struct
@@ -247,7 +247,7 @@
 
         axis2_char_t* (AXIS2_CALL *
 		get_pi_data)(axis2_xml_reader_t *parser,
-                     axis2_env_t **env);
+                     const axis2_env_t *env);
         /**
          *  used to get the DTD 
          * @param parser pointer to pull parser struct
@@ -257,7 +257,7 @@
          */         
         axis2_char_t* (AXIS2_CALL *
 		get_dtd)(axis2_xml_reader_t *parser,
-                 axis2_env_t **env);                                                
+                 const axis2_env_t *env);                                                
         /**
          *  Free function , this function wraps the underlying parser's 
          *  xml free function. For freeing values obatined by calling
@@ -270,7 +270,7 @@
          */         
         axis2_status_t (AXIS2_CALL *
 		xml_free)(axis2_xml_reader_t *parser,
-                  axis2_env_t **env,
+                  const axis2_env_t *env,
                   void *data);
 
         /**
@@ -282,15 +282,15 @@
                                    
         axis2_char_t* (AXIS2_CALL *
 		get_char_set_encoding)(axis2_xml_reader_t *parser,
-                               axis2_env_t **env);                                         
+                               const axis2_env_t *env);                                         
         /** returns the namespace uri associated with current node */                                                   
         axis2_char_t* (AXIS2_CALL *
 		get_namespace_uri)(axis2_xml_reader_t *parser,
-                           axis2_env_t **env);
+                           const axis2_env_t *env);
                            
         axis2_char_t* (AXIS2_CALL *
         get_namespace_uri_by_prefix)(axis2_xml_reader_t *parser,
-                                     axis2_env_t **env,
+                                     const axis2_env_t *env,
                                      axis2_char_t *prefix);
                                        
                                
@@ -315,7 +315,7 @@
  */
 
 AXIS2_DECLARE(axis2_xml_reader_t *)
-axis2_xml_reader_create_for_file(axis2_env_t **env,
+axis2_xml_reader_create_for_file(const axis2_env_t *env,
                                   char *filename,
                                   const axis2_char_t *encoding);
 /**
@@ -335,7 +335,7 @@
  */
  
 AXIS2_DECLARE(axis2_xml_reader_t *)
-axis2_xml_reader_create_for_io(axis2_env_t **env,
+axis2_xml_reader_create_for_io(const axis2_env_t *env,
                                     AXIS2_READ_INPUT_CALLBACK,
                                     AXIS2_CLOSE_INPUT_CALLBACK,
                                     void *ctx,
@@ -350,7 +350,7 @@
  * @return pointer to axis2_xml_reader_t struct on success , NULL otherwise
  */
 AXIS2_DECLARE(axis2_xml_reader_t *)
-axis2_xml_reader_create_for_memory(axis2_env_t **env,
+axis2_xml_reader_create_for_memory(const axis2_env_t *env,
                                   void *container,
                                   int size,
                                   const axis2_char_t *encoding,

Modified: webservices/axis2/trunk/c/axiom/include/axis2_xml_writer.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/axiom/include/axis2_xml_writer.h?rev=410566&r1=410565&r2=410566&view=diff
==============================================================================
--- webservices/axis2/trunk/c/axiom/include/axis2_xml_writer.h (original)
+++ webservices/axis2/trunk/c/axiom/include/axis2_xml_writer.h Wed May 31 08:54:07 2006
@@ -58,7 +58,7 @@
         
         axis2_status_t (AXIS2_CALL *
 		free)(axis2_xml_writer_t *writer,
-              axis2_env_t **env);
+              const axis2_env_t *env);
        /**
         *  Write a start tag to output stream with localname.
         *  Internally the writer keeps track of the opened tags 
@@ -70,7 +70,7 @@
         */
         axis2_status_t (AXIS2_CALL *
 		write_start_element)(axis2_xml_writer_t *writer,
-                             axis2_env_t **env, 
+                             const axis2_env_t *env, 
 							 axis2_char_t *localname);
        /**
         *  write an end tag to the output relying on the internal
@@ -83,7 +83,7 @@
         */
         axis2_status_t (AXIS2_CALL *
 		end_start_element)(axis2_xml_writer_t *writer,
-                           axis2_env_t **env);
+                           const axis2_env_t *env);
         /**
          * Write an element tag with localname and namespace uri 
          * @param writer pointer to xml writer struct
@@ -96,7 +96,7 @@
          */
         axis2_status_t (AXIS2_CALL *
 		write_start_element_with_namespace)(axis2_xml_writer_t *writer,
-											axis2_env_t **env,
+											const axis2_env_t *env,
 											axis2_char_t *localname,
 											axis2_char_t *namespace_uri);
        
@@ -112,7 +112,7 @@
          */
         axis2_status_t (AXIS2_CALL *
 		write_start_element_with_namespace_prefix)(axis2_xml_writer_t *writer,
-													axis2_env_t **env,
+													const axis2_env_t *env,
 													axis2_char_t *localname,
 													axis2_char_t *namespace_uri,
 													axis2_char_t *prefix);       
@@ -126,7 +126,7 @@
          */         
         axis2_status_t (AXIS2_CALL *
 		write_empty_element)(axis2_xml_writer_t *writer,
-		                     axis2_env_t **env,
+		                     const axis2_env_t *env,
 							 axis2_char_t *localname);
         /**
          * write empty_element with localname and namespace uri.
@@ -140,7 +140,7 @@
         
         axis2_status_t (AXIS2_CALL *
 		write_empty_element_with_namespace)(axis2_xml_writer_t *writer,
-											axis2_env_t **env,
+											const axis2_env_t *env,
 											axis2_char_t *localname,
 											axis2_char_t *namespace_uri);
         /**
@@ -155,7 +155,7 @@
          */
         axis2_status_t (AXIS2_CALL *
 		write_empty_element_with_namespace_prefix)(axis2_xml_writer_t *writer,
-													axis2_env_t **env,
+													const axis2_env_t *env,
 													axis2_char_t *localname,
 													axis2_char_t *namespace_uri,
 													axis2_char_t *prefix);
@@ -168,7 +168,7 @@
          */
         axis2_status_t (AXIS2_CALL *
 		write_end_element)(axis2_xml_writer_t *writer,
-                           axis2_env_t **env);
+                           const axis2_env_t *env);
         /**
          * write end document
          * @param writer xml writer
@@ -178,7 +178,7 @@
          */
         axis2_status_t (AXIS2_CALL *
 		write_end_document)(axis2_xml_writer_t *writer,
-                            axis2_env_t **env);
+                            const axis2_env_t *env);
         /**
          * write attribute with localname and value
          * @param writer writer
@@ -190,7 +190,7 @@
          */
         axis2_status_t (AXIS2_CALL *
 		write_attribute)(axis2_xml_writer_t *writer,
-						 axis2_env_t **env,
+						 const axis2_env_t *env,
 						 axis2_char_t *localname,
 						 axis2_char_t *value);
         /**
@@ -204,7 +204,7 @@
          */
         axis2_status_t (AXIS2_CALL *
 		write_attribute_with_namespace)(axis2_xml_writer_t *writer,
-										  axis2_env_t **env,
+										  const axis2_env_t *env,
 										  axis2_char_t *localname,
 										  axis2_char_t *value,
 										  axis2_char_t *namespace_uri);
@@ -218,7 +218,7 @@
          */         
         axis2_status_t (AXIS2_CALL *
 		write_attribute_with_namespace_prefix)(axis2_xml_writer_t *writer,
-                                                  axis2_env_t **env,
+                                                  const axis2_env_t *env,
                                                   axis2_char_t *localname,
                                                   axis2_char_t *value,
                                                   axis2_char_t *namespace_uri,
@@ -234,7 +234,7 @@
         
         axis2_status_t (AXIS2_CALL *
 		write_namespace)(axis2_xml_writer_t *writer,
-						 axis2_env_t **env,
+						 const axis2_env_t *env,
 						 axis2_char_t *prefix,
 						 axis2_char_t *namespace_uri);   
         /**
@@ -247,7 +247,7 @@
 
         axis2_status_t (AXIS2_CALL *
 		write_default_namespace)(axis2_xml_writer_t *writer,
-								 axis2_env_t **env,
+								 const axis2_env_t *env,
 								 axis2_char_t *namespace_uri);  
         /**
          * @param writer xml_writer
@@ -260,7 +260,7 @@
 
         axis2_status_t (AXIS2_CALL *
 		write_comment)(axis2_xml_writer_t *writer,
-					   axis2_env_t **env,
+					   const axis2_env_t *env,
 					   axis2_char_t *value);
         /**
          * @param writer xml_writer
@@ -273,7 +273,7 @@
 
         axis2_status_t (AXIS2_CALL *
 		write_processing_instruction)(axis2_xml_writer_t *writer,
-									   axis2_env_t **env,
+									   const axis2_env_t *env,
 									   axis2_char_t *target);
                                    
         /**
@@ -287,7 +287,7 @@
                                    
         axis2_status_t (AXIS2_CALL *
 		write_processing_instruction_data)(axis2_xml_writer_t *writer,
-										   axis2_env_t **env,
+										   const axis2_env_t *env,
 										   axis2_char_t *target,
 										   axis2_char_t *data);
          
@@ -300,7 +300,7 @@
          */                                           
         axis2_status_t (AXIS2_CALL *
 		write_cdata)(axis2_xml_writer_t *writer,
-					 axis2_env_t **env,
+					 const axis2_env_t *env,
 					 axis2_char_t *data);
         
          
@@ -313,7 +313,7 @@
          */
         axis2_status_t (AXIS2_CALL *
 		write_dtd)(axis2_xml_writer_t *writer,
-				   axis2_env_t **env,
+				   const axis2_env_t *env,
 				   axis2_char_t *dtd); 
         
          
@@ -326,7 +326,7 @@
          */
         axis2_status_t (AXIS2_CALL *
 		write_entity_ref)(axis2_xml_writer_t *writer,
-                          axis2_env_t **env,
+                          const axis2_env_t *env,
                           axis2_char_t *name); 
          
         /**
@@ -337,7 +337,7 @@
          */
         axis2_status_t (AXIS2_CALL *
 		write_start_document)(axis2_xml_writer_t *writer,
-                              axis2_env_t **env);  
+                              const axis2_env_t *env);  
         
          
         /**
@@ -349,7 +349,7 @@
          */
         axis2_status_t (AXIS2_CALL *
 		write_start_document_with_version)(axis2_xml_writer_t *writer,
-                                           axis2_env_t **env,
+                                           const axis2_env_t *env,
                                            axis2_char_t *version);   
          
         /**
@@ -362,7 +362,7 @@
          */
         axis2_status_t (AXIS2_CALL *
 		write_start_document_with_version_encoding)(axis2_xml_writer_t *writer,
-                                                    axis2_env_t **env,
+                                                    const axis2_env_t *env,
                                                     axis2_char_t *version,
                                                     axis2_char_t *encoding);
          
@@ -375,7 +375,7 @@
          */                                         
         axis2_status_t (AXIS2_CALL *
 		write_characters)(axis2_xml_writer_t *writer,
-                          axis2_env_t **env,
+                          const axis2_env_t *env,
                           axis2_char_t *text);   
          
         /**
@@ -387,7 +387,7 @@
          */
        axis2_char_t* (AXIS2_CALL *
 	   get_prefix)(axis2_xml_writer_t *writer,
-                   axis2_env_t **env,
+                   const axis2_env_t *env,
                    axis2_char_t *uri);
          
         /**
@@ -400,7 +400,7 @@
          */
        axis2_status_t (AXIS2_CALL *
 	   set_prefix)(axis2_xml_writer_t *writer,
-                   axis2_env_t **env,
+                   const axis2_env_t *env,
                    axis2_char_t *prefix,
                    axis2_char_t *uri);
          
@@ -413,7 +413,7 @@
          */                                                 
        axis2_status_t (AXIS2_CALL *
 	   set_default_prefix)(axis2_xml_writer_t *writer,
-                           axis2_env_t **env,
+                           const axis2_env_t *env,
                            axis2_char_t *uri);                                                 
          
         /**
@@ -426,17 +426,17 @@
          */
         axis2_status_t (AXIS2_CALL *
 		write_encoded)(axis2_xml_writer_t *writer,
-                       axis2_env_t **env,
+                       const axis2_env_t *env,
                        axis2_char_t *text,
                        int in_attr);
                                                  
         void* (AXIS2_CALL *
 		get_xml)(axis2_xml_writer_t *writer,
-                 axis2_env_t **env);                                                 
+                 const axis2_env_t *env);                                                 
 
         int (AXIS2_CALL *
 		get_type)(axis2_xml_writer_t *writer,
-                 axis2_env_t **env);                                                 
+                 const axis2_env_t *env);                                                 
     };
 
 /** 
@@ -454,14 +454,14 @@
  *
  */
 AXIS2_DECLARE(axis2_xml_writer_t *)
-axis2_xml_writer_create(axis2_env_t **env,
+axis2_xml_writer_create(const axis2_env_t *env,
                         axis2_char_t *filename,
                         axis2_char_t *encoding,
                         int is_prefix_default,
                         int compression);
 
 AXIS2_DECLARE(axis2_xml_writer_t *)
-axis2_xml_writer_create_for_memory(axis2_env_t **env,
+axis2_xml_writer_create_for_memory(const axis2_env_t *env,
                                    axis2_char_t *encoding,
                                    int is_prefix_default,
                                    int compression,

Modified: webservices/axis2/trunk/c/axiom/src/attachments/axis2_mime_body_part.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/axiom/src/attachments/axis2_mime_body_part.h?rev=410566&r1=410565&r2=410566&view=diff
==============================================================================
--- webservices/axis2/trunk/c/axiom/src/attachments/axis2_mime_body_part.h (original)
+++ webservices/axis2/trunk/c/axiom/src/attachments/axis2_mime_body_part.h Wed May 31 08:54:07 2006
@@ -53,18 +53,18 @@
 {
 	axis2_status_t (AXIS2_CALL *
     add_header)(axis2_mime_body_part_t *mime_body_part, 
-            axis2_env_t **env, 
+            const axis2_env_t *env, 
             axis2_char_t *name, 
             axis2_char_t *value); 
 	
     axis2_status_t (AXIS2_CALL *
     set_data_handler)(axis2_mime_body_part_t *mime_body_part, 
-            axis2_env_t **env, 
+            const axis2_env_t *env, 
             axis2_data_handler_t *data_handler); 
 
     axis2_status_t (AXIS2_CALL *
     write_to)(axis2_mime_body_part_t *mime_body_part, 
-            axis2_env_t **env,
+            const axis2_env_t *env,
             axis2_byte_t **output_stream, 
             int *output_stream_size); 
 
@@ -73,7 +73,7 @@
      */
     axis2_status_t (AXIS2_CALL *
     free) (axis2_mime_body_part_t *mime_body_part, 
-            axis2_env_t **env);
+            const axis2_env_t *env);
 };
 
 struct axis2_mime_body_part
@@ -87,7 +87,7 @@
  * @return pointer to newly created mime_body_part
  */
 AXIS2_DECLARE(axis2_mime_body_part_t *) 
-axis2_mime_body_part_create (axis2_env_t **env);
+axis2_mime_body_part_create (const axis2_env_t *env);
 
 /*************************** Function macros **********************************/
 

Modified: webservices/axis2/trunk/c/axiom/src/attachments/axis2_mime_output.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/axiom/src/attachments/axis2_mime_output.h?rev=410566&r1=410565&r2=410566&view=diff
==============================================================================
--- webservices/axis2/trunk/c/axiom/src/attachments/axis2_mime_output.h (original)
+++ webservices/axis2/trunk/c/axiom/src/attachments/axis2_mime_output.h Wed May 31 08:54:07 2006
@@ -56,7 +56,7 @@
 {
 
     axis2_byte_t* (AXIS2_CALL *complete)(axis2_mime_output_t *mime_output,
-                            axis2_env_t **env, 
+                            const axis2_env_t *env, 
                             axis2_byte_t **output_stream,
 							int *output_stream_size,
                             axis2_char_t *soap_body_buffer,
@@ -66,14 +66,14 @@
                             axis2_char_t *char_set_encoding,
                             axis2_char_t *soap_content_type);
 
-    axis2_char_t* (AXIS2_CALL *get_content_type_for_mime)(axis2_mime_output_t *mime_output, axis2_env_t **env, 
+    axis2_char_t* (AXIS2_CALL *get_content_type_for_mime)(axis2_mime_output_t *mime_output, const axis2_env_t *env, 
                         axis2_char_t *boundary, axis2_char_t *content_id, axis2_char_t *char_set_encoding, axis2_char_t *soap_content_type);
     
 	/** Deallocate memory
      * @return status code
      */
     axis2_status_t (AXIS2_CALL *free) (axis2_mime_output_t *mime_output,
-                            axis2_env_t **env);
+                            const axis2_env_t *env);
 
 };
 
@@ -91,7 +91,7 @@
  * @return pointer to newly created mime_output
  */
 AXIS2_DECLARE(axis2_mime_output_t *) 
-axis2_mime_output_create (axis2_env_t **env);
+axis2_mime_output_create (const axis2_env_t *env);
 
 /*************************** Function macros **********************************/
 



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