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 pi...@apache.org on 2007/03/30 15:19:59 UTC

svn commit: r524073 [7/10] - in /webservices/axis2/trunk/c: axiom/include/ axiom/src/attachments/ axiom/src/om/ axiom/src/parser/libxml2/ axiom/src/soap/ axiom/src/util/ include/ modules/core/addr/ modules/core/clientapi/ modules/core/context/ modules/...

Modified: webservices/axis2/trunk/c/woden/src/builder/wsdl10/woden_wsdl10_reader.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/woden/src/builder/wsdl10/woden_wsdl10_reader.c?view=diff&rev=524073&r1=524072&r2=524073
==============================================================================
--- webservices/axis2/trunk/c/woden/src/builder/wsdl10/woden_wsdl10_reader.c (original)
+++ webservices/axis2/trunk/c/woden/src/builder/wsdl10/woden_wsdl10_reader.c Fri Mar 30 06:19:43 2007
@@ -1618,17 +1618,17 @@
 
     if (style_default)
     {
-        axis2_array_list_t *string_list = NULL;
+        axutil_array_list_t *string_list = NULL;
         axis2_char_t *uri_str = NULL;
         int i = 0, size = 0;
 
         string_list = axis2_tokenize(env, style_default, ' ');
         if (string_list)
-            size = axis2_array_list_size(string_list, env);
+            size = axutil_array_list_size(string_list, env);
         for (i = 0; i < size; i++)
         {
             axis2_uri_t *uri = NULL;
-            uri_str = axis2_array_list_get(string_list, env, i);
+            uri_str = axutil_array_list_get(string_list, env, i);
             intface = woden_interface_to_interface_element(intface, env);
             uri = get_uri(env, uri_str);
             WODEN_INTERFACE_ELEMENT_ADD_STYLE_DEFAULT_URI(intface, env, uri);
@@ -1777,16 +1777,16 @@
 
     if (style)
     {
-        axis2_array_list_t *str_list = NULL;
+        axutil_array_list_t *str_list = NULL;
         axis2_char_t *uri_str = NULL;
         axis2_uri_t *uri = NULL;
         int i = 0, size = 0;
 
-        size = axis2_array_list_size(str_list, env);
+        size = axutil_array_list_size(str_list, env);
         axis2_tokenize(env, style, ' ');
         for (i = 0; i < size; i++)
         {
-            uri_str = axis2_array_list_get(str_list, env, i);
+            uri_str = axutil_array_list_get(str_list, env, i);
             uri = get_uri(env, uri_str);
             op = woden_interface_op_to_interface_op_element(op, env);
             WODEN_INTERFACE_OP_ELEMENT_ADD_STYLE_URI(op, env, uri);
@@ -2134,7 +2134,7 @@
         axis2_qname_t *qname = NULL;
         axis2_uri_t *namespc = NULL;
         axis2_char_t *namespc_str = NULL;
-        axis2_array_list_t *msgs = NULL;
+        axutil_array_list_t *msgs = NULL;
         int i = 0, size = 0;
         axis2_char_t *tmp_msg = NULL;
 
@@ -2165,13 +2165,13 @@
         desc = woden_wsdl10_desc_to_desc_element(desc, env);
         msgs = WODEN_WSDL10_DESC_ELEMENT_GET_MSG_ELEMENTS(desc, env);
         if (msgs)
-            size = axis2_array_list_size(msgs, env);
+            size = axutil_array_list_size(msgs, env);
         for (i = 0; i < size; i++)
         {
             void *msg = NULL;
             axis2_qname_t *msg_qname = NULL;
 
-            msg = axis2_array_list_get(msgs, env, i);
+            msg = axutil_array_list_get(msgs, env, i);
             msg_qname = WODEN_WSDL10_MSG_REF_GET_QNAME(msg, env);
             if (axis2_qname_equals(msg_qname, env, qname))
             {
@@ -2286,18 +2286,18 @@
     /* Dereference the interface qname */
     if (intface_qn)
     {
-        axis2_array_list_t *interfaces = NULL;
+        axutil_array_list_t *interfaces = NULL;
         int i = 0, size = 0;
 
         desc = woden_wsdl10_desc_to_desc_element(desc, env);
         interfaces = WODEN_WSDL10_DESC_ELEMENT_GET_INTERFACE_ELEMENTS(desc, env);
-        size = axis2_array_list_size(interfaces, env);
+        size = axutil_array_list_size(interfaces, env);
         for (i = 0; i < size; i++)
         {
             void *intface = NULL;
             axis2_qname_t *qname = NULL;
 
-            intface = axis2_array_list_get(interfaces, env, i);
+            intface = axutil_array_list_get(interfaces, env, i);
             intface = woden_interface_to_interface_element(intface, env);
             qname = WODEN_INTERFACE_ELEMENT_GET_QNAME(intface, env);
             if (axis2_qname_equals(intface_qn, env, qname))
@@ -2455,7 +2455,7 @@
     if (ref_qn)
     {
         void *intface = NULL;
-        axis2_array_list_t *int_ops = NULL;
+        axutil_array_list_t *int_ops = NULL;
         int i = 0, size = 0;
 
         /* Here I know that parent is an instance of binding */
@@ -2463,13 +2463,13 @@
         intface = WODEN_BINDING_ELEMENT_GET_INTERFACE_ELEMENT(parent, env);
         intface = woden_interface_to_interface_element(intface, env);
         int_ops = WODEN_INTERFACE_ELEMENT_GET_INTERFACE_OP_ELEMENTS(intface, env);
-        size = axis2_array_list_size(int_ops, env);
+        size = axutil_array_list_size(int_ops, env);
         for (i = 0; i < size; i++)
         {
             void *intface_op = NULL;
             axis2_qname_t *qname = NULL;
 
-            intface_op = axis2_array_list_get(int_ops, env, i);
+            intface_op = axutil_array_list_get(int_ops, env, i);
             if (intface_op)
                 qname = WODEN_INTERFACE_OP_ELEMENT_GET_QNAME(
                             intface_op, env);
@@ -2713,20 +2713,20 @@
                     bind_op, env);
         if (int_op)
         {
-            axis2_array_list_t *int_flt_refs = NULL;
+            axutil_array_list_t *int_flt_refs = NULL;
             int i = 0, size = 0;
 
             int_op = woden_interface_op_to_interface_op_element(int_op, env);
             int_flt_refs =
                 WODEN_INTERFACE_OP_ELEMENT_GET_INTERFACE_FAULT_REF_ELEMENTS(
                     int_op, env);
-            size = axis2_array_list_size(int_flt_refs, env);
+            size = axutil_array_list_size(int_flt_refs, env);
             for (i = 0; i < size; i++)
             {
                 void *int_flt_ref = NULL;
                 axis2_qname_t *qname = NULL;
 
-                int_flt_ref = axis2_array_list_get(int_flt_refs, env, i);
+                int_flt_ref = axutil_array_list_get(int_flt_refs, env, i);
                 int_flt_ref =
                     woden_wsdl10_interface_fault_ref_to_interface_fault_ref_element(
                         int_flt_ref, env);
@@ -2903,21 +2903,21 @@
                 bind_op, env);
     if (int_op)
     {
-        axis2_array_list_t *int_msg_refs = NULL;
+        axutil_array_list_t *int_msg_refs = NULL;
         int i = 0, size = 0;
 
         int_op = woden_interface_op_to_interface_op_element(int_op, env);
         int_msg_refs =
             WODEN_INTERFACE_OP_ELEMENT_GET_INTERFACE_MSG_REF_ELEMENTS(
                 int_op, env);
-        size = axis2_array_list_size(int_msg_refs, env);
+        size = axutil_array_list_size(int_msg_refs, env);
         for (i = 0; i < size; i++)
         {
             void *int_msg_ref = NULL;
             axis2_qname_t *intf_msg_qname = NULL;
             axis2_qname_t *binding_msg_qname = NULL;
 
-            int_msg_ref = axis2_array_list_get(int_msg_refs, env, i);
+            int_msg_ref = axutil_array_list_get(int_msg_refs, env, i);
             int_msg_ref =
                 woden_wsdl10_interface_msg_ref_to_interface_msg_ref_element(
                     int_msg_ref, env);
@@ -3069,19 +3069,19 @@
     /* Dereference the interface qname */
     if (intface_qn)
     {
-        axis2_array_list_t *interfaces = NULL;
+        axutil_array_list_t *interfaces = NULL;
         int i = 0, size = 0;
 
         desc = woden_wsdl10_desc_to_desc_element(desc, env);
         interfaces = WODEN_WSDL10_DESC_ELEMENT_GET_INTERFACE_ELEMENTS(desc, env);
         if (interfaces)
-            size = axis2_array_list_size(interfaces, env);
+            size = axutil_array_list_size(interfaces, env);
         for (i = 0; i < size; i++)
         {
             void *intface = NULL;
             axis2_qname_t *qname = NULL;
 
-            intface = axis2_array_list_get(interfaces, env, i);
+            intface = axutil_array_list_get(interfaces, env, i);
             intface = woden_interface_to_interface_element(intface, env);
             qname = WODEN_INTERFACE_ELEMENT_GET_QNAME(intface, env);
             if (axis2_qname_equals(intface_qn, env, qname))
@@ -3237,19 +3237,19 @@
     /* Dereference the binding qname */
     if (binding_qn)
     {
-        axis2_array_list_t *bindings = NULL;
+        axutil_array_list_t *bindings = NULL;
         int i = 0, size = 0;
 
         desc = woden_wsdl10_desc_to_desc_element(desc, env);
         bindings = WODEN_WSDL10_DESC_ELEMENT_GET_BINDING_ELEMENTS(desc, env);
         if (bindings)
-            size = axis2_array_list_size(bindings, env);
+            size = axutil_array_list_size(bindings, env);
         for (i = 0; i < size; i++)
         {
             void *binding = NULL;
             axis2_qname_t *qname = NULL;
 
-            binding = axis2_array_list_get(bindings, env, i);
+            binding = axutil_array_list_get(bindings, env, i);
             binding = woden_binding_to_binding_element(binding, env);
             qname = WODEN_BINDING_ELEMENT_GET_QNAME(binding, env);
             if (axis2_qname_equals(binding_qn, env, qname))

Modified: webservices/axis2/trunk/c/woden/src/wsdl/woden_attr_extensible.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/woden/src/wsdl/woden_attr_extensible.c?view=diff&rev=524073&r1=524072&r2=524073
==============================================================================
--- webservices/axis2/trunk/c/woden/src/wsdl/woden_attr_extensible.c (original)
+++ webservices/axis2/trunk/c/woden/src/wsdl/woden_attr_extensible.c Fri Mar 30 06:19:43 2007
@@ -32,7 +32,7 @@
     axis2_hash_t *super;
     woden_obj_types_t obj_type;
     axis2_hash_t *f_ext_attrs;
-    axis2_array_list_t *temp_attrs;
+    axutil_array_list_t *temp_attrs;
 };
 
 #define INTF_TO_IMPL(extensible) \
@@ -66,12 +66,12 @@
     const axis2_env_t *env,
     axis2_qname_t *attr_type);
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_attr_extensible_get_ext_attrs(
     void *extensible,
     const axis2_env_t *env);
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_attr_extensible_get_ext_attrs_for_namespace(
     void *extensible,
     const axis2_env_t *env,
@@ -154,15 +154,15 @@
     if (extensible_impl->temp_attrs)
     {
         int size = 0, i = 0;
-        size = axis2_array_list_size(extensible_impl->temp_attrs, env);
+        size = axutil_array_list_size(extensible_impl->temp_attrs, env);
         for (i = 0; i < size; i++)
         {
             void *ext_el = NULL;
 
-            ext_el = axis2_array_list_get(extensible_impl->temp_attrs, env, i);
+            ext_el = axutil_array_list_get(extensible_impl->temp_attrs, env, i);
             WODEN_XML_ATTR_FREE(ext_el, env);
         }
-        axis2_array_list_free(extensible_impl->temp_attrs, env);
+        axutil_array_list_free(extensible_impl->temp_attrs, env);
         extensible_impl->temp_attrs = NULL;
     }
 
@@ -315,7 +315,7 @@
             str_attr_type, AXIS2_HASH_KEY_STRING);
 }
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_attr_extensible_get_ext_attrs(
     void *extensible,
     const axis2_env_t *env)
@@ -332,30 +332,30 @@
     if (extensible_impl->temp_attrs)
     {
         int size = 0, i = 0;
-        size = axis2_array_list_size(extensible_impl->temp_attrs, env);
+        size = axutil_array_list_size(extensible_impl->temp_attrs, env);
         for (i = 0; i < size; i++)
         {
             void *ext_el = NULL;
 
-            ext_el = axis2_array_list_get(extensible_impl->temp_attrs, env, i);
+            ext_el = axutil_array_list_get(extensible_impl->temp_attrs, env, i);
             WODEN_XML_ATTR_FREE(ext_el, env);
         }
-        axis2_array_list_free(extensible_impl->temp_attrs, env);
+        axutil_array_list_free(extensible_impl->temp_attrs, env);
         extensible_impl->temp_attrs = NULL;
     }
-    extensible_impl->temp_attrs = axis2_array_list_create(env, 0);
+    extensible_impl->temp_attrs = axutil_array_list_create(env, 0);
     for (index = axis2_hash_first(extensible_impl->f_ext_attrs, env); index;
             index = axis2_hash_next(env, index))
     {
         void *value = NULL;
 
         axis2_hash_this(index, NULL, NULL, &value);
-        axis2_array_list_add(extensible_impl->temp_attrs, env, value);
+        axutil_array_list_add(extensible_impl->temp_attrs, env, value);
     }
     return extensible_impl->temp_attrs;
 }
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_attr_extensible_get_ext_attrs_for_namespace(void *extensible,
         const axis2_env_t *env,
         axis2_uri_t *namespc)
@@ -375,26 +375,26 @@
     if (extensible_impl->temp_attrs)
     {
         int size = 0, i = 0;
-        size = axis2_array_list_size(extensible_impl->temp_attrs, env);
+        size = axutil_array_list_size(extensible_impl->temp_attrs, env);
         for (i = 0; i < size; i++)
         {
             void *ext_el = NULL;
 
-            ext_el = axis2_array_list_get(extensible_impl->temp_attrs, env, i);
+            ext_el = axutil_array_list_get(extensible_impl->temp_attrs, env, i);
             WODEN_XML_ATTR_FREE(ext_el, env);
         }
-        axis2_array_list_free(extensible_impl->temp_attrs, env);
+        axutil_array_list_free(extensible_impl->temp_attrs, env);
         extensible_impl->temp_attrs = NULL;
     }
 
-    extensible_impl->temp_attrs = axis2_array_list_create(env, 0);
+    extensible_impl->temp_attrs = axutil_array_list_create(env, 0);
     for (index = axis2_hash_first(extensible_impl->f_ext_attrs, env); index;
             index = axis2_hash_next(env, index))
     {
         void *value = NULL;
 
         axis2_hash_this(index, NULL, NULL, &value);
-        axis2_array_list_add(extensible_impl->temp_attrs, env, value);
+        axutil_array_list_add(extensible_impl->temp_attrs, env, value);
     }
 
     return extensible_impl->temp_attrs;

Modified: webservices/axis2/trunk/c/woden/src/wsdl/woden_binding.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/woden/src/wsdl/woden_binding.c?view=diff&rev=524073&r1=524072&r2=524073
==============================================================================
--- webservices/axis2/trunk/c/woden/src/wsdl/woden_binding.c (original)
+++ webservices/axis2/trunk/c/woden/src/wsdl/woden_binding.c Fri Mar 30 06:19:43 2007
@@ -38,7 +38,7 @@
     woden_obj_types_t obj_type;
     axis2_hash_t *super;
     axis2_hash_t *methods;
-    axis2_array_list_t *f_extended_bindings;
+    axutil_array_list_t *f_extended_bindings;
     axis2_qname_t *f_qname;
     axis2_qname_t *f_interface_qname;
     void *f_interface;
@@ -52,8 +52,8 @@
      * This will avoid any null key issues, however it will make the implementation of 'ref' based
      * access more complicated. 
      */
-    axis2_array_list_t *f_faults;
-    axis2_array_list_t *f_ops;
+    axutil_array_list_t *f_faults;
+    axutil_array_list_t *f_ops;
 };
 
 #define INTF_TO_IMPL(binding) ((woden_binding_impl_t *) binding)
@@ -96,12 +96,12 @@
     void *binding,
     const axis2_env_t *env);
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_binding_get_binding_faults(
     void *binding,
     const axis2_env_t *env);
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_binding_get_binding_ops(
     void *binding,
     const axis2_env_t *env);
@@ -148,7 +148,7 @@
     const axis2_env_t *env,
     void *fault);
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_binding_get_binding_fault_elements(
     void *binding,
     const axis2_env_t *env);
@@ -159,7 +159,7 @@
     const axis2_env_t *env,
     void *op);
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_binding_get_binding_op_elements(
     void *binding,
     const axis2_env_t *env);
@@ -624,13 +624,13 @@
 
     if (binding_impl->f_faults)
     {
-        axis2_array_list_free(binding_impl->f_faults, env);
+        axutil_array_list_free(binding_impl->f_faults, env);
         binding_impl->f_faults = NULL;
     }
 
     if (binding_impl->f_ops)
     {
-        axis2_array_list_free(binding_impl->f_ops, env);
+        axutil_array_list_free(binding_impl->f_ops, env);
         binding_impl->f_ops = NULL;
     }
 
@@ -836,7 +836,7 @@
 }
 
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_binding_get_binding_faults(
     void *binding,
     const axis2_env_t *env)
@@ -852,7 +852,7 @@
     return binding_impl->f_faults;
 }
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_binding_get_binding_ops(
     void *binding,
     const axis2_env_t *env)
@@ -1009,19 +1009,19 @@
 
     if (!binding_impl->f_faults)
     {
-        binding_impl->f_faults = axis2_array_list_create(env, 0);
+        binding_impl->f_faults = axutil_array_list_create(env, 0);
         if (!binding_impl->f_faults)
         {
             AXIS2_ERROR_SET(env->error, AXIS2_ERROR_NO_MEMORY, AXIS2_FAILURE);
             return AXIS2_FAILURE;
         }
     }
-    axis2_array_list_add(binding_impl->f_faults, env, fault);
+    axutil_array_list_add(binding_impl->f_faults, env, fault);
 
     return AXIS2_SUCCESS;
 }
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_binding_get_binding_fault_elements(
     void *binding,
     const axis2_env_t *env)
@@ -1054,19 +1054,19 @@
 
     if (!binding_impl->f_ops)
     {
-        binding_impl->f_ops = axis2_array_list_create(env, 0);
+        binding_impl->f_ops = axutil_array_list_create(env, 0);
         if (!binding_impl->f_ops)
         {
             AXIS2_ERROR_SET(env->error, AXIS2_ERROR_NO_MEMORY, AXIS2_FAILURE);
             return AXIS2_FAILURE;
         }
     }
-    axis2_array_list_add(binding_impl->f_ops, env, op);
+    axutil_array_list_add(binding_impl->f_ops, env, op);
 
     return AXIS2_SUCCESS;
 }
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_binding_get_binding_op_elements(
     void *binding,
     const axis2_env_t *env)
@@ -1102,13 +1102,13 @@
     binding_impl = INTF_TO_IMPL(axis2_hash_get(super,
             "WODEN_BINDING", AXIS2_HASH_KEY_STRING));
 
-    size = axis2_array_list_size(binding_impl->f_faults, env);
+    size = axutil_array_list_size(binding_impl->f_faults, env);
     for (i = 0; i < size; i++)
     {
         void *bind_fault = NULL;
         axis2_qname_t *qname_l = NULL;
 
-        bind_fault = axis2_array_list_get(binding_impl->f_faults,
+        bind_fault = axutil_array_list_get(binding_impl->f_faults,
                 env, i);
         qname_l = (axis2_qname_t *) WODEN_BINDING_FAULT_ELEMENT_GET_REF(
                     bind_fault, env);
@@ -1139,13 +1139,13 @@
     binding_impl = INTF_TO_IMPL(axis2_hash_get(super,
             "WODEN_BINDING", AXIS2_HASH_KEY_STRING));
 
-    size = axis2_array_list_size(binding_impl->f_ops, env);
+    size = axutil_array_list_size(binding_impl->f_ops, env);
     for (i = 0; i < size; i++)
     {
         void *bind_op = NULL;
         axis2_qname_t *qname_l = NULL;
 
-        bind_op = axis2_array_list_get(binding_impl->f_ops,
+        bind_op = axutil_array_list_get(binding_impl->f_ops,
                 env, i);
         qname_l = (axis2_qname_t *) WODEN_BINDING_OP_ELEMENT_GET_REF(
                     bind_op, env);

Modified: webservices/axis2/trunk/c/woden/src/wsdl/woden_configurable.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/woden/src/wsdl/woden_configurable.c?view=diff&rev=524073&r1=524072&r2=524073
==============================================================================
--- webservices/axis2/trunk/c/woden/src/wsdl/woden_configurable.c (original)
+++ webservices/axis2/trunk/c/woden/src/wsdl/woden_configurable.c Fri Mar 30 06:19:43 2007
@@ -31,8 +31,8 @@
     woden_documentable_t *documentable;
     axis2_hash_t *methods;
     axis2_hash_t *super;
-    axis2_array_list_t *f_features;
-    axis2_array_list_t *f_properties;
+    axutil_array_list_t *f_features;
+    axutil_array_list_t *f_properties;
 };
 
 #define INTF_TO_IMPL(configurable) ((woden_configurable_impl_t *) configurable)
@@ -52,12 +52,12 @@
     void *configurable,
     const axis2_env_t *env);
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_configurable_get_features(
     void *configurable,
     const axis2_env_t *env);
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_configurable_get_properties(
     void *configurable,
     const axis2_env_t *env);
@@ -68,7 +68,7 @@
     const axis2_env_t *env,
     void *feature);
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_configurable_get_feature_elements(
     void *configurable,
     const axis2_env_t *env);
@@ -79,7 +79,7 @@
     const axis2_env_t *env,
     void *property);
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_configurable_get_property_elements(
     void *configurable,
     const axis2_env_t *env);
@@ -220,13 +220,13 @@
 
     if (configurable_impl->f_features)
     {
-        axis2_array_list_free(configurable_impl->f_features, env);
+        axutil_array_list_free(configurable_impl->f_features, env);
         configurable_impl->f_features = NULL;
     }
 
     if (configurable_impl->f_properties)
     {
-        axis2_array_list_free(configurable_impl->f_properties, env);
+        axutil_array_list_free(configurable_impl->f_properties, env);
         configurable_impl->f_properties = NULL;
     }
 
@@ -307,7 +307,7 @@
     return AXIS2_SUCCESS;
 }
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_configurable_get_features(
     void *configurable,
     const axis2_env_t *env)
@@ -323,7 +323,7 @@
     return configurable_impl->f_features;
 }
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_configurable_get_properties(
     void *configurable,
     const axis2_env_t *env)
@@ -356,18 +356,18 @@
 
     if (!configurable_impl->f_features)
     {
-        configurable_impl->f_features = axis2_array_list_create(env, 0);
+        configurable_impl->f_features = axutil_array_list_create(env, 0);
         if (!configurable_impl->f_features)
         {
             AXIS2_ERROR_SET(env->error, AXIS2_ERROR_NO_MEMORY, AXIS2_FAILURE);
             return AXIS2_FAILURE;
         }
     }
-    return axis2_array_list_add(configurable_impl->f_features, env,
+    return axutil_array_list_add(configurable_impl->f_features, env,
             feature);
 }
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_configurable_get_feature_elements(
     void *configurable,
     const axis2_env_t *env)
@@ -400,18 +400,18 @@
 
     if (!configurable_impl->f_properties)
     {
-        configurable_impl->f_properties = axis2_array_list_create(env, 0);
+        configurable_impl->f_properties = axutil_array_list_create(env, 0);
         if (!configurable_impl->f_properties)
         {
             AXIS2_ERROR_SET(env->error, AXIS2_ERROR_NO_MEMORY, AXIS2_FAILURE);
             return AXIS2_FAILURE;
         }
     }
-    return axis2_array_list_add(configurable_impl->f_properties, env,
+    return axutil_array_list_add(configurable_impl->f_properties, env,
             property);
 }
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_configurable_get_property_elements(
     void *configurable,
     const axis2_env_t *env)

Modified: webservices/axis2/trunk/c/woden/src/wsdl/woden_documentable.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/woden/src/wsdl/woden_documentable.c?view=diff&rev=524073&r1=524072&r2=524073
==============================================================================
--- webservices/axis2/trunk/c/woden/src/wsdl/woden_documentable.c (original)
+++ webservices/axis2/trunk/c/woden/src/wsdl/woden_documentable.c Fri Mar 30 06:19:43 2007
@@ -31,7 +31,7 @@
     woden_wsdl_obj_t *wsdl_obj;
     axis2_hash_t *methods;
     axis2_hash_t *super;
-    axis2_array_list_t *f_doc_elems;
+    axutil_array_list_t *f_doc_elems;
 };
 
 #define INTF_TO_IMPL(documentable) ((woden_documentable_impl_t *) documentable)
@@ -57,7 +57,7 @@
     const axis2_env_t *env,
     woden_documentation_element_t *documentation);
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_documentable_get_documentation_elements(
     void *documentable,
     const axis2_env_t *env);
@@ -194,7 +194,7 @@
 
     if (documentable_impl->f_doc_elems)
     {
-        axis2_array_list_free(documentable_impl->f_doc_elems, env);
+        axutil_array_list_free(documentable_impl->f_doc_elems, env);
         documentable_impl->f_doc_elems = NULL;
     }
 
@@ -307,18 +307,18 @@
 
     if (!documentable_impl->f_doc_elems)
     {
-        documentable_impl->f_doc_elems = axis2_array_list_create(env, 0);
+        documentable_impl->f_doc_elems = axutil_array_list_create(env, 0);
         if (!documentable_impl->f_doc_elems)
         {
             AXIS2_ERROR_SET(env->error, AXIS2_ERROR_NO_MEMORY, AXIS2_FAILURE);
             return AXIS2_FAILURE;
         }
     }
-    return axis2_array_list_add(documentable_impl->f_doc_elems, env,
+    return axutil_array_list_add(documentable_impl->f_doc_elems, env,
             documentation);
 }
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_documentable_get_documentation_elements(
     void *documentable,
     const axis2_env_t *env)

Modified: webservices/axis2/trunk/c/woden/src/wsdl/woden_element_extensible.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/woden/src/wsdl/woden_element_extensible.c?view=diff&rev=524073&r1=524072&r2=524073
==============================================================================
--- webservices/axis2/trunk/c/woden/src/wsdl/woden_element_extensible.c (original)
+++ webservices/axis2/trunk/c/woden/src/wsdl/woden_element_extensible.c Fri Mar 30 06:19:43 2007
@@ -32,8 +32,8 @@
     woden_element_extensible_t extensible;
     woden_obj_types_t obj_type;
     axis2_hash_t *super;
-    axis2_array_list_t *f_ext_elements;
-    axis2_array_list_t *temp_elems;
+    axutil_array_list_t *f_ext_elements;
+    axutil_array_list_t *temp_elems;
 };
 
 #define INTF_TO_IMPL(extensible) \
@@ -66,12 +66,12 @@
     const axis2_env_t *env,
     woden_ext_element_t *ext_el);
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_element_extensible_get_ext_elements(
     void *extensible,
     const axis2_env_t *env);
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_element_extensible_get_ext_elements_of_type(
     void *extensible,
     const axis2_env_t *env,
@@ -122,7 +122,7 @@
     extensible_impl->extensible.ops->has_ext_elements_for_namespace =
         woden_element_extensible_has_ext_elements_for_namespace;
 
-    extensible_impl->f_ext_elements = axis2_array_list_create(env, 0);
+    extensible_impl->f_ext_elements = axutil_array_list_create(env, 0);
     extensible_impl->super = axis2_hash_make(env);
     if (!extensible_impl->super)
     {
@@ -146,22 +146,22 @@
 
     if (extensible_impl->f_ext_elements)
     {
-        axis2_array_list_free(extensible_impl->f_ext_elements, env);
+        axutil_array_list_free(extensible_impl->f_ext_elements, env);
         extensible_impl->f_ext_elements = NULL;
     }
 
     if (extensible_impl->temp_elems)
     {
         int size = 0, i = 0;
-        size = axis2_array_list_size(extensible_impl->temp_elems, env);
+        size = axutil_array_list_size(extensible_impl->temp_elems, env);
         for (i = 0; i < size; i++)
         {
             void *ext_el = NULL;
 
-            ext_el = axis2_array_list_get(extensible_impl->temp_elems, env, i);
+            ext_el = axutil_array_list_get(extensible_impl->temp_elems, env, i);
             WODEN_XML_ATTR_FREE(ext_el, env);
         }
-        axis2_array_list_free(extensible_impl->temp_elems, env);
+        axutil_array_list_free(extensible_impl->temp_elems, env);
         extensible_impl->temp_elems = NULL;
     }
 
@@ -280,7 +280,7 @@
             "WODEN_ELEMENT_EXTENSIBLE", AXIS2_HASH_KEY_STRING));
 
 
-    return axis2_array_list_add(extensible_impl->f_ext_elements, env, ext_el);
+    return axutil_array_list_add(extensible_impl->f_ext_elements, env, ext_el);
 }
 
 axis2_status_t AXIS2_CALL
@@ -299,12 +299,12 @@
     extensible_impl = INTF_TO_IMPL(axis2_hash_get(super,
             "WODEN_ELEMENT_EXTENSIBLE", AXIS2_HASH_KEY_STRING));
 
-    index = axis2_array_list_index_of(extensible_impl->f_ext_elements, env, ext_el);
-    axis2_array_list_remove(extensible_impl->f_ext_elements, env, index);
+    index = axutil_array_list_index_of(extensible_impl->f_ext_elements, env, ext_el);
+    axutil_array_list_remove(extensible_impl->f_ext_elements, env, index);
     return AXIS2_SUCCESS;
 }
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_element_extensible_get_ext_elements(void *extensible,
         const axis2_env_t *env)
 {
@@ -319,7 +319,7 @@
     return extensible_impl->f_ext_elements;
 }
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_element_extensible_get_ext_elements_of_type(void *extensible,
         const axis2_env_t *env,
         axis2_qname_t *ext_type)
@@ -338,31 +338,31 @@
     if (extensible_impl->temp_elems)
     {
         int size = 0, i = 0;
-        size = axis2_array_list_size(extensible_impl->temp_elems, env);
+        size = axutil_array_list_size(extensible_impl->temp_elems, env);
         for (i = 0; i < size; i++)
         {
             void *ext_el = NULL;
 
-            ext_el = axis2_array_list_get(extensible_impl->temp_elems, env, i);
+            ext_el = axutil_array_list_get(extensible_impl->temp_elems, env, i);
             WODEN_XML_ATTR_FREE(ext_el, env);
         }
-        axis2_array_list_free(extensible_impl->temp_elems, env);
+        axutil_array_list_free(extensible_impl->temp_elems, env);
         extensible_impl->temp_elems = NULL;
     }
 
-    extensible_impl->temp_elems = axis2_array_list_create(env, 0);
-    size = axis2_array_list_size(extensible_impl->f_ext_elements, env);
+    extensible_impl->temp_elems = axutil_array_list_create(env, 0);
+    size = axutil_array_list_size(extensible_impl->f_ext_elements, env);
     for (i = 0; i < size; i++)
     {
         woden_ext_element_t *ext_elem = NULL;
         axis2_qname_t *ext_type_l = NULL;
 
-        ext_elem = (woden_ext_element_t *)axis2_array_list_get(
+        ext_elem = (woden_ext_element_t *)axutil_array_list_get(
                     extensible_impl->f_ext_elements, env, i);
         ext_type_l = WODEN_EXT_ELEMENT_GET_EXT_TYPE(ext_elem, env);
         if (AXIS2_TRUE == axis2_qname_equals(ext_type, env, ext_type_l))
         {
-            axis2_array_list_add(extensible_impl->temp_elems, env, ext_elem);
+            axutil_array_list_add(extensible_impl->temp_elems, env, ext_elem);
         }
     }
     return extensible_impl->temp_elems;
@@ -388,14 +388,14 @@
             "WODEN_ELEMENT_EXTENSIBLE", AXIS2_HASH_KEY_STRING));
 
     ext_ns = axis2_uri_to_string(namespc, env, AXIS2_URI_UNP_OMITUSERINFO);
-    size = axis2_array_list_size(extensible_impl->f_ext_elements, env);
+    size = axutil_array_list_size(extensible_impl->f_ext_elements, env);
     for (i = 0; i < size; i++)
     {
         woden_ext_element_t *ext_elem = NULL;
         axis2_qname_t *ext_type = NULL;
         axis2_char_t *uri = NULL;
 
-        ext_elem = (woden_ext_element_t *) axis2_array_list_get(
+        ext_elem = (woden_ext_element_t *) axutil_array_list_get(
                     extensible_impl->f_ext_elements, env, i);
         ext_type = WODEN_EXT_ELEMENT_GET_EXT_TYPE(ext_elem, env);
         uri = axis2_qname_get_uri(ext_type, env);

Modified: webservices/axis2/trunk/c/woden/src/wsdl/woden_interface.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/woden/src/wsdl/woden_interface.c?view=diff&rev=524073&r1=524072&r2=524073
==============================================================================
--- webservices/axis2/trunk/c/woden/src/wsdl/woden_interface.c (original)
+++ webservices/axis2/trunk/c/woden/src/wsdl/woden_interface.c Fri Mar 30 06:19:43 2007
@@ -36,12 +36,12 @@
     woden_obj_types_t obj_type;
     axis2_hash_t *super;
     axis2_hash_t *methods;
-    axis2_array_list_t *f_extended_interfaces;
+    axutil_array_list_t *f_extended_interfaces;
     axis2_qname_t *f_qname;
-    axis2_array_list_t *f_extends_qnames;
-    axis2_array_list_t *f_style_default;
-    axis2_array_list_t *f_interface_fault_elements;
-    axis2_array_list_t *f_interface_op_elements;
+    axutil_array_list_t *f_extends_qnames;
+    axutil_array_list_t *f_style_default;
+    axutil_array_list_t *f_interface_fault_elements;
+    axutil_array_list_t *f_interface_op_elements;
 };
 
 #define INTF_TO_IMPL(interface) ((woden_interface_impl_t *) interface)
@@ -74,12 +74,12 @@
     void *interface,
     const axis2_env_t *env);
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_interface_get_extended_interfaces(
     void *interface,
     const axis2_env_t *env);
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_interface_get_interface_faults(
     void *interface,
     const axis2_env_t *env);
@@ -90,7 +90,7 @@
     const axis2_env_t *env,
     axis2_qname_t *qname);
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_interface_get_interface_ops(
     void *interface,
     const axis2_env_t *env);
@@ -126,7 +126,7 @@
     const axis2_env_t *env,
     woden_wsdl_element_t *qname);
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_interface_get_extends_qnames(
     void *interface,
     const axis2_env_t *env);
@@ -137,7 +137,7 @@
     const axis2_env_t *env,
     void *fault);
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_interface_get_interface_fault_elements(
     void *interface,
     const axis2_env_t *env);
@@ -148,7 +148,7 @@
     const axis2_env_t *env,
     void *op);
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_interface_get_interface_op_elements(
     void *interface,
     const axis2_env_t *env);
@@ -516,7 +516,7 @@
 
     if (interface_impl->f_extended_interfaces)
     {
-        axis2_array_list_free(interface_impl->f_extended_interfaces, env);
+        axutil_array_list_free(interface_impl->f_extended_interfaces, env);
         interface_impl->f_extended_interfaces = NULL;
     }
 
@@ -528,25 +528,25 @@
 
     if (interface_impl->f_extends_qnames)
     {
-        axis2_array_list_free(interface_impl->f_extends_qnames, env);
+        axutil_array_list_free(interface_impl->f_extends_qnames, env);
         interface_impl->f_extends_qnames = NULL;
     }
 
     if (interface_impl->f_style_default)
     {
-        axis2_array_list_free(interface_impl->f_style_default, env);
+        axutil_array_list_free(interface_impl->f_style_default, env);
         interface_impl->f_style_default = NULL;
     }
 
     if (interface_impl->f_interface_fault_elements)
     {
-        axis2_array_list_free(interface_impl->f_interface_fault_elements, env);
+        axutil_array_list_free(interface_impl->f_interface_fault_elements, env);
         interface_impl->f_interface_fault_elements = NULL;
     }
 
     if (interface_impl->f_interface_op_elements)
     {
-        axis2_array_list_free(interface_impl->f_interface_op_elements, env);
+        axutil_array_list_free(interface_impl->f_interface_op_elements, env);
         interface_impl->f_interface_op_elements = NULL;
     }
 
@@ -701,7 +701,7 @@
     return interface_impl->f_qname;
 }
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_interface_get_extended_interfaces(
     void *interface,
     const axis2_env_t *env)
@@ -717,7 +717,7 @@
     return interface_impl->f_extended_interfaces;
 }
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_interface_get_interface_faults(
     void *interface,
     const axis2_env_t *env)
@@ -750,13 +750,13 @@
     interface_impl = INTF_TO_IMPL(axis2_hash_get(super,
             "WODEN_INTERFACE", AXIS2_HASH_KEY_STRING));
 
-    size = axis2_array_list_size(interface_impl->f_interface_fault_elements, env);
+    size = axutil_array_list_size(interface_impl->f_interface_fault_elements, env);
     for (i = 0; i < size; i++)
     {
         void *flt = NULL;
         axis2_qname_t *qname_l = NULL;
 
-        flt = axis2_array_list_get(interface_impl->f_interface_fault_elements,
+        flt = axutil_array_list_get(interface_impl->f_interface_fault_elements,
                 env, i);
         qname_l = (axis2_qname_t *) WODEN_INTERFACE_FAULT_GET_QNAME(flt, env);
         if (AXIS2_TRUE == axis2_qname_equals(qname, env, qname_l))
@@ -769,7 +769,7 @@
     return fault;
 }
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_interface_get_interface_ops(
     void *interface,
     const axis2_env_t *env)
@@ -844,14 +844,14 @@
 
     if (!interface_impl->f_style_default)
     {
-        interface_impl->f_style_default = axis2_array_list_create(env, 0);
+        interface_impl->f_style_default = axutil_array_list_create(env, 0);
         if (!interface_impl->f_style_default)
         {
             AXIS2_ERROR_SET(env->error, AXIS2_ERROR_NO_MEMORY, AXIS2_FAILURE);
             return AXIS2_FAILURE;
         }
     }
-    axis2_array_list_add(interface_impl->f_style_default, env, axis2_uri_clone(
+    axutil_array_list_add(interface_impl->f_style_default, env, axis2_uri_clone(
                 uri, env));
 
     return AXIS2_SUCCESS;
@@ -890,19 +890,19 @@
 
     if (!interface_impl->f_extends_qnames)
     {
-        interface_impl->f_extends_qnames = axis2_array_list_create(env, 0);
+        interface_impl->f_extends_qnames = axutil_array_list_create(env, 0);
         if (!interface_impl->f_extends_qnames)
         {
             AXIS2_ERROR_SET(env->error, AXIS2_ERROR_NO_MEMORY, AXIS2_FAILURE);
             return AXIS2_FAILURE;
         }
     }
-    axis2_array_list_add(interface_impl->f_extends_qnames, env, qname);
+    axutil_array_list_add(interface_impl->f_extends_qnames, env, qname);
 
     return AXIS2_SUCCESS;
 }
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_interface_get_extends_qnames(
     void *interface,
     const axis2_env_t *env)
@@ -935,19 +935,19 @@
 
     if (!interface_impl->f_interface_fault_elements)
     {
-        interface_impl->f_interface_fault_elements = axis2_array_list_create(env, 0);
+        interface_impl->f_interface_fault_elements = axutil_array_list_create(env, 0);
         if (!interface_impl->f_interface_fault_elements)
         {
             AXIS2_ERROR_SET(env->error, AXIS2_ERROR_NO_MEMORY, AXIS2_FAILURE);
             return AXIS2_FAILURE;
         }
     }
-    axis2_array_list_add(interface_impl->f_interface_fault_elements, env, fault);
+    axutil_array_list_add(interface_impl->f_interface_fault_elements, env, fault);
 
     return AXIS2_SUCCESS;
 }
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_interface_get_interface_fault_elements(
     void *interface,
     const axis2_env_t *env)
@@ -980,19 +980,19 @@
 
     if (!interface_impl->f_interface_op_elements)
     {
-        interface_impl->f_interface_op_elements = axis2_array_list_create(env, 0);
+        interface_impl->f_interface_op_elements = axutil_array_list_create(env, 0);
         if (!interface_impl->f_interface_op_elements)
         {
             AXIS2_ERROR_SET(env->error, AXIS2_ERROR_NO_MEMORY, AXIS2_FAILURE);
             return AXIS2_FAILURE;
         }
     }
-    axis2_array_list_add(interface_impl->f_interface_op_elements, env, op);
+    axutil_array_list_add(interface_impl->f_interface_op_elements, env, op);
 
     return AXIS2_SUCCESS;
 }
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_interface_get_interface_op_elements(
     void *interface,
     const axis2_env_t *env)
@@ -1025,14 +1025,14 @@
 
     if (!interface_impl->f_extended_interfaces)
     {
-        interface_impl->f_extended_interfaces = axis2_array_list_create(env, 0);
+        interface_impl->f_extended_interfaces = axutil_array_list_create(env, 0);
         if (!interface_impl->f_extended_interfaces)
         {
             AXIS2_ERROR_SET(env->error, AXIS2_ERROR_NO_MEMORY, AXIS2_FAILURE);
             return AXIS2_FAILURE;
         }
     }
-    axis2_array_list_add(interface_impl->f_extended_interfaces, env, extended_interface);
+    axutil_array_list_add(interface_impl->f_extended_interfaces, env, extended_interface);
     return AXIS2_SUCCESS;
 }
 

Modified: webservices/axis2/trunk/c/woden/src/wsdl/woden_interface_op.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/woden/src/wsdl/woden_interface_op.c?view=diff&rev=524073&r1=524072&r2=524073
==============================================================================
--- webservices/axis2/trunk/c/woden/src/wsdl/woden_interface_op.c (original)
+++ webservices/axis2/trunk/c/woden/src/wsdl/woden_interface_op.c Fri Mar 30 06:19:43 2007
@@ -39,9 +39,9 @@
     axis2_hash_t *methods;
     axis2_qname_t *f_qname;
     axis2_uri_t *f_msg_exchange_pattern;
-    axis2_array_list_t *f_style;
-    axis2_array_list_t *f_msg_refs;
-    axis2_array_list_t *f_fault_refs;
+    axutil_array_list_t *f_style;
+    axutil_array_list_t *f_msg_refs;
+    axutil_array_list_t *f_fault_refs;
 };
 
 #define INTF_TO_IMPL(interface_op) ((woden_interface_op_impl_t *) interface_op)
@@ -80,17 +80,17 @@
     void *interface_op,
     const axis2_env_t *env);
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_interface_op_get_interface_msg_refs(
     void *interface_op,
     const axis2_env_t *env);
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_interface_op_get_interface_fault_refs(
     void *interface_op,
     const axis2_env_t *env);
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_interface_op_get_style(
     void *interface_op,
     const axis2_env_t *env);
@@ -145,7 +145,7 @@
     const axis2_env_t *env,
     void *msg_ref);
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_interface_op_get_interface_msg_ref_elements(
     void *interface_op,
     const axis2_env_t *env);
@@ -162,7 +162,7 @@
     const axis2_env_t *env,
     void *fault_ref);
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_interface_op_get_interface_fault_ref_elements(
     void *interface_op,
     const axis2_env_t *env);
@@ -736,19 +736,19 @@
 
     if (interface_op_impl->f_style)
     {
-        axis2_array_list_free(interface_op_impl->f_style, env);
+        axutil_array_list_free(interface_op_impl->f_style, env);
         interface_op_impl->f_style = NULL;
     }
 
     if (interface_op_impl->f_msg_refs)
     {
-        axis2_array_list_free(interface_op_impl->f_msg_refs, env);
+        axutil_array_list_free(interface_op_impl->f_msg_refs, env);
         interface_op_impl->f_msg_refs = NULL;
     }
 
     if (interface_op_impl->f_fault_refs)
     {
-        axis2_array_list_free(interface_op_impl->f_fault_refs, env);
+        axutil_array_list_free(interface_op_impl->f_fault_refs, env);
         interface_op_impl->f_fault_refs = NULL;
     }
 
@@ -921,7 +921,7 @@
     return interface_op_impl->f_msg_exchange_pattern;
 }
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_interface_op_get_interface_msg_refs(
     void *interface_op,
     const axis2_env_t *env)
@@ -937,7 +937,7 @@
     return interface_op_impl->f_msg_refs;
 }
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_interface_op_get_interface_fault_refs(
     void *interface_op,
     const axis2_env_t *env)
@@ -953,7 +953,7 @@
     return interface_op_impl->f_fault_refs;
 }
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_interface_op_get_style(
     void *interface_op,
     const axis2_env_t *env)
@@ -1073,14 +1073,14 @@
 
     if (!interface_op_impl->f_style)
     {
-        interface_op_impl->f_style = axis2_array_list_create(env, 0);
+        interface_op_impl->f_style = axutil_array_list_create(env, 0);
         if (!interface_op_impl->f_style)
         {
             AXIS2_ERROR_SET(env->error, AXIS2_ERROR_NO_MEMORY, AXIS2_FAILURE);
             return AXIS2_FAILURE;
         }
     }
-    axis2_array_list_add(interface_op_impl->f_style, env, axis2_uri_clone(uri, env));
+    axutil_array_list_add(interface_op_impl->f_style, env, axis2_uri_clone(uri, env));
     return AXIS2_SUCCESS;
 }
 
@@ -1100,8 +1100,8 @@
     interface_op_impl = INTF_TO_IMPL(axis2_hash_get(super,
             "WODEN_INTERFACE_OP", AXIS2_HASH_KEY_STRING));
 
-    index = axis2_array_list_index_of(interface_op_impl->f_style, env, uri);
-    axis2_array_list_remove(interface_op_impl->f_style, env, index);
+    index = axutil_array_list_index_of(interface_op_impl->f_style, env, uri);
+    axutil_array_list_remove(interface_op_impl->f_style, env, index);
     return AXIS2_SUCCESS;
 }
 
@@ -1122,14 +1122,14 @@
 
     if (!interface_op_impl->f_msg_refs)
     {
-        interface_op_impl->f_msg_refs = axis2_array_list_create(env, 0);
+        interface_op_impl->f_msg_refs = axutil_array_list_create(env, 0);
         if (!interface_op_impl->f_msg_refs)
         {
             AXIS2_ERROR_SET(env->error, AXIS2_ERROR_NO_MEMORY, AXIS2_FAILURE);
             return AXIS2_FAILURE;
         }
     }
-    axis2_array_list_add(interface_op_impl->f_msg_refs, env, msg_ref);
+    axutil_array_list_add(interface_op_impl->f_msg_refs, env, msg_ref);
 
     return AXIS2_SUCCESS;
 }
@@ -1150,13 +1150,13 @@
     interface_op_impl = INTF_TO_IMPL(axis2_hash_get(super,
             "WODEN_INTERFACE_OP", AXIS2_HASH_KEY_STRING));
 
-    index = axis2_array_list_index_of(interface_op_impl->f_msg_refs, env, msg_ref);
-    axis2_array_list_remove(interface_op_impl->f_msg_refs, env, index);
+    index = axutil_array_list_index_of(interface_op_impl->f_msg_refs, env, msg_ref);
+    axutil_array_list_remove(interface_op_impl->f_msg_refs, env, index);
     return AXIS2_SUCCESS;
 }
 
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_interface_op_get_interface_msg_ref_elements(
     void *interface_op,
     const axis2_env_t *env)
@@ -1189,14 +1189,14 @@
 
     if (!interface_op_impl->f_fault_refs)
     {
-        interface_op_impl->f_fault_refs = axis2_array_list_create(env, 0);
+        interface_op_impl->f_fault_refs = axutil_array_list_create(env, 0);
         if (!interface_op_impl->f_fault_refs)
         {
             AXIS2_ERROR_SET(env->error, AXIS2_ERROR_NO_MEMORY, AXIS2_FAILURE);
             return AXIS2_FAILURE;
         }
     }
-    axis2_array_list_add(interface_op_impl->f_fault_refs, env, fault_ref);
+    axutil_array_list_add(interface_op_impl->f_fault_refs, env, fault_ref);
 
     return AXIS2_SUCCESS;
 }
@@ -1217,13 +1217,13 @@
     interface_op_impl = INTF_TO_IMPL(axis2_hash_get(super,
             "WODEN_INTERFACE_OP", AXIS2_HASH_KEY_STRING));
 
-    index = axis2_array_list_index_of(interface_op_impl->f_fault_refs, env, fault_ref);
-    axis2_array_list_remove(interface_op_impl->f_fault_refs, env, index);
+    index = axutil_array_list_index_of(interface_op_impl->f_fault_refs, env, fault_ref);
+    axutil_array_list_remove(interface_op_impl->f_fault_refs, env, index);
     return AXIS2_SUCCESS;
 }
 
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_interface_op_get_interface_fault_ref_elements(
     void *interface_op,
     const axis2_env_t *env)

Modified: webservices/axis2/trunk/c/woden/src/wsdl/woden_nested_configurable.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/woden/src/wsdl/woden_nested_configurable.c?view=diff&rev=524073&r1=524072&r2=524073
==============================================================================
--- webservices/axis2/trunk/c/woden/src/wsdl/woden_nested_configurable.c (original)
+++ webservices/axis2/trunk/c/woden/src/wsdl/woden_nested_configurable.c Fri Mar 30 06:19:43 2007
@@ -31,7 +31,7 @@
     woden_configurable_t *configurable;
     axis2_hash_t *methods;
     axis2_hash_t *super;
-    axis2_array_list_t *f_parent;
+    axutil_array_list_t *f_parent;
 };
 
 #define INTF_TO_IMPL(nested_configurable) ((woden_nested_configurable_impl_t *) nested_configurable)

Modified: webservices/axis2/trunk/c/woden/src/wsdl/woden_soap_fault_subcodes.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/woden/src/wsdl/woden_soap_fault_subcodes.c?view=diff&rev=524073&r1=524072&r2=524073
==============================================================================
--- webservices/axis2/trunk/c/woden/src/wsdl/woden_soap_fault_subcodes.c (original)
+++ webservices/axis2/trunk/c/woden/src/wsdl/woden_soap_fault_subcodes.c Fri Mar 30 06:19:43 2007
@@ -27,7 +27,7 @@
 {
     woden_soap_fault_subcodes_t soap_fault_subcodes;
     axis2_char_t *f_token;
-    axis2_array_list_t *f_subcode_qns;
+    axutil_array_list_t *f_subcode_qns;
 };
 
 #define INTF_TO_IMPL(soap_fault_subcodes) ((woden_soap_fault_subcodes_impl_t *) soap_fault_subcodes)
@@ -49,7 +49,7 @@
     void *soap_fault_subcodes,
     const axis2_env_t *env);
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_soap_fault_subcodes_get_qnames(
     void *soap_fault_subcodes,
     const axis2_env_t *env);
@@ -95,7 +95,7 @@
 woden_soap_fault_subcodes_create(
     const axis2_env_t *env,
     axis2_char_t *token,
-    axis2_array_list_t *subcode_qns)
+    axutil_array_list_t *subcode_qns)
 {
     woden_soap_fault_subcodes_impl_t *soap_fault_subcodes_impl = NULL;
 
@@ -128,15 +128,15 @@
     {
         int i = 0, size = 0;
 
-        size = axis2_array_list_size(soap_fault_subcodes_impl->f_subcode_qns,
+        size = axutil_array_list_size(soap_fault_subcodes_impl->f_subcode_qns,
                 env);
         for (i = 0; i < size; i++)
         {
-            axis2_qname_t *qname = axis2_array_list_get(soap_fault_subcodes_impl->
+            axis2_qname_t *qname = axutil_array_list_get(soap_fault_subcodes_impl->
                     f_subcode_qns, env, i);
             axis2_qname_free(qname, env);
         }
-        axis2_array_list_free(soap_fault_subcodes_impl->f_subcode_qns, env);
+        axutil_array_list_free(soap_fault_subcodes_impl->f_subcode_qns, env);
         soap_fault_subcodes_impl->f_subcode_qns = NULL;
     }
 
@@ -178,7 +178,7 @@
     AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
     soap_fault_subcodes_impl = INTF_TO_IMPL(soap_fault_subcodes);
 
-    size = axis2_array_list_size(soap_fault_subcodes_impl->f_subcode_qns, env);
+    size = axutil_array_list_size(soap_fault_subcodes_impl->f_subcode_qns, env);
     return (size > 0);
 }
 
@@ -195,7 +195,7 @@
     return (NULL != soap_fault_subcodes_impl->f_token);
 }
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_soap_fault_subcodes_get_qnames(
     void *soap_fault_subcodes,
     const axis2_env_t *env)

Modified: webservices/axis2/trunk/c/woden/src/wsdl/woden_types.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/woden/src/wsdl/woden_types.c?view=diff&rev=524073&r1=524072&r2=524073
==============================================================================
--- webservices/axis2/trunk/c/woden/src/wsdl/woden_types.c (original)
+++ webservices/axis2/trunk/c/woden/src/wsdl/woden_types.c Fri Mar 30 06:19:43 2007
@@ -36,8 +36,8 @@
     axis2_hash_t *super;
     axis2_hash_t *methods;
     axis2_char_t *f_type_system;
-    axis2_array_list_t *f_schemas;
-    axis2_array_list_t *schema_defs;
+    axutil_array_list_t *f_schemas;
+    axutil_array_list_t *schema_defs;
 };
 
 #define INTF_TO_IMPL(types) ((woden_types_impl_t *) types)
@@ -85,23 +85,23 @@
     const axis2_env_t *env,
     xml_schema_t *schema);
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_types_get_schemas(
     void *types,
     const axis2_env_t *env);
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_types_get_schemas_with_namespace(
     void *types,
     const axis2_env_t *env,
     axis2_uri_t *namespc);
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_types_get_inlined_schemas(
     void *types,
     const axis2_env_t *env);
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_types_get_imported_schemas(
     void *types,
     const axis2_env_t *env);
@@ -118,12 +118,12 @@
     const axis2_env_t *env,
     axis2_qname_t *qname);
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_types_get_referenceable_schema_defs(
     void *types,
     const axis2_env_t *env);
 
-static axis2_array_list_t *
+static axutil_array_list_t *
 woden_types_get_referenceable_schema_defs_with_namespace(
     void *types,
     const axis2_env_t *env,
@@ -377,7 +377,7 @@
     types_impl->types.ops = AXIS2_MALLOC(env->allocator,
             sizeof(woden_types_ops_t));
 
-    types_impl->f_schemas = axis2_array_list_create(env, 0);
+    types_impl->f_schemas = axutil_array_list_create(env, 0);
 
     types_impl->types.ops->free = woden_types_free;
     types_impl->types.ops->super_objs = woden_types_super_objs;
@@ -565,13 +565,13 @@
 
     if (types_impl->f_schemas)
     {
-        axis2_array_list_free(types_impl->f_schemas, env);
+        axutil_array_list_free(types_impl->f_schemas, env);
         types_impl->f_schemas = NULL;
     }
 
     if (types_impl->schema_defs)
     {
-        axis2_array_list_free(types_impl->schema_defs, env);
+        axutil_array_list_free(types_impl->schema_defs, env);
         types_impl->schema_defs = NULL;
     }
 
@@ -772,7 +772,7 @@
     types_impl = INTF_TO_IMPL(axis2_hash_get(super,
             "WODEN_TYPES", AXIS2_HASH_KEY_STRING));
 
-    return axis2_array_list_add(types_impl->f_schemas, env, schema);
+    return axutil_array_list_add(types_impl->f_schemas, env, schema);
 }
 
 axis2_status_t AXIS2_CALL
@@ -792,13 +792,13 @@
     types_impl = INTF_TO_IMPL(axis2_hash_get(super,
             "WODEN_TYPES", AXIS2_HASH_KEY_STRING));
 
-    index = axis2_array_list_index_of(types_impl->f_schemas, env, schema);
-    axis2_array_list_remove(types_impl->f_schemas, env, index);
+    index = axutil_array_list_index_of(types_impl->f_schemas, env, schema);
+    axutil_array_list_remove(types_impl->f_schemas, env, index);
     code = AXIS2_ERROR_GET_STATUS_CODE(env->error);
     return code;
 }
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_types_get_schemas(
     void *types,
     const axis2_env_t *env)
@@ -813,7 +813,7 @@
     return types_impl->f_schemas;
 }
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_types_get_schemas_with_namespace(
     void *types,
     const axis2_env_t *env,
@@ -831,26 +831,26 @@
 
     if (namespc)
         str_namespc = axis2_uri_to_string(namespc, env, AXIS2_URI_UNP_OMITUSERINFO);
-    size = axis2_array_list_size(types_impl->f_schemas, env);
+    size = axutil_array_list_size(types_impl->f_schemas, env);
     for (i = 0; i < size; i++)
     {
         axis2_char_t *str_namespc_l = NULL;
         woden_schema_t *schema = (woden_schema_t *)
-                axis2_array_list_get(types_impl->f_schemas, env, i);
+                axutil_array_list_get(types_impl->f_schemas, env, i);
         str_namespc_l = WODEN_SCHEMA_GET_NAMESPACE_AS_STRING(schema, env);
         /* get schemas whose namespace is missing */
         if (!str_namespc && !str_namespc_l)
-            axis2_array_list_add(types_impl->schema_defs, env, schema);
+            axutil_array_list_add(types_impl->schema_defs, env, schema);
         else if (str_namespc && str_namespc_l && 0 == axis2_strcmp(str_namespc,
                 str_namespc_l))
         {
-            axis2_array_list_add(types_impl->schema_defs , env, schema);
+            axutil_array_list_add(types_impl->schema_defs , env, schema);
         }
     }
     return types_impl->schema_defs;
 }
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_types_get_inlined_schemas(
     void *types,
     const axis2_env_t *env)
@@ -864,20 +864,20 @@
     types_impl = INTF_TO_IMPL(axis2_hash_get(super,
             "WODEN_TYPES", AXIS2_HASH_KEY_STRING));
 
-    size = axis2_array_list_size(types_impl->f_schemas, env);
+    size = axutil_array_list_size(types_impl->f_schemas, env);
     for (i = 0; i < size; i++)
     {
         woden_schema_t *s = (woden_schema_t *)
-                axis2_array_list_get(types_impl->f_schemas, env, i);
+                axutil_array_list_get(types_impl->f_schemas, env, i);
         if (WODEN_INLINED_SCHEMA == WODEN_SCHEMA_TYPE(s, env))
         {
-            axis2_array_list_add(types_impl->schema_defs, env, s);
+            axutil_array_list_add(types_impl->schema_defs, env, s);
         }
     }
     return types_impl->schema_defs;
 }
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_types_get_imported_schemas(
     void *types,
     const axis2_env_t *env)
@@ -891,14 +891,14 @@
     types_impl = INTF_TO_IMPL(axis2_hash_get(super,
             "WODEN_TYPES", AXIS2_HASH_KEY_STRING));
 
-    size = axis2_array_list_size(types_impl->f_schemas, env);
+    size = axutil_array_list_size(types_impl->f_schemas, env);
     for (i = 0; i < size; i++)
     {
         woden_schema_t *s = (woden_schema_t *)
-                axis2_array_list_get(types_impl->f_schemas, env, i);
+                axutil_array_list_get(types_impl->f_schemas, env, i);
         if (WODEN_IMPORTED_SCHEMA == WODEN_SCHEMA_TYPE(s, env))
         {
-            axis2_array_list_add(types_impl->schema_defs, env, s);
+            axutil_array_list_add(types_impl->schema_defs, env, s);
         }
     }
     return types_impl->schema_defs;
@@ -912,7 +912,7 @@
 {
     woden_types_impl_t *types_impl = NULL;
     xml_schema_element_t *xml_schema_el = NULL;
-    axis2_array_list_t *schemas = NULL;
+    axutil_array_list_t *schemas = NULL;
     axis2_hash_t *super = NULL;
     axis2_char_t *uri = NULL;
     AXIS2_ENV_CHECK(env, NULL);
@@ -931,11 +931,11 @@
         int i = 0, size = 0;
 
         /* search the schemas with this qname's namespace */
-        size = axis2_array_list_size(schemas, env);
+        size = axutil_array_list_size(schemas, env);
         for (i = 0; i < size; i++)
         {
             xml_schema_t *xml_schema = (xml_schema_t *)
-                    axis2_array_list_get(schemas, env, i);
+                    axutil_array_list_get(schemas, env, i);
             xml_schema_el = XML_SCHEMA_GET_ELEMENT_BY_QNAME(xml_schema,
                     env, qname);
             if (xml_schema_el)
@@ -955,7 +955,7 @@
 {
     woden_types_impl_t *types_impl = NULL;
     xml_schema_type_t *xml_schema_type = NULL;
-    axis2_array_list_t *schema_refs = NULL;
+    axutil_array_list_t *schema_refs = NULL;
     axis2_hash_t *super = NULL;
 
     AXIS2_ENV_CHECK(env, NULL);
@@ -974,11 +974,11 @@
             int i = 0, size = 0;
 
             /* search the schemas with this qname's namespace */
-            size = axis2_array_list_size(schema_refs, env);
+            size = axutil_array_list_size(schema_refs, env);
             for (i = 0; i < size; i++)
             {
                 xml_schema_t *xml_schema = (xml_schema_t *)
-                        axis2_array_list_get(schema_refs, env, i);
+                        axutil_array_list_get(schema_refs, env, i);
                 xml_schema_type = XML_SCHEMA_GET_TYPE_BY_QNAME(xml_schema,
                         env, qname);
                 if (xml_schema_type)
@@ -991,7 +991,7 @@
     return xml_schema_type;
 }
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_types_get_referenceable_schema_defs(
     void *types,
     const axis2_env_t *env)
@@ -1008,37 +1008,37 @@
     if (types_impl->schema_defs)
     {
         int i = 0, size = 0;
-        size = axis2_array_list_size(types_impl->schema_defs, env);
+        size = axutil_array_list_size(types_impl->schema_defs, env);
         for (i = 0; i < size; i++)
         {
-            woden_schema_t *schema = axis2_array_list_get(
+            woden_schema_t *schema = axutil_array_list_get(
                         types_impl->schema_defs, env, i);
             WODEN_SCHEMA_FREE(schema, env);
         }
-        axis2_array_list_free(types_impl->schema_defs, env);
+        axutil_array_list_free(types_impl->schema_defs, env);
     }
-    types_impl->schema_defs = axis2_array_list_create(env, 0);
+    types_impl->schema_defs = axutil_array_list_create(env, 0);
     if (!types_impl->schema_defs)
     {
         AXIS2_ERROR_SET(env->error, AXIS2_ERROR_NO_MEMORY, AXIS2_FAILURE);
         return NULL;
     }
-    size = axis2_array_list_size(types_impl->f_schemas, env);
+    size = axutil_array_list_size(types_impl->f_schemas, env);
     for (i = 0; i < size; i++)
     {
-        void *s = axis2_array_list_get(types_impl->f_schemas, env, i);
+        void *s = axutil_array_list_get(types_impl->f_schemas, env, i);
         xml_schema_t *schema_def = WODEN_SCHEMA_GET_SCHEMA_DEF(s,
                 env);
         if (AXIS2_TRUE == WODEN_SCHEMA_IS_REFERENCEABLE(s, env) &&
                 schema_def)
         {
-            axis2_array_list_add(types_impl->schema_defs, env, schema_def);
+            axutil_array_list_add(types_impl->schema_defs, env, schema_def);
         }
     }
     return types_impl->schema_defs;
 }
 
-static axis2_array_list_t *
+static axutil_array_list_t *
 woden_types_get_referenceable_schema_defs_with_namespace(
     void *types,
     const axis2_env_t *env,
@@ -1054,11 +1054,11 @@
     types_impl = INTF_TO_IMPL(axis2_hash_get(super,
             "WODEN_TYPES", AXIS2_HASH_KEY_STRING));
 
-    size = axis2_array_list_size(types_impl->f_schemas, env);
+    size = axutil_array_list_size(types_impl->f_schemas, env);
     for (i = 0; i < size; i++)
     {
         woden_schema_t *schema =
-            (woden_schema_t *) axis2_array_list_get(types_impl->f_schemas,
+            (woden_schema_t *) axutil_array_list_get(types_impl->f_schemas,
                     env, i);
         axis2_char_t *namespc_l =
             WODEN_SCHEMA_GET_NAMESPACE_AS_STRING(schema, env);
@@ -1067,7 +1067,7 @@
         if (AXIS2_TRUE == WODEN_SCHEMA_IS_REFERENCEABLE(schema, env) &&
                 0 == axis2_strcmp(namespc, namespc_l) &&  schema_def)
         {
-            axis2_array_list_add(types_impl->schema_defs, env, schema_def);
+            axutil_array_list_add(types_impl->schema_defs, env, schema_def);
         }
     }
     return types_impl->schema_defs;
@@ -1133,12 +1133,12 @@
     types_impl = INTF_TO_IMPL(axis2_hash_get(super,
             "WODEN_TYPES", AXIS2_HASH_KEY_STRING));
 
-    size = axis2_array_list_size(types_impl->f_schemas, env);
+    size = axutil_array_list_size(types_impl->f_schemas, env);
     for (i = 0; i < size; i++)
     {
         axis2_char_t *namespc_l = NULL;
 
-        woden_schema_t *s = (woden_schema_t *) axis2_array_list_get(
+        woden_schema_t *s = (woden_schema_t *) axutil_array_list_get(
                     types_impl->f_schemas, env, i);
         if (!s)
         {

Modified: webservices/axis2/trunk/c/woden/src/wsdl/woden_wsdl_element.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/woden/src/wsdl/woden_wsdl_element.c?view=diff&rev=524073&r1=524072&r2=524073
==============================================================================
--- webservices/axis2/trunk/c/woden/src/wsdl/woden_wsdl_element.c (original)
+++ webservices/axis2/trunk/c/woden/src/wsdl/woden_wsdl_element.c Fri Mar 30 06:19:43 2007
@@ -70,12 +70,12 @@
     const axis2_env_t *env,
     axis2_qname_t *attr_type);
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_wsdl_element_get_ext_attrs(
     void *wsdl_element,
     const axis2_env_t *env);
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_wsdl_element_get_ext_attrs_for_namespace(
     void *wsdl_element,
     const axis2_env_t *env,
@@ -99,12 +99,12 @@
     const axis2_env_t *env,
     woden_ext_element_t *ext_el);
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_wsdl_element_get_ext_elements(
     void *wsdl_element,
     const axis2_env_t *env);
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_wsdl_element_get_ext_elements_of_type(
     void *wsdl_element,
     const axis2_env_t *env,
@@ -128,12 +128,12 @@
     const axis2_env_t *env,
     woden_ext_element_t *ext_el);
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_wsdl_element_get_ext_elements(
     void *wsdl_element,
     const axis2_env_t *env);
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_wsdl_element_get_ext_elements_of_type(
     void *wsdl_element,
     const axis2_env_t *env,
@@ -513,7 +513,7 @@
             env, attr_type);
 }
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_wsdl_element_get_ext_attrs(
     void *wsdl_element,
     const axis2_env_t *env)
@@ -530,7 +530,7 @@
             env);
 }
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_wsdl_element_get_ext_attrs_for_namespace(
     void *wsdl_element,
     const axis2_env_t *env,
@@ -606,7 +606,7 @@
             f_elem_ext, env, ext_el);
 }
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_wsdl_element_get_ext_elements(
     void *wsdl_element,
     const axis2_env_t *env)
@@ -623,7 +623,7 @@
             f_elem_ext, env);
 }
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_wsdl_element_get_ext_elements_of_type(
     void *wsdl_element,
     const axis2_env_t *env,

Modified: webservices/axis2/trunk/c/woden/src/wsdl/woden_wsdl_ref.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/woden/src/wsdl/woden_wsdl_ref.c?view=diff&rev=524073&r1=524072&r2=524073
==============================================================================
--- webservices/axis2/trunk/c/woden/src/wsdl/woden_wsdl_ref.c (original)
+++ webservices/axis2/trunk/c/woden/src/wsdl/woden_wsdl_ref.c Fri Mar 30 06:19:43 2007
@@ -31,7 +31,7 @@
     woden_wsdl_element_t *wsdl_element;
     axis2_hash_t *super;
     woden_obj_types_t obj_type;
-    axis2_array_list_t *f_documentation_elements;
+    axutil_array_list_t *f_documentation_elements;
     axis2_uri_t *f_location;
     woden_desc_element_t *f_desc_element;
 };
@@ -81,7 +81,7 @@
     const axis2_env_t *env,
     void *doc_el);
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_wsdl_ref_get_documentation_elements(
     void *wsdl_ref,
     const axis2_env_t *env);
@@ -375,18 +375,18 @@
 
     if (!wsdl_ref_impl->f_documentation_elements)
     {
-        wsdl_ref_impl->f_documentation_elements = axis2_array_list_create(env, 0);
+        wsdl_ref_impl->f_documentation_elements = axutil_array_list_create(env, 0);
         if (!wsdl_ref_impl->f_documentation_elements)
         {
             AXIS2_ERROR_SET(env->error, AXIS2_ERROR_NO_MEMORY, AXIS2_FAILURE);
             return AXIS2_FAILURE;
         }
     }
-    return axis2_array_list_add(wsdl_ref_impl->f_documentation_elements, env,
+    return axutil_array_list_add(wsdl_ref_impl->f_documentation_elements, env,
             doc_el);
 }
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_wsdl_ref_get_documentation_elements(
     void *wsdl_ref,
     const axis2_env_t *env)

Modified: webservices/axis2/trunk/c/woden/src/wsdl10/extensions/soap/woden_soap_address_exts.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/woden/src/wsdl10/extensions/soap/woden_soap_address_exts.c?view=diff&rev=524073&r1=524072&r2=524073
==============================================================================
--- webservices/axis2/trunk/c/woden/src/wsdl10/extensions/soap/woden_soap_address_exts.c (original)
+++ webservices/axis2/trunk/c/woden/src/wsdl10/extensions/soap/woden_soap_address_exts.c Fri Mar 30 06:19:43 2007
@@ -75,7 +75,7 @@
     void *address_exts,
     const axis2_env_t *env);
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_wsdl10_soap_address_exts_get_soap_modules(
     void *address_exts,
     const axis2_env_t *env);
@@ -378,13 +378,13 @@
     return address_exts_impl->address;
 }
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_wsdl10_soap_address_exts_get_soap_modules(
     void *address_exts,
     const axis2_env_t *env)
 {
     woden_wsdl10_soap_address_exts_impl_t *address_exts_impl = NULL;
-    axis2_array_list_t *soap_mods = NULL;
+    axutil_array_list_t *soap_mods = NULL;
     void *parent_element = NULL;
 
     AXIS2_ENV_CHECK(env, NULL);

Modified: webservices/axis2/trunk/c/woden/src/wsdl10/extensions/soap/woden_wsdl10_soap_binding_exts.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/woden/src/wsdl10/extensions/soap/woden_wsdl10_soap_binding_exts.c?view=diff&rev=524073&r1=524072&r2=524073
==============================================================================
--- webservices/axis2/trunk/c/woden/src/wsdl10/extensions/soap/woden_wsdl10_soap_binding_exts.c (original)
+++ webservices/axis2/trunk/c/woden/src/wsdl10/extensions/soap/woden_wsdl10_soap_binding_exts.c Fri Mar 30 06:19:43 2007
@@ -76,7 +76,7 @@
     void *binding_exts,
     const axis2_env_t *env);
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_wsdl10_soap_binding_exts_get_soap_modules(
     void *binding_exts,
     const axis2_env_t *env);
@@ -432,13 +432,13 @@
             NULL;
 }
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_wsdl10_soap_binding_exts_get_soap_modules(
     void *binding_exts,
     const axis2_env_t *env)
 {
     woden_wsdl10_soap_binding_exts_impl_t *binding_exts_impl = NULL;
-    axis2_array_list_t *ext_els = NULL;
+    axutil_array_list_t *ext_els = NULL;
     void *parent_element = NULL;
 
     AXIS2_ENV_CHECK(env, NULL);

Modified: webservices/axis2/trunk/c/woden/src/wsdl10/extensions/soap/woden_wsdl10_soap_binding_fault_exts.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/woden/src/wsdl10/extensions/soap/woden_wsdl10_soap_binding_fault_exts.c?view=diff&rev=524073&r1=524072&r2=524073
==============================================================================
--- webservices/axis2/trunk/c/woden/src/wsdl10/extensions/soap/woden_wsdl10_soap_binding_fault_exts.c (original)
+++ webservices/axis2/trunk/c/woden/src/wsdl10/extensions/soap/woden_wsdl10_soap_binding_fault_exts.c Fri Mar 30 06:19:43 2007
@@ -74,12 +74,12 @@
     void *binding_fault_exts,
     const axis2_env_t *env);
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_wsdl10_soap_binding_fault_exts_get_soap_modules(
     void *binding_fault_exts,
     const axis2_env_t *env);
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_wsdl10_soap_binding_fault_exts_get_soap_headers(
     void *binding_fault_exts,
     const axis2_env_t *env);
@@ -462,13 +462,13 @@
     }
 }
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_wsdl10_soap_binding_fault_exts_get_soap_modules(
     void *binding_fault_exts,
     const axis2_env_t *env)
 {
     woden_wsdl10_soap_binding_fault_exts_impl_t *binding_fault_exts_impl = NULL;
-    axis2_array_list_t *soap_mods = NULL;
+    axutil_array_list_t *soap_mods = NULL;
     void *parent_element = NULL;
 
     AXIS2_ENV_CHECK(env, NULL);
@@ -486,13 +486,13 @@
     return soap_mods;
 }
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_wsdl10_soap_binding_fault_exts_get_soap_headers(
     void *binding_fault_exts,
     const axis2_env_t *env)
 {
     woden_wsdl10_soap_binding_fault_exts_impl_t *binding_fault_exts_impl = NULL;
-    axis2_array_list_t *soap_headers = NULL;
+    axutil_array_list_t *soap_headers = NULL;
     void *parent_element = NULL;
 
     AXIS2_ENV_CHECK(env, NULL);

Modified: webservices/axis2/trunk/c/woden/src/wsdl10/extensions/soap/woden_wsdl10_soap_binding_fault_ref_exts.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/woden/src/wsdl10/extensions/soap/woden_wsdl10_soap_binding_fault_ref_exts.c?view=diff&rev=524073&r1=524072&r2=524073
==============================================================================
--- webservices/axis2/trunk/c/woden/src/wsdl10/extensions/soap/woden_wsdl10_soap_binding_fault_ref_exts.c (original)
+++ webservices/axis2/trunk/c/woden/src/wsdl10/extensions/soap/woden_wsdl10_soap_binding_fault_ref_exts.c Fri Mar 30 06:19:43 2007
@@ -62,7 +62,7 @@
     void *binding_fault_ref_exts,
     const axis2_env_t *env);
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_wsdl10_soap_binding_fault_ref_exts_get_soap_modules(
     void *binding_fault_ref_exts,
     const axis2_env_t *env);
@@ -315,13 +315,13 @@
     return AXIS2_SUCCESS;
 }
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_wsdl10_soap_binding_fault_ref_exts_get_soap_modules(
     void *binding_fault_ref_exts,
     const axis2_env_t *env)
 {
     woden_wsdl10_soap_binding_fault_ref_exts_impl_t *binding_fault_ref_exts_impl = NULL;
-    axis2_array_list_t *soap_mods = NULL;
+    axutil_array_list_t *soap_mods = NULL;
     void *parent_element = NULL;
 
     AXIS2_ENV_CHECK(env, NULL);

Modified: webservices/axis2/trunk/c/woden/src/wsdl10/extensions/soap/woden_wsdl10_soap_binding_msg_ref_exts.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/woden/src/wsdl10/extensions/soap/woden_wsdl10_soap_binding_msg_ref_exts.c?view=diff&rev=524073&r1=524072&r2=524073
==============================================================================
--- webservices/axis2/trunk/c/woden/src/wsdl10/extensions/soap/woden_wsdl10_soap_binding_msg_ref_exts.c (original)
+++ webservices/axis2/trunk/c/woden/src/wsdl10/extensions/soap/woden_wsdl10_soap_binding_msg_ref_exts.c Fri Mar 30 06:19:43 2007
@@ -62,12 +62,12 @@
     void *binding_msg_ref_exts,
     const axis2_env_t *env);
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_wsdl10_soap_binding_msg_ref_exts_get_soap_modules(
     void *binding_msg_ref_exts,
     const axis2_env_t *env);
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_wsdl10_soap_binding_msg_ref_exts_get_soap_headers(
     void *binding_msg_ref_exts,
     const axis2_env_t *env);
@@ -331,13 +331,13 @@
     return AXIS2_SUCCESS;
 }
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_wsdl10_soap_binding_msg_ref_exts_get_soap_modules(
     void *binding_msg_ref_exts,
     const axis2_env_t *env)
 {
     woden_wsdl10_soap_binding_msg_ref_exts_impl_t *binding_msg_ref_exts_impl = NULL;
-    axis2_array_list_t *soap_mods = NULL;
+    axutil_array_list_t *soap_mods = NULL;
     void *parent_element = NULL;
 
     AXIS2_ENV_CHECK(env, NULL);
@@ -355,13 +355,13 @@
     return soap_mods;
 }
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_wsdl10_soap_binding_msg_ref_exts_get_soap_headers(
     void *binding_msg_ref_exts,
     const axis2_env_t *env)
 {
     woden_wsdl10_soap_binding_msg_ref_exts_impl_t *binding_msg_ref_exts_impl = NULL;
-    axis2_array_list_t *soap_headers = NULL;
+    axutil_array_list_t *soap_headers = NULL;
     void *parent_element = NULL;
 
     AXIS2_ENV_CHECK(env, NULL);

Modified: webservices/axis2/trunk/c/woden/src/wsdl10/extensions/soap/woden_wsdl10_soap_binding_op_exts.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/woden/src/wsdl10/extensions/soap/woden_wsdl10_soap_binding_op_exts.c?view=diff&rev=524073&r1=524072&r2=524073
==============================================================================
--- webservices/axis2/trunk/c/woden/src/wsdl10/extensions/soap/woden_wsdl10_soap_binding_op_exts.c (original)
+++ webservices/axis2/trunk/c/woden/src/wsdl10/extensions/soap/woden_wsdl10_soap_binding_op_exts.c Fri Mar 30 06:19:43 2007
@@ -80,7 +80,7 @@
     void *binding_op_exts,
     const axis2_env_t *env);
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_wsdl10_soap_binding_op_exts_get_soap_modules(
     void *binding_op_exts,
     const axis2_env_t *env);
@@ -412,13 +412,13 @@
     return binding_op_exts_impl->action;
 }
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_wsdl10_soap_binding_op_exts_get_soap_modules(
     void *binding_op_exts,
     const axis2_env_t *env)
 {
     woden_wsdl10_soap_binding_op_exts_impl_t *binding_op_exts_impl = NULL;
-    axis2_array_list_t *soap_mods = NULL;
+    axutil_array_list_t *soap_mods = NULL;
     void *parent_element = NULL;
 
     AXIS2_ENV_CHECK(env, NULL);

Modified: webservices/axis2/trunk/c/woden/src/wsdl10/extensions/soap/woden_wsdl10_soap_header_block.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/woden/src/wsdl10/extensions/soap/woden_wsdl10_soap_header_block.c?view=diff&rev=524073&r1=524072&r2=524073
==============================================================================
--- webservices/axis2/trunk/c/woden/src/wsdl10/extensions/soap/woden_wsdl10_soap_header_block.c (original)
+++ webservices/axis2/trunk/c/woden/src/wsdl10/extensions/soap/woden_wsdl10_soap_header_block.c Fri Mar 30 06:19:43 2007
@@ -37,7 +37,7 @@
     woden_obj_types_t obj_type;
 
     void *f_parent;
-    axis2_array_list_t *f_documentation_elements;
+    axutil_array_list_t *f_documentation_elements;
     axis2_qname_t *f_ext_element_type;
     axis2_bool_t f_required;
     void *f_attr_ext;
@@ -137,7 +137,7 @@
     const axis2_env_t *env,
     void *doc_el);
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_wsdl10_soap_header_block_get_documentation_elements(
     void *header_block,
     const axis2_env_t *env);
@@ -176,13 +176,13 @@
     const axis2_env_t *env,
     axis2_qname_t *attr_type);
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_wsdl10_soap_header_block_get_ext_attrs_for_namespace(
     void *header_block,
     const axis2_env_t *env,
     axis2_uri_t *namespc);
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_wsdl10_soap_header_block_get_ext_attrs(
     void *header_block,
     const axis2_env_t *env);
@@ -205,12 +205,12 @@
     const axis2_env_t *env,
     void *ext_el);
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_wsdl10_soap_header_block_get_ext_elements(
     void *header_block,
     const axis2_env_t *env);
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_wsdl10_soap_header_block_get_ext_elements_of_type(
     void *header_block,
     const axis2_env_t *env,
@@ -622,7 +622,7 @@
 
     if (header_block_impl->f_documentation_elements)
     {
-        axis2_array_list_free(header_block_impl->f_documentation_elements, env);
+        axutil_array_list_free(header_block_impl->f_documentation_elements, env);
         header_block_impl->f_documentation_elements = NULL;
     }
 
@@ -1003,18 +1003,18 @@
     if (!header_block_impl->f_documentation_elements)
     {
         header_block_impl->f_documentation_elements =
-            axis2_array_list_create(env, 0);
+            axutil_array_list_create(env, 0);
         if (!header_block_impl->f_documentation_elements)
         {
             AXIS2_ERROR_SET(env->error, AXIS2_ERROR_NO_MEMORY, AXIS2_FAILURE);
             return AXIS2_FAILURE;
         }
     }
-    axis2_array_list_add(header_block_impl->f_documentation_elements, env, doc_el);
+    axutil_array_list_add(header_block_impl->f_documentation_elements, env, doc_el);
     return AXIS2_SUCCESS;
 }
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_wsdl10_soap_header_block_get_documentation_elements(
     void *header_block,
     const axis2_env_t *env)
@@ -1134,7 +1134,7 @@
                 header_block_impl->f_attr_ext, env, attr_type);
 }
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_wsdl10_soap_header_block_get_ext_attrs_for_namespace(
     void *header_block,
     const axis2_env_t *env,
@@ -1153,7 +1153,7 @@
                 header_block_impl->f_attr_ext, env, namespc);
 }
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_wsdl10_soap_header_block_get_ext_attrs(
     void *header_block,
     const axis2_env_t *env)
@@ -1229,7 +1229,7 @@
     return AXIS2_SUCCESS;
 }
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_wsdl10_soap_header_block_get_ext_elements(
     void *header_block,
     const axis2_env_t *env)
@@ -1246,7 +1246,7 @@
                 header_block_impl->f_elem_ext, env);
 }
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_wsdl10_soap_header_block_get_ext_elements_of_type(
     void *header_block,
     const axis2_env_t *env,

Modified: webservices/axis2/trunk/c/woden/src/wsdl10/extensions/soap/woden_wsdl10_soap_module.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/woden/src/wsdl10/extensions/soap/woden_wsdl10_soap_module.c?view=diff&rev=524073&r1=524072&r2=524073
==============================================================================
--- webservices/axis2/trunk/c/woden/src/wsdl10/extensions/soap/woden_wsdl10_soap_module.c (original)
+++ webservices/axis2/trunk/c/woden/src/wsdl10/extensions/soap/woden_wsdl10_soap_module.c Fri Mar 30 06:19:43 2007
@@ -38,7 +38,7 @@
     woden_obj_types_t obj_type;
 
     void *f_parent;
-    axis2_array_list_t *f_documentation_elements;
+    axutil_array_list_t *f_documentation_elements;
     void *f_binding_op_exts;
     void *f_address_exts;
     axis2_qname_t *f_ext_element_type;
@@ -116,7 +116,7 @@
     axis2_env_t *env,
     void *doc_el);
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_wsdl10_soap_module_get_documentation_elements(
     void *module,
     axis2_env_t *env);
@@ -177,13 +177,13 @@
     axis2_env_t *env,
     axis2_qname_t *attr_type);
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_wsdl10_soap_module_get_ext_attrs_for_namespace(
     void *module,
     axis2_env_t *env,
     axis2_uri_t *namespc);
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_wsdl10_soap_module_get_ext_attrs(
     void *module,
     axis2_env_t *env);
@@ -206,12 +206,12 @@
     axis2_env_t *env,
     void *ext_el);
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_wsdl10_soap_module_get_ext_elements(
     void *module,
     axis2_env_t *env);
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_wsdl10_soap_module_get_ext_elements_of_type(
     void *module,
     axis2_env_t *env,
@@ -590,7 +590,7 @@
 
     if (module_impl->f_documentation_elements)
     {
-        axis2_array_list_free(module_impl->f_documentation_elements, env);
+        axutil_array_list_free(module_impl->f_documentation_elements, env);
         module_impl->f_documentation_elements = NULL;
     }
 
@@ -880,18 +880,18 @@
     if (!module_impl->f_documentation_elements)
     {
         module_impl->f_documentation_elements =
-            axis2_array_list_create(env, 0);
+            axutil_array_list_create(env, 0);
         if (!module_impl->f_documentation_elements)
         {
             AXIS2_ERROR_SET(env->error, AXIS2_ERROR_NO_MEMORY, AXIS2_FAILURE);
             return AXIS2_FAILURE;
         }
     }
-    axis2_array_list_add(module_impl->f_documentation_elements, env, doc_el);
+    axutil_array_list_add(module_impl->f_documentation_elements, env, doc_el);
     return AXIS2_SUCCESS;
 }
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_wsdl10_soap_module_get_documentation_elements(
     void *module,
     axis2_env_t *env)
@@ -1083,7 +1083,7 @@
                 module_impl->f_attr_ext, env, attr_type);
 }
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_wsdl10_soap_module_get_ext_attrs_for_namespace(
     void *module,
     axis2_env_t *env,
@@ -1102,7 +1102,7 @@
                 module_impl->f_attr_ext, env, namespc);
 }
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_wsdl10_soap_module_get_ext_attrs(
     void *module,
     axis2_env_t *env)
@@ -1178,7 +1178,7 @@
     return AXIS2_SUCCESS;
 }
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_wsdl10_soap_module_get_ext_elements(
     void *module,
     axis2_env_t *env)
@@ -1195,7 +1195,7 @@
                 module_impl->f_elem_ext, env);
 }
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_wsdl10_soap_module_get_ext_elements_of_type(
     void *module,
     axis2_env_t *env,

Modified: webservices/axis2/trunk/c/woden/src/wsdl10/extensions/woden_wsdl10_ext_registry.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/woden/src/wsdl10/extensions/woden_wsdl10_ext_registry.c?view=diff&rev=524073&r1=524072&r2=524073
==============================================================================
--- webservices/axis2/trunk/c/woden/src/wsdl10/extensions/woden_wsdl10_ext_registry.c (original)
+++ webservices/axis2/trunk/c/woden/src/wsdl10/extensions/woden_wsdl10_ext_registry.c Fri Mar 30 06:19:43 2007
@@ -71,7 +71,7 @@
     */
     axis2_hash_t *comp_ext_reg;
 
-    axis2_array_list_t *key_set;
+    axutil_array_list_t *key_set;
 
     woden_string_attr_t *string_attr;
     woden_uri_attr_t *uri_attr;
@@ -117,7 +117,7 @@
     axis2_char_t *parent_class,
     axis2_qname_t *elem_qn);
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_wsdl10_ext_registry_get_allowable_exts(
     void *registry,
     const axis2_env_t *env,
@@ -161,7 +161,7 @@
     axis2_char_t *parent_class,
     axis2_uri_t *ext_namespc);
 
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_wsdl10_ext_registry_query_component_ext_namespaces(
     void *registry,
     const axis2_env_t *env,
@@ -441,7 +441,7 @@
 * Returns null if no extension deserializers are registered for
 * this parent type.
 */
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_wsdl10_ext_registry_get_allowable_exts(
     void *registry,
     const axis2_env_t *env,
@@ -459,14 +459,14 @@
     {
         axis2_hash_index_t *i = NULL;
 
-        registry_impl->key_set = axis2_array_list_create(env, 0);
+        registry_impl->key_set = axutil_array_list_create(env, 0);
         for (i = axis2_hash_first(inner_deserializer_reg, env); i; i =
                     axis2_hash_next(env, i))
         {
             void *v = NULL;
 
             axis2_hash_this(i, NULL, NULL, &v);
-            axis2_array_list_add(registry_impl->key_set, env, v);
+            axutil_array_list_add(registry_impl->key_set, env, v);
         }
     }
     return registry_impl->key_set;
@@ -673,7 +673,7 @@
 * @param parentClass the class of WSDL component extended by these namespaces
 * @return an array of namespace URIs
 */
-axis2_array_list_t *AXIS2_CALL
+axutil_array_list_t *AXIS2_CALL
 woden_wsdl10_ext_registry_query_component_ext_namespaces(
     void *registry,
     const axis2_env_t *env,
@@ -687,7 +687,7 @@
 
     inner_comp_ext_reg = axis2_hash_get(registry_impl->comp_ext_reg,
             parent_class, AXIS2_HASH_KEY_STRING);
-    registry_impl->key_set = axis2_array_list_create(env, 0);
+    registry_impl->key_set = axutil_array_list_create(env, 0);
     if (inner_comp_ext_reg)
     {
         axis2_hash_index_t *i = NULL;
@@ -698,7 +698,7 @@
             const void *key = NULL;
 
             axis2_hash_this(i, &key, NULL, NULL);
-            axis2_array_list_add(registry_impl->key_set, env, key);
+            axutil_array_list_add(registry_impl->key_set, env, key);
         }
     }
     return registry_impl->key_set;



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