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 20:28:34 UTC

svn commit: r524225 [18/22] - 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/wsdl20/woden_desc.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/woden/src/wsdl20/woden_desc.c?view=diff&rev=524225&r1=524224&r2=524225
==============================================================================
--- webservices/axis2/trunk/c/woden/src/wsdl20/woden_desc.c (original)
+++ webservices/axis2/trunk/c/woden/src/wsdl20/woden_desc.c Fri Mar 30 11:28:18 2007
@@ -55,8 +55,8 @@
     woden_desc_t desc;
     woden_obj_types_t obj_type;
     woden_documentable_t *documentable;
-    axis2_hash_t *super;
-    axis2_hash_t *methods;
+    axutil_hash_t *super;
+    axutil_hash_t *methods;
 
     axutil_array_list_t *f_all_interfaces;
     axutil_array_list_t *f_all_bindings;
@@ -67,7 +67,7 @@
     axis2_uri_t *f_doc_base_uri;
     /* <description> attributes */
     axis2_uri_t *f_target_namespc;
-    axis2_hash_t *f_namespcs;
+    axutil_hash_t *f_namespcs;
     /* <description> child elements */
     axutil_array_list_t *f_import_elements;
     axutil_array_list_t *f_include_elements;
@@ -93,7 +93,7 @@
     void *desc,
     const axutil_env_t *env);
 
-axis2_hash_t *AXIS2_CALL
+axutil_hash_t *AXIS2_CALL
 woden_desc_super_objs(
     void *desc,
     const axutil_env_t *env);
@@ -198,7 +198,7 @@
     const axutil_env_t *env,
     axis2_char_t *prefix);
 
-axis2_hash_t *AXIS2_CALL
+axutil_hash_t *AXIS2_CALL
 woden_desc_get_namespaces(
     void *desc,
     const axutil_env_t *env);
@@ -699,7 +699,7 @@
         woden_desc_add_to_all_type_defs;
 
 
-    desc_impl->f_namespcs = axis2_hash_make(env);
+    desc_impl->f_namespcs = axutil_hash_make(env);
     if (!desc_impl->f_namespcs)
     {
         AXIS2_ERROR_SET(env->error, AXIS2_ERROR_NO_MEMORY, AXIS2_FAILURE);
@@ -717,179 +717,179 @@
         return NULL;
     }
 
-    desc_impl->methods = axis2_hash_make(env);
+    desc_impl->methods = axutil_hash_make(env);
     if (!desc_impl->methods)
     {
         AXIS2_ERROR_SET(env->error, AXIS2_ERROR_NO_MEMORY, AXIS2_FAILURE);
         return NULL;
     }
-    axis2_hash_set(desc_impl->methods, "free", AXIS2_HASH_KEY_STRING,
+    axutil_hash_set(desc_impl->methods, "free", AXIS2_HASH_KEY_STRING,
             woden_desc_free);
-    axis2_hash_set(desc_impl->methods, "super_objs",
+    axutil_hash_set(desc_impl->methods, "super_objs",
             AXIS2_HASH_KEY_STRING, woden_desc_super_objs);
-    axis2_hash_set(desc_impl->methods, "type",
+    axutil_hash_set(desc_impl->methods, "type",
             AXIS2_HASH_KEY_STRING, woden_desc_type);
 
-    axis2_hash_set(desc_impl->methods, "get_interfaces",
+    axutil_hash_set(desc_impl->methods, "get_interfaces",
             AXIS2_HASH_KEY_STRING,
             woden_desc_get_interfaces);
-    axis2_hash_set(desc_impl->methods, "get_bindings",
+    axutil_hash_set(desc_impl->methods, "get_bindings",
             AXIS2_HASH_KEY_STRING,
             woden_desc_get_bindings);
-    axis2_hash_set(desc_impl->methods, "get_svcs",
+    axutil_hash_set(desc_impl->methods, "get_svcs",
             AXIS2_HASH_KEY_STRING,
             woden_desc_get_svcs);
-    axis2_hash_set(desc_impl->methods, "get_element_decls",
+    axutil_hash_set(desc_impl->methods, "get_element_decls",
             AXIS2_HASH_KEY_STRING,
             woden_desc_get_element_decls);
-    axis2_hash_set(desc_impl->methods, "get_element_decl",
+    axutil_hash_set(desc_impl->methods, "get_element_decl",
             AXIS2_HASH_KEY_STRING,
             woden_desc_get_element_decl);
-    axis2_hash_set(desc_impl->methods, "get_type_defs",
+    axutil_hash_set(desc_impl->methods, "get_type_defs",
             AXIS2_HASH_KEY_STRING,
             woden_desc_get_type_defs);
-    axis2_hash_set(desc_impl->methods, "get_type_def",
+    axutil_hash_set(desc_impl->methods, "get_type_def",
             AXIS2_HASH_KEY_STRING,
             woden_desc_get_type_def);
-    axis2_hash_set(desc_impl->methods, "to_element",
+    axutil_hash_set(desc_impl->methods, "to_element",
             AXIS2_HASH_KEY_STRING,
             woden_desc_to_element);
-    axis2_hash_set(desc_impl->methods, "set_document_base_uri",
+    axutil_hash_set(desc_impl->methods, "set_document_base_uri",
             AXIS2_HASH_KEY_STRING,
             woden_desc_set_document_base_uri);
-    axis2_hash_set(desc_impl->methods, "get_document_base_uri",
+    axutil_hash_set(desc_impl->methods, "get_document_base_uri",
             AXIS2_HASH_KEY_STRING,
             woden_desc_get_document_base_uri);
-    axis2_hash_set(desc_impl->methods, "set_target_namespace",
+    axutil_hash_set(desc_impl->methods, "set_target_namespace",
             AXIS2_HASH_KEY_STRING,
             woden_desc_set_target_namespace);
-    axis2_hash_set(desc_impl->methods, "get_target_namespace",
+    axutil_hash_set(desc_impl->methods, "get_target_namespace",
             AXIS2_HASH_KEY_STRING,
             woden_desc_get_target_namespace);
-    axis2_hash_set(desc_impl->methods, "add_namespace",
+    axutil_hash_set(desc_impl->methods, "add_namespace",
             AXIS2_HASH_KEY_STRING,
             woden_desc_add_namespace);
-    axis2_hash_set(desc_impl->methods, "remove_namespace",
+    axutil_hash_set(desc_impl->methods, "remove_namespace",
             AXIS2_HASH_KEY_STRING,
             woden_desc_remove_namespace);
-    axis2_hash_set(desc_impl->methods, "get_namespace",
+    axutil_hash_set(desc_impl->methods, "get_namespace",
             AXIS2_HASH_KEY_STRING,
             woden_desc_get_namespace);
-    axis2_hash_set(desc_impl->methods, "get_namespaces",
+    axutil_hash_set(desc_impl->methods, "get_namespaces",
             AXIS2_HASH_KEY_STRING,
             woden_desc_get_namespaces);
-    axis2_hash_set(desc_impl->methods, "add_import_element",
+    axutil_hash_set(desc_impl->methods, "add_import_element",
             AXIS2_HASH_KEY_STRING,
             woden_desc_add_import_element);
-    axis2_hash_set(desc_impl->methods, "get_import_elements",
+    axutil_hash_set(desc_impl->methods, "get_import_elements",
             AXIS2_HASH_KEY_STRING,
             woden_desc_get_import_elements);
-    axis2_hash_set(desc_impl->methods, "add_include_element",
+    axutil_hash_set(desc_impl->methods, "add_include_element",
             AXIS2_HASH_KEY_STRING,
             woden_desc_add_include_element);
-    axis2_hash_set(desc_impl->methods, "get_include_elements",
+    axutil_hash_set(desc_impl->methods, "get_include_elements",
             AXIS2_HASH_KEY_STRING,
             woden_desc_get_include_elements);
-    axis2_hash_set(desc_impl->methods, "set_types_element",
+    axutil_hash_set(desc_impl->methods, "set_types_element",
             AXIS2_HASH_KEY_STRING,
             woden_desc_set_types_element);
-    axis2_hash_set(desc_impl->methods, "get_types_element",
+    axutil_hash_set(desc_impl->methods, "get_types_element",
             AXIS2_HASH_KEY_STRING,
             woden_desc_get_types_element);
-    axis2_hash_set(desc_impl->methods, "add_interface_element",
+    axutil_hash_set(desc_impl->methods, "add_interface_element",
             AXIS2_HASH_KEY_STRING,
             woden_desc_add_interface_element);
-    axis2_hash_set(desc_impl->methods, "get_interface_elements",
+    axutil_hash_set(desc_impl->methods, "get_interface_elements",
             AXIS2_HASH_KEY_STRING,
             woden_desc_get_interface_elements);
-    axis2_hash_set(desc_impl->methods, "add_binding_element",
+    axutil_hash_set(desc_impl->methods, "add_binding_element",
             AXIS2_HASH_KEY_STRING,
             woden_desc_add_binding_element);
-    axis2_hash_set(desc_impl->methods, "get_binding_elements",
+    axutil_hash_set(desc_impl->methods, "get_binding_elements",
             AXIS2_HASH_KEY_STRING,
             woden_desc_get_binding_elements);
-    axis2_hash_set(desc_impl->methods, "add_svc_element",
+    axutil_hash_set(desc_impl->methods, "add_svc_element",
             AXIS2_HASH_KEY_STRING,
             woden_desc_add_svc_element);
-    axis2_hash_set(desc_impl->methods, "get_svc_elements",
+    axutil_hash_set(desc_impl->methods, "get_svc_elements",
             AXIS2_HASH_KEY_STRING,
             woden_desc_get_svc_elements);
-    axis2_hash_set(desc_impl->methods, "create_documentation_element",
+    axutil_hash_set(desc_impl->methods, "create_documentation_element",
             AXIS2_HASH_KEY_STRING,
             woden_desc_create_documentation_element);
-    axis2_hash_set(desc_impl->methods, "create_import_element",
+    axutil_hash_set(desc_impl->methods, "create_import_element",
             AXIS2_HASH_KEY_STRING,
             woden_desc_create_import_element);
-    axis2_hash_set(desc_impl->methods, "create_include_element",
+    axutil_hash_set(desc_impl->methods, "create_include_element",
             AXIS2_HASH_KEY_STRING,
             woden_desc_create_include_element);
-    axis2_hash_set(desc_impl->methods, "create_types_element",
+    axutil_hash_set(desc_impl->methods, "create_types_element",
             AXIS2_HASH_KEY_STRING,
             woden_desc_create_types_element);
-    axis2_hash_set(desc_impl->methods, "create_interface_element",
+    axutil_hash_set(desc_impl->methods, "create_interface_element",
             AXIS2_HASH_KEY_STRING,
             woden_desc_create_interface_element);
-    axis2_hash_set(desc_impl->methods, "create_interface_fault_element",
+    axutil_hash_set(desc_impl->methods, "create_interface_fault_element",
             AXIS2_HASH_KEY_STRING,
             woden_desc_create_interface_fault_element);
-    axis2_hash_set(desc_impl->methods, "create_interface_op_element",
+    axutil_hash_set(desc_impl->methods, "create_interface_op_element",
             AXIS2_HASH_KEY_STRING,
             woden_desc_create_interface_op_element);
-    axis2_hash_set(desc_impl->methods, "create_interface_fault_ref_element",
+    axutil_hash_set(desc_impl->methods, "create_interface_fault_ref_element",
             AXIS2_HASH_KEY_STRING,
             woden_desc_create_interface_fault_ref_element);
-    axis2_hash_set(desc_impl->methods, "create_interface_msg_ref_element",
+    axutil_hash_set(desc_impl->methods, "create_interface_msg_ref_element",
             AXIS2_HASH_KEY_STRING,
             woden_desc_create_interface_msg_ref_element);
-    axis2_hash_set(desc_impl->methods, "create_binding_element",
+    axutil_hash_set(desc_impl->methods, "create_binding_element",
             AXIS2_HASH_KEY_STRING,
             woden_desc_create_binding_element);
-    axis2_hash_set(desc_impl->methods, "create_binding_fault_element",
+    axutil_hash_set(desc_impl->methods, "create_binding_fault_element",
             AXIS2_HASH_KEY_STRING,
             woden_desc_create_binding_fault_element);
-    axis2_hash_set(desc_impl->methods, "create_binding_op_element",
+    axutil_hash_set(desc_impl->methods, "create_binding_op_element",
             AXIS2_HASH_KEY_STRING,
             woden_desc_create_binding_op_element);
-    axis2_hash_set(desc_impl->methods, "create_binding_fault_ref_element",
+    axutil_hash_set(desc_impl->methods, "create_binding_fault_ref_element",
             AXIS2_HASH_KEY_STRING,
             woden_desc_create_binding_fault_ref_element);
-    axis2_hash_set(desc_impl->methods, "create_binding_msg_ref_element",
+    axutil_hash_set(desc_impl->methods, "create_binding_msg_ref_element",
             AXIS2_HASH_KEY_STRING,
             woden_desc_create_binding_msg_ref_element);
-    axis2_hash_set(desc_impl->methods, "create_svc_element",
+    axutil_hash_set(desc_impl->methods, "create_svc_element",
             AXIS2_HASH_KEY_STRING,
             woden_desc_create_svc_element);
-    axis2_hash_set(desc_impl->methods, "create_endpoint_element",
+    axutil_hash_set(desc_impl->methods, "create_endpoint_element",
             AXIS2_HASH_KEY_STRING,
             woden_desc_create_endpoint_element);
-    axis2_hash_set(desc_impl->methods, "create_feature_element",
+    axutil_hash_set(desc_impl->methods, "create_feature_element",
             AXIS2_HASH_KEY_STRING,
             woden_desc_create_feature_element);
-    axis2_hash_set(desc_impl->methods, "create_property_element",
+    axutil_hash_set(desc_impl->methods, "create_property_element",
             AXIS2_HASH_KEY_STRING,
             woden_desc_create_property_element);
-    axis2_hash_set(desc_impl->methods, "set_ext_registry",
+    axutil_hash_set(desc_impl->methods, "set_ext_registry",
             AXIS2_HASH_KEY_STRING,
             woden_desc_set_ext_registry);
-    axis2_hash_set(desc_impl->methods, "get_ext_registry",
+    axutil_hash_set(desc_impl->methods, "get_ext_registry",
             AXIS2_HASH_KEY_STRING,
             woden_desc_get_ext_registry);
-    axis2_hash_set(desc_impl->methods, "to_component",
+    axutil_hash_set(desc_impl->methods, "to_component",
             AXIS2_HASH_KEY_STRING,
             woden_desc_to_component);
-    axis2_hash_set(desc_impl->methods, "add_to_all_interfaces",
+    axutil_hash_set(desc_impl->methods, "add_to_all_interfaces",
             AXIS2_HASH_KEY_STRING,
             woden_desc_add_to_all_interfaces);
-    axis2_hash_set(desc_impl->methods, "add_to_all_bindings",
+    axutil_hash_set(desc_impl->methods, "add_to_all_bindings",
             AXIS2_HASH_KEY_STRING,
             woden_desc_add_to_all_bindings);
-    axis2_hash_set(desc_impl->methods, "add_to_all_svcs",
+    axutil_hash_set(desc_impl->methods, "add_to_all_svcs",
             AXIS2_HASH_KEY_STRING,
             woden_desc_add_to_all_svcs);
-    axis2_hash_set(desc_impl->methods, "add_to_all_element_decls",
+    axutil_hash_set(desc_impl->methods, "add_to_all_element_decls",
             AXIS2_HASH_KEY_STRING,
             woden_desc_add_to_all_element_decls);
-    axis2_hash_set(desc_impl->methods, "add_to_all_type_defs",
+    axutil_hash_set(desc_impl->methods, "add_to_all_type_defs",
             AXIS2_HASH_KEY_STRING,
             woden_desc_add_to_all_type_defs);
 
@@ -906,15 +906,15 @@
 
     desc_impl->documentable = woden_documentable_create(env);
 
-    desc_impl->super = axis2_hash_make(env);
+    desc_impl->super = axutil_hash_make(env);
     if (!desc_impl->super)
     {
         AXIS2_ERROR_SET(env->error, AXIS2_ERROR_NO_MEMORY, AXIS2_FAILURE);
         return NULL;
     }
-    axis2_hash_set(desc_impl->super, "WODEN_DESC", AXIS2_HASH_KEY_STRING,
+    axutil_hash_set(desc_impl->super, "WODEN_DESC", AXIS2_HASH_KEY_STRING,
             &(desc_impl->desc));
-    axis2_hash_set(desc_impl->super, "WODEN_DOCUMENTABLE", AXIS2_HASH_KEY_STRING,
+    axutil_hash_set(desc_impl->super, "WODEN_DOCUMENTABLE", AXIS2_HASH_KEY_STRING,
             desc_impl->documentable);
 
     return &(desc_impl->desc);
@@ -1016,13 +1016,13 @@
     /* TODO free f_namespcs */
     if (desc_impl->super)
     {
-        axis2_hash_free(desc_impl->super, env);
+        axutil_hash_free(desc_impl->super, env);
         desc_impl->super = NULL;
     }
 
     if (desc_impl->methods)
     {
-        axis2_hash_free(desc_impl->methods, env);
+        axutil_hash_free(desc_impl->methods, env);
         desc_impl->methods = NULL;
     }
 
@@ -1048,7 +1048,7 @@
     return AXIS2_SUCCESS;
 }
 
-axis2_hash_t *AXIS2_CALL
+axutil_hash_t *AXIS2_CALL
 woden_desc_super_objs(
     void *desc,
     const axutil_env_t *env)
@@ -1092,7 +1092,7 @@
     woden_desc_t *desc,
     const axutil_env_t *env,
     woden_desc_t *desc_impl,
-    axis2_hash_t *methods)
+    axutil_hash_t *methods)
 {
     woden_desc_impl_t *desc_impl_l = NULL;
 
@@ -1100,86 +1100,86 @@
     AXIS2_PARAM_CHECK(env->error, methods, AXIS2_FAILURE);
     desc_impl_l = INTF_TO_IMPL(desc_impl);
 
-    desc->ops->free = axis2_hash_get(methods, "free",
+    desc->ops->free = axutil_hash_get(methods, "free",
             AXIS2_HASH_KEY_STRING);
-    desc->ops->super_objs = axis2_hash_get(methods, "super_objs",
+    desc->ops->super_objs = axutil_hash_get(methods, "super_objs",
             AXIS2_HASH_KEY_STRING);
-    desc->ops->type = axis2_hash_get(methods, "type",
+    desc->ops->type = axutil_hash_get(methods, "type",
             AXIS2_HASH_KEY_STRING);
 
-    desc->ops->get_interfaces = axis2_hash_get(methods,
+    desc->ops->get_interfaces = axutil_hash_get(methods,
             "get_interfaces", AXIS2_HASH_KEY_STRING);
     if (!desc->ops->get_interfaces && desc_impl_l)
         desc->ops->get_interfaces =
             desc_impl_l->desc.ops->get_interfaces;
 
-    desc->ops->get_bindings = axis2_hash_get(methods,
+    desc->ops->get_bindings = axutil_hash_get(methods,
             "get_bindings", AXIS2_HASH_KEY_STRING);
     if (!desc->ops->get_bindings && desc_impl_l)
         desc->ops->get_bindings =
             desc_impl_l->desc.ops->get_bindings;
 
-    desc->ops->get_svcs = axis2_hash_get(methods,
+    desc->ops->get_svcs = axutil_hash_get(methods,
             "get_svcs", AXIS2_HASH_KEY_STRING);
     if (!desc->ops->get_svcs && desc_impl_l)
         desc->ops->get_svcs =
             desc_impl_l->desc.ops->get_svcs;
 
-    desc->ops->get_element_decls = axis2_hash_get(methods,
+    desc->ops->get_element_decls = axutil_hash_get(methods,
             "get_element_decls", AXIS2_HASH_KEY_STRING);
     if (!desc->ops->get_element_decls && desc_impl_l)
         desc->ops->get_element_decls =
             desc_impl_l->desc.ops->get_element_decls;
 
-    desc->ops->get_element_decl = axis2_hash_get(methods,
+    desc->ops->get_element_decl = axutil_hash_get(methods,
             "get_element_decl", AXIS2_HASH_KEY_STRING);
     if (!desc->ops->get_element_decl && desc_impl_l)
         desc->ops->get_element_decl =
             desc_impl_l->desc.ops->get_element_decl;
 
-    desc->ops->get_type_defs = axis2_hash_get(methods,
+    desc->ops->get_type_defs = axutil_hash_get(methods,
             "get_type_defs", AXIS2_HASH_KEY_STRING);
     if (!desc->ops->get_type_defs && desc_impl_l)
         desc->ops->get_type_defs =
             desc_impl_l->desc.ops->get_type_defs;
 
-    desc->ops->get_type_def = axis2_hash_get(methods,
+    desc->ops->get_type_def = axutil_hash_get(methods,
             "get_type_def", AXIS2_HASH_KEY_STRING);
     if (!desc->ops->get_type_def && desc_impl_l)
         desc->ops->get_type_def =
             desc_impl_l->desc.ops->get_type_def;
 
-    desc->ops->to_element = axis2_hash_get(methods,
+    desc->ops->to_element = axutil_hash_get(methods,
             "to_element", AXIS2_HASH_KEY_STRING);
     if (!desc->ops->to_element && desc_impl_l)
         desc->ops->to_element =
             desc_impl_l->desc.ops->to_element;
 
-    desc->ops->add_to_all_interfaces = axis2_hash_get(methods,
+    desc->ops->add_to_all_interfaces = axutil_hash_get(methods,
             "add_to_all_interfaces", AXIS2_HASH_KEY_STRING);
     if (!desc->ops->add_to_all_interfaces && desc_impl_l)
         desc->ops->add_to_all_interfaces =
             desc_impl_l->desc.ops->add_to_all_interfaces;
 
-    desc->ops->add_to_all_bindings = axis2_hash_get(methods,
+    desc->ops->add_to_all_bindings = axutil_hash_get(methods,
             "add_to_all_bindings", AXIS2_HASH_KEY_STRING);
     if (!desc->ops->add_to_all_bindings && desc_impl_l)
         desc->ops->add_to_all_bindings =
             desc_impl_l->desc.ops->add_to_all_bindings;
 
-    desc->ops->add_to_all_svcs = axis2_hash_get(methods,
+    desc->ops->add_to_all_svcs = axutil_hash_get(methods,
             "add_to_all_svcs", AXIS2_HASH_KEY_STRING);
     if (!desc->ops->add_to_all_svcs && desc_impl_l)
         desc->ops->add_to_all_svcs =
             desc_impl_l->desc.ops->add_to_all_svcs;
 
-    desc->ops->add_to_all_element_decls = axis2_hash_get(methods,
+    desc->ops->add_to_all_element_decls = axutil_hash_get(methods,
             "add_to_all_element_decls", AXIS2_HASH_KEY_STRING);
     if (!desc->ops->add_to_all_element_decls && desc_impl_l)
         desc->ops->add_to_all_element_decls =
             desc_impl_l->desc.ops->add_to_all_element_decls;
 
-    desc->ops->add_to_all_type_defs = axis2_hash_get(methods,
+    desc->ops->add_to_all_type_defs = axutil_hash_get(methods,
             "add_to_all_type_defs", AXIS2_HASH_KEY_STRING);
     if (!desc->ops->add_to_all_type_defs && desc_impl_l)
         desc->ops->add_to_all_type_defs =
@@ -1197,11 +1197,11 @@
     const axutil_env_t *env)
 {
     woden_desc_impl_t *desc_impl = NULL;
-    axis2_hash_t *super = NULL;
+    axutil_hash_t *super = NULL;
 
     AXIS2_ENV_CHECK(env, NULL);
     super = WODEN_DESC_SUPER_OBJS(desc, env);
-    desc_impl = INTF_TO_IMPL(axis2_hash_get(super,
+    desc_impl = INTF_TO_IMPL(axutil_hash_get(super,
             "WODEN_DESC", AXIS2_HASH_KEY_STRING));
 
     if (AXIS2_TRUE != desc_impl->f_component_initialized)
@@ -1215,11 +1215,11 @@
     const axutil_env_t *env)
 {
     woden_desc_impl_t *desc_impl = NULL;
-    axis2_hash_t *super = NULL;
+    axutil_hash_t *super = NULL;
 
     AXIS2_ENV_CHECK(env, NULL);
     super = WODEN_DESC_SUPER_OBJS(desc, env);
-    desc_impl = INTF_TO_IMPL(axis2_hash_get(super,
+    desc_impl = INTF_TO_IMPL(axutil_hash_get(super,
             "WODEN_DESC", AXIS2_HASH_KEY_STRING));
 
     if (AXIS2_TRUE != desc_impl->f_component_initialized)
@@ -1233,11 +1233,11 @@
     const axutil_env_t *env)
 {
     woden_desc_impl_t *desc_impl = NULL;
-    axis2_hash_t *super = NULL;
+    axutil_hash_t *super = NULL;
 
     AXIS2_ENV_CHECK(env, NULL);
     super = WODEN_DESC_SUPER_OBJS(desc, env);
-    desc_impl = INTF_TO_IMPL(axis2_hash_get(super,
+    desc_impl = INTF_TO_IMPL(axutil_hash_get(super,
             "WODEN_DESC", AXIS2_HASH_KEY_STRING));
 
     if (AXIS2_TRUE != desc_impl->f_component_initialized)
@@ -1251,11 +1251,11 @@
     const axutil_env_t *env)
 {
     woden_desc_impl_t *desc_impl = NULL;
-    axis2_hash_t *super = NULL;
+    axutil_hash_t *super = NULL;
 
     AXIS2_ENV_CHECK(env, NULL);
     super = WODEN_DESC_SUPER_OBJS(desc, env);
-    desc_impl = INTF_TO_IMPL(axis2_hash_get(super,
+    desc_impl = INTF_TO_IMPL(axutil_hash_get(super,
             "WODEN_DESC", AXIS2_HASH_KEY_STRING));
 
     if (AXIS2_TRUE != desc_impl->f_component_initialized)
@@ -1270,14 +1270,14 @@
     axis2_qname_t *qname)
 {
     woden_desc_impl_t *desc_impl = NULL;
-    axis2_hash_t *super = NULL;
+    axutil_hash_t *super = NULL;
     void *el_decl = NULL;
     int i = 0, size = 0;
 
     AXIS2_ENV_CHECK(env, NULL);
     AXIS2_PARAM_CHECK(env->error, qname, NULL);
     super = WODEN_DESC_SUPER_OBJS(desc, env);
-    desc_impl = INTF_TO_IMPL(axis2_hash_get(super,
+    desc_impl = INTF_TO_IMPL(axutil_hash_get(super,
             "WODEN_DESC", AXIS2_HASH_KEY_STRING));
 
     if (AXIS2_TRUE != desc_impl->f_component_initialized)
@@ -1303,11 +1303,11 @@
     const axutil_env_t *env)
 {
     woden_desc_impl_t *desc_impl = NULL;
-    axis2_hash_t *super = NULL;
+    axutil_hash_t *super = NULL;
 
     AXIS2_ENV_CHECK(env, NULL);
     super = WODEN_DESC_SUPER_OBJS(desc, env);
-    desc_impl = INTF_TO_IMPL(axis2_hash_get(super,
+    desc_impl = INTF_TO_IMPL(axutil_hash_get(super,
             "WODEN_DESC", AXIS2_HASH_KEY_STRING));
 
     if (AXIS2_TRUE != desc_impl->f_component_initialized)
@@ -1322,14 +1322,14 @@
     axis2_qname_t *qname)
 {
     woden_desc_impl_t *desc_impl = NULL;
-    axis2_hash_t *super = NULL;
+    axutil_hash_t *super = NULL;
     void *type_def = NULL;
     int i = 0, size = 0;
 
     AXIS2_ENV_CHECK(env, NULL);
     AXIS2_PARAM_CHECK(env->error, qname, NULL);
     super = WODEN_DESC_SUPER_OBJS(desc, env);
-    desc_impl = INTF_TO_IMPL(axis2_hash_get(super,
+    desc_impl = INTF_TO_IMPL(axutil_hash_get(super,
             "WODEN_DESC", AXIS2_HASH_KEY_STRING));
 
     if (AXIS2_TRUE != desc_impl->f_component_initialized)
@@ -1355,11 +1355,11 @@
     const axutil_env_t *env)
 {
     woden_desc_impl_t *desc_impl = NULL;
-    axis2_hash_t *super = NULL;
+    axutil_hash_t *super = NULL;
 
     AXIS2_ENV_CHECK(env, NULL);
     super = WODEN_DESC_SUPER_OBJS(desc, env);
-    desc_impl = INTF_TO_IMPL(axis2_hash_get(super,
+    desc_impl = INTF_TO_IMPL(axutil_hash_get(super,
             "WODEN_DESC", AXIS2_HASH_KEY_STRING));
 
     return &(desc_impl->desc);
@@ -1376,12 +1376,12 @@
     axis2_uri_t *doc_base_uri)
 {
     woden_desc_impl_t *desc_impl = NULL;
-    axis2_hash_t *super = NULL;
+    axutil_hash_t *super = NULL;
 
     AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
     AXIS2_PARAM_CHECK(env->error, doc_base_uri, AXIS2_FAILURE);
     super = WODEN_DESC_SUPER_OBJS(desc, env);
-    desc_impl = INTF_TO_IMPL(axis2_hash_get(super,
+    desc_impl = INTF_TO_IMPL(axutil_hash_get(super,
             "WODEN_DESC", AXIS2_HASH_KEY_STRING));
     if (desc_impl->f_doc_base_uri)
     {
@@ -1399,11 +1399,11 @@
     const axutil_env_t *env)
 {
     woden_desc_impl_t *desc_impl = NULL;
-    axis2_hash_t *super = NULL;
+    axutil_hash_t *super = NULL;
 
     AXIS2_ENV_CHECK(env, NULL);
     super = WODEN_DESC_SUPER_OBJS(desc, env);
-    desc_impl = INTF_TO_IMPL(axis2_hash_get(super,
+    desc_impl = INTF_TO_IMPL(axutil_hash_get(super,
             "WODEN_DESC", AXIS2_HASH_KEY_STRING));
 
     return desc_impl->f_doc_base_uri;
@@ -1417,12 +1417,12 @@
     axis2_uri_t *namespc)
 {
     woden_desc_impl_t *desc_impl = NULL;
-    axis2_hash_t *super = NULL;
+    axutil_hash_t *super = NULL;
 
     AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
     AXIS2_PARAM_CHECK(env->error, namespc, AXIS2_FAILURE);
     super = WODEN_DESC_SUPER_OBJS(desc, env);
-    desc_impl = INTF_TO_IMPL(axis2_hash_get(super,
+    desc_impl = INTF_TO_IMPL(axutil_hash_get(super,
             "WODEN_DESC", AXIS2_HASH_KEY_STRING));
     if (desc_impl->f_target_namespc)
     {
@@ -1440,11 +1440,11 @@
     const axutil_env_t *env)
 {
     woden_desc_impl_t *desc_impl = NULL;
-    axis2_hash_t *super = NULL;
+    axutil_hash_t *super = NULL;
 
     AXIS2_ENV_CHECK(env, NULL);
     super = WODEN_DESC_SUPER_OBJS(desc, env);
-    desc_impl = INTF_TO_IMPL(axis2_hash_get(super,
+    desc_impl = INTF_TO_IMPL(axutil_hash_get(super,
             "WODEN_DESC", AXIS2_HASH_KEY_STRING));
 
     return desc_impl->f_target_namespc;
@@ -1458,20 +1458,20 @@
     axis2_uri_t *namespc)
 {
     woden_desc_impl_t *desc_impl = NULL;
-    axis2_hash_t *super = NULL;
+    axutil_hash_t *super = NULL;
     axis2_char_t *pfx = NULL;
 
     AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
     super = WODEN_DESC_SUPER_OBJS(desc, env);
-    desc_impl = INTF_TO_IMPL(axis2_hash_get(super,
+    desc_impl = INTF_TO_IMPL(axutil_hash_get(super,
             "WODEN_DESC", AXIS2_HASH_KEY_STRING));
 
     pfx = (prefix) ? prefix : "";
     if (namespc)
-        axis2_hash_set(desc_impl->f_namespcs, pfx, AXIS2_HASH_KEY_STRING,
+        axutil_hash_set(desc_impl->f_namespcs, pfx, AXIS2_HASH_KEY_STRING,
                 axis2_uri_clone(namespc, env));
     else
-        axis2_hash_set(desc_impl->f_namespcs, pfx, AXIS2_HASH_KEY_STRING, NULL);
+        axutil_hash_set(desc_impl->f_namespcs, pfx, AXIS2_HASH_KEY_STRING, NULL);
     return AXIS2_SUCCESS;
 }
 
@@ -1482,16 +1482,16 @@
     axis2_char_t *prefix)
 {
     woden_desc_impl_t *desc_impl = NULL;
-    axis2_hash_t *super = NULL;
+    axutil_hash_t *super = NULL;
     axis2_char_t *pfx = NULL;
 
     AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
     super = WODEN_DESC_SUPER_OBJS(desc, env);
-    desc_impl = INTF_TO_IMPL(axis2_hash_get(super,
+    desc_impl = INTF_TO_IMPL(axutil_hash_get(super,
             "WODEN_DESC", AXIS2_HASH_KEY_STRING));
 
     pfx = (prefix) ? prefix : "";
-    axis2_hash_set(desc_impl->f_namespcs, pfx, AXIS2_HASH_KEY_STRING, NULL);
+    axutil_hash_set(desc_impl->f_namespcs, pfx, AXIS2_HASH_KEY_STRING, NULL);
     return AXIS2_SUCCESS;
 }
 
@@ -1502,29 +1502,29 @@
     axis2_char_t *prefix)
 {
     woden_desc_impl_t *desc_impl = NULL;
-    axis2_hash_t *super = NULL;
+    axutil_hash_t *super = NULL;
     axis2_char_t *pfx = NULL;
 
     AXIS2_ENV_CHECK(env, NULL);
     super = WODEN_DESC_SUPER_OBJS(desc, env);
-    desc_impl = INTF_TO_IMPL(axis2_hash_get(super,
+    desc_impl = INTF_TO_IMPL(axutil_hash_get(super,
             "WODEN_DESC", AXIS2_HASH_KEY_STRING));
 
     pfx = (prefix) ? prefix : "";
-    return axis2_hash_get(desc_impl->f_namespcs, pfx, AXIS2_HASH_KEY_STRING);
+    return axutil_hash_get(desc_impl->f_namespcs, pfx, AXIS2_HASH_KEY_STRING);
 }
 
-axis2_hash_t *AXIS2_CALL
+axutil_hash_t *AXIS2_CALL
 woden_desc_get_namespaces(
     void *desc,
     const axutil_env_t *env)
 {
     woden_desc_impl_t *desc_impl = NULL;
-    axis2_hash_t *super = NULL;
+    axutil_hash_t *super = NULL;
 
     AXIS2_ENV_CHECK(env, NULL);
     super = WODEN_DESC_SUPER_OBJS(desc, env);
-    desc_impl = INTF_TO_IMPL(axis2_hash_get(super,
+    desc_impl = INTF_TO_IMPL(axutil_hash_get(super,
             "WODEN_DESC", AXIS2_HASH_KEY_STRING));
 
     return desc_impl->f_namespcs;
@@ -1537,12 +1537,12 @@
     void *import_el)
 {
     woden_desc_impl_t *desc_impl = NULL;
-    axis2_hash_t *super = NULL;
+    axutil_hash_t *super = NULL;
 
     AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
     AXIS2_PARAM_CHECK(env->error, import_el, AXIS2_FAILURE);
     super = WODEN_DESC_SUPER_OBJS(desc, env);
-    desc_impl = INTF_TO_IMPL(axis2_hash_get(super,
+    desc_impl = INTF_TO_IMPL(axutil_hash_get(super,
             "WODEN_DESC", AXIS2_HASH_KEY_STRING));
 
     return axutil_array_list_add(desc_impl->f_import_elements, env, import_el);
@@ -1554,11 +1554,11 @@
     const axutil_env_t *env)
 {
     woden_desc_impl_t *desc_impl = NULL;
-    axis2_hash_t *super = NULL;
+    axutil_hash_t *super = NULL;
 
     AXIS2_ENV_CHECK(env, NULL);
     super = WODEN_DESC_SUPER_OBJS(desc, env);
-    desc_impl = INTF_TO_IMPL(axis2_hash_get(super,
+    desc_impl = INTF_TO_IMPL(axutil_hash_get(super,
             "WODEN_DESC", AXIS2_HASH_KEY_STRING));
 
     return desc_impl->f_import_elements;
@@ -1571,12 +1571,12 @@
     void *include_el)
 {
     woden_desc_impl_t *desc_impl = NULL;
-    axis2_hash_t *super = NULL;
+    axutil_hash_t *super = NULL;
 
     AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
     AXIS2_PARAM_CHECK(env->error, include_el, AXIS2_FAILURE);
     super = WODEN_DESC_SUPER_OBJS(desc, env);
-    desc_impl = INTF_TO_IMPL(axis2_hash_get(super,
+    desc_impl = INTF_TO_IMPL(axutil_hash_get(super,
             "WODEN_DESC", AXIS2_HASH_KEY_STRING));
 
     return axutil_array_list_add(desc_impl->f_include_elements, env, include_el);
@@ -1588,11 +1588,11 @@
     const axutil_env_t *env)
 {
     woden_desc_impl_t *desc_impl = NULL;
-    axis2_hash_t *super = NULL;
+    axutil_hash_t *super = NULL;
 
     AXIS2_ENV_CHECK(env, NULL);
     super = WODEN_DESC_SUPER_OBJS(desc, env);
-    desc_impl = INTF_TO_IMPL(axis2_hash_get(super,
+    desc_impl = INTF_TO_IMPL(axutil_hash_get(super,
             "WODEN_DESC", AXIS2_HASH_KEY_STRING));
 
     return desc_impl->f_include_elements;
@@ -1605,12 +1605,12 @@
     void *types_el)
 {
     woden_desc_impl_t *desc_impl = NULL;
-    axis2_hash_t *super = NULL;
+    axutil_hash_t *super = NULL;
 
     AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
     AXIS2_PARAM_CHECK(env->error, types_el, AXIS2_FAILURE);
     super = WODEN_DESC_SUPER_OBJS(desc, env);
-    desc_impl = INTF_TO_IMPL(axis2_hash_get(super,
+    desc_impl = INTF_TO_IMPL(axutil_hash_get(super,
             "WODEN_DESC", AXIS2_HASH_KEY_STRING));
     if (desc_impl->f_types_element)
     {
@@ -1627,11 +1627,11 @@
     const axutil_env_t *env)
 {
     woden_desc_impl_t *desc_impl = NULL;
-    axis2_hash_t *super = NULL;
+    axutil_hash_t *super = NULL;
 
     AXIS2_ENV_CHECK(env, NULL);
     super = WODEN_DESC_SUPER_OBJS(desc, env);
-    desc_impl = INTF_TO_IMPL(axis2_hash_get(super,
+    desc_impl = INTF_TO_IMPL(axutil_hash_get(super,
             "WODEN_DESC", AXIS2_HASH_KEY_STRING));
 
     return desc_impl->f_types_element;
@@ -1644,12 +1644,12 @@
     void *intface)
 {
     woden_desc_impl_t *desc_impl = NULL;
-    axis2_hash_t *super = NULL;
+    axutil_hash_t *super = NULL;
 
     AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
     AXIS2_PARAM_CHECK(env->error, intface, AXIS2_FAILURE);
     super = WODEN_DESC_SUPER_OBJS(desc, env);
-    desc_impl = INTF_TO_IMPL(axis2_hash_get(super,
+    desc_impl = INTF_TO_IMPL(axutil_hash_get(super,
             "WODEN_DESC", AXIS2_HASH_KEY_STRING));
 
     return axutil_array_list_add(desc_impl->f_interface_elements, env, intface);
@@ -1661,11 +1661,11 @@
     const axutil_env_t *env)
 {
     woden_desc_impl_t *desc_impl = NULL;
-    axis2_hash_t *super = NULL;
+    axutil_hash_t *super = NULL;
 
     AXIS2_ENV_CHECK(env, NULL);
     super = WODEN_DESC_SUPER_OBJS(desc, env);
-    desc_impl = INTF_TO_IMPL(axis2_hash_get(super,
+    desc_impl = INTF_TO_IMPL(axutil_hash_get(super,
             "WODEN_DESC", AXIS2_HASH_KEY_STRING));
 
     return desc_impl->f_interface_elements;
@@ -1678,12 +1678,12 @@
     void *binding)
 {
     woden_desc_impl_t *desc_impl = NULL;
-    axis2_hash_t *super = NULL;
+    axutil_hash_t *super = NULL;
 
     AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
     AXIS2_PARAM_CHECK(env->error, binding, AXIS2_FAILURE);
     super = WODEN_DESC_SUPER_OBJS(desc, env);
-    desc_impl = INTF_TO_IMPL(axis2_hash_get(super,
+    desc_impl = INTF_TO_IMPL(axutil_hash_get(super,
             "WODEN_DESC", AXIS2_HASH_KEY_STRING));
 
     return axutil_array_list_add(desc_impl->f_binding_elements, env, binding);
@@ -1695,11 +1695,11 @@
     const axutil_env_t *env)
 {
     woden_desc_impl_t *desc_impl = NULL;
-    axis2_hash_t *super = NULL;
+    axutil_hash_t *super = NULL;
 
     AXIS2_ENV_CHECK(env, NULL);
     super = WODEN_DESC_SUPER_OBJS(desc, env);
-    desc_impl = INTF_TO_IMPL(axis2_hash_get(super,
+    desc_impl = INTF_TO_IMPL(axutil_hash_get(super,
             "WODEN_DESC", AXIS2_HASH_KEY_STRING));
 
     return desc_impl->f_binding_elements;
@@ -1712,12 +1712,12 @@
     void *svc_el)
 {
     woden_desc_impl_t *desc_impl = NULL;
-    axis2_hash_t *super = NULL;
+    axutil_hash_t *super = NULL;
 
     AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
     AXIS2_PARAM_CHECK(env->error, svc_el, AXIS2_FAILURE);
     super = WODEN_DESC_SUPER_OBJS(desc, env);
-    desc_impl = INTF_TO_IMPL(axis2_hash_get(super,
+    desc_impl = INTF_TO_IMPL(axutil_hash_get(super,
             "WODEN_DESC", AXIS2_HASH_KEY_STRING));
 
     return axutil_array_list_add(desc_impl->f_svc_elements, env, svc_el);
@@ -1729,11 +1729,11 @@
     const axutil_env_t *env)
 {
     woden_desc_impl_t *desc_impl = NULL;
-    axis2_hash_t *super = NULL;
+    axutil_hash_t *super = NULL;
 
     AXIS2_ENV_CHECK(env, NULL);
     super = WODEN_DESC_SUPER_OBJS(desc, env);
-    desc_impl = INTF_TO_IMPL(axis2_hash_get(super,
+    desc_impl = INTF_TO_IMPL(axutil_hash_get(super,
             "WODEN_DESC", AXIS2_HASH_KEY_STRING));
 
     return desc_impl->f_svc_elements;
@@ -1892,12 +1892,12 @@
     void *ext_reg)
 {
     woden_desc_impl_t *desc_impl = NULL;
-    axis2_hash_t *super = NULL;
+    axutil_hash_t *super = NULL;
 
     AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
     AXIS2_PARAM_CHECK(env->error, ext_reg, AXIS2_FAILURE);
     super = WODEN_DESC_SUPER_OBJS(desc, env);
-    desc_impl = INTF_TO_IMPL(axis2_hash_get(super,
+    desc_impl = INTF_TO_IMPL(axutil_hash_get(super,
             "WODEN_DESC", AXIS2_HASH_KEY_STRING));
     if (desc_impl->f_ext_reg)
     {
@@ -1914,11 +1914,11 @@
     const axutil_env_t *env)
 {
     woden_desc_impl_t *desc_impl = NULL;
-    axis2_hash_t *super = NULL;
+    axutil_hash_t *super = NULL;
 
     AXIS2_ENV_CHECK(env, NULL);
     super = WODEN_DESC_SUPER_OBJS(desc, env);
-    desc_impl = INTF_TO_IMPL(axis2_hash_get(super,
+    desc_impl = INTF_TO_IMPL(axutil_hash_get(super,
             "WODEN_DESC", AXIS2_HASH_KEY_STRING));
 
     return desc_impl->f_ext_reg;
@@ -1930,11 +1930,11 @@
     const axutil_env_t *env)
 {
     woden_desc_impl_t *desc_impl = NULL;
-    axis2_hash_t *super = NULL;
+    axutil_hash_t *super = NULL;
 
     AXIS2_ENV_CHECK(env, NULL);
     super = WODEN_DESC_SUPER_OBJS(desc, env);
-    desc_impl = INTF_TO_IMPL(axis2_hash_get(super,
+    desc_impl = INTF_TO_IMPL(axutil_hash_get(super,
             "WODEN_DESC", AXIS2_HASH_KEY_STRING));
 
     if (AXIS2_TRUE != desc_impl->f_component_initialized)
@@ -1962,12 +1962,12 @@
     void *interface)
 {
     woden_desc_impl_t *desc_impl = NULL;
-    axis2_hash_t *super = NULL;
+    axutil_hash_t *super = NULL;
 
     AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
     AXIS2_PARAM_CHECK(env->error, interface, AXIS2_FAILURE);
     super = WODEN_DESC_SUPER_OBJS(desc, env);
-    desc_impl = INTF_TO_IMPL(axis2_hash_get(super,
+    desc_impl = INTF_TO_IMPL(axutil_hash_get(super,
             "WODEN_DESC", AXIS2_HASH_KEY_STRING));
 
     return axutil_array_list_add(desc_impl->f_all_interfaces, env, interface);
@@ -1980,12 +1980,12 @@
     void *binding)
 {
     woden_desc_impl_t *desc_impl = NULL;
-    axis2_hash_t *super = NULL;
+    axutil_hash_t *super = NULL;
 
     AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
     AXIS2_PARAM_CHECK(env->error, binding, AXIS2_FAILURE);
     super = WODEN_DESC_SUPER_OBJS(desc, env);
-    desc_impl = INTF_TO_IMPL(axis2_hash_get(super,
+    desc_impl = INTF_TO_IMPL(axutil_hash_get(super,
             "WODEN_DESC", AXIS2_HASH_KEY_STRING));
 
     return axutil_array_list_add(desc_impl->f_all_bindings, env, binding);
@@ -1998,12 +1998,12 @@
     void *svc)
 {
     woden_desc_impl_t *desc_impl = NULL;
-    axis2_hash_t *super = NULL;
+    axutil_hash_t *super = NULL;
 
     AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
     AXIS2_PARAM_CHECK(env->error, svc, AXIS2_FAILURE);
     super = WODEN_DESC_SUPER_OBJS(desc, env);
-    desc_impl = INTF_TO_IMPL(axis2_hash_get(super,
+    desc_impl = INTF_TO_IMPL(axutil_hash_get(super,
             "WODEN_DESC", AXIS2_HASH_KEY_STRING));
 
     return axutil_array_list_add(desc_impl->f_all_svcs, env, svc);
@@ -2016,12 +2016,12 @@
     void *element_decl)
 {
     woden_desc_impl_t *desc_impl = NULL;
-    axis2_hash_t *super = NULL;
+    axutil_hash_t *super = NULL;
 
     AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
     AXIS2_PARAM_CHECK(env->error, element_decl, AXIS2_FAILURE);
     super = WODEN_DESC_SUPER_OBJS(desc, env);
-    desc_impl = INTF_TO_IMPL(axis2_hash_get(super,
+    desc_impl = INTF_TO_IMPL(axutil_hash_get(super,
             "WODEN_DESC", AXIS2_HASH_KEY_STRING));
 
     if (!desc_impl->f_all_element_decls)
@@ -2043,12 +2043,12 @@
     void *type_def)
 {
     woden_desc_impl_t *desc_impl = NULL;
-    axis2_hash_t *super = NULL;
+    axutil_hash_t *super = NULL;
 
     AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
     AXIS2_PARAM_CHECK(env->error, type_def, AXIS2_FAILURE);
     super = WODEN_DESC_SUPER_OBJS(desc, env);
-    desc_impl = INTF_TO_IMPL(axis2_hash_get(super,
+    desc_impl = INTF_TO_IMPL(axutil_hash_get(super,
             "WODEN_DESC", AXIS2_HASH_KEY_STRING));
 
     if (!desc_impl->f_all_type_defs)
@@ -2070,11 +2070,11 @@
     const axutil_env_t *env)
 {
     woden_desc_impl_t *desc_impl = NULL;
-    axis2_hash_t *super = NULL;
+    axutil_hash_t *super = NULL;
 
     AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
     super = WODEN_DESC_SUPER_OBJS(desc, env);
-    desc_impl = INTF_TO_IMPL(axis2_hash_get(super,
+    desc_impl = INTF_TO_IMPL(axutil_hash_get(super,
             "WODEN_DESC", AXIS2_HASH_KEY_STRING));
 
     desc_impl->f_component_initialized = AXIS2_TRUE;

Modified: webservices/axis2/trunk/c/woden/src/wsdl20/woden_endpoint.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/woden/src/wsdl20/woden_endpoint.c?view=diff&rev=524225&r1=524224&r2=524225
==============================================================================
--- webservices/axis2/trunk/c/woden/src/wsdl20/woden_endpoint.c (original)
+++ webservices/axis2/trunk/c/woden/src/wsdl20/woden_endpoint.c Fri Mar 30 11:28:18 2007
@@ -35,8 +35,8 @@
     woden_endpoint_t endpoint;
     woden_obj_types_t obj_type;
     woden_nested_configurable_t *nested_configurable;
-    axis2_hash_t *super;
-    axis2_hash_t *methods;
+    axutil_hash_t *super;
+    axutil_hash_t *methods;
     woden_nc_name_t *f_name;
     axis2_qname_t *f_binding_qname;
     void *f_binding;
@@ -50,7 +50,7 @@
     void *endpoint,
     const axutil_env_t *env);
 
-axis2_hash_t *AXIS2_CALL
+axutil_hash_t *AXIS2_CALL
 woden_endpoint_super_objs(
     void *endpoint,
     const axutil_env_t *env);
@@ -522,44 +522,44 @@
     endpoint_impl->endpoint.ops->set_binding_element =
         woden_endpoint_set_binding_element;
 
-    endpoint_impl->methods = axis2_hash_make(env);
+    endpoint_impl->methods = axutil_hash_make(env);
     if (!endpoint_impl->methods)
     {
         AXIS2_ERROR_SET(env->error, AXIS2_ERROR_NO_MEMORY, AXIS2_FAILURE);
         return NULL;
     }
-    axis2_hash_set(endpoint_impl->methods, "free", AXIS2_HASH_KEY_STRING,
+    axutil_hash_set(endpoint_impl->methods, "free", AXIS2_HASH_KEY_STRING,
             woden_endpoint_free);
-    axis2_hash_set(endpoint_impl->methods, "super_objs",
+    axutil_hash_set(endpoint_impl->methods, "super_objs",
             AXIS2_HASH_KEY_STRING, woden_endpoint_super_objs);
-    axis2_hash_set(endpoint_impl->methods, "type",
+    axutil_hash_set(endpoint_impl->methods, "type",
             AXIS2_HASH_KEY_STRING, woden_endpoint_type);
 
-    axis2_hash_set(endpoint_impl->methods, "get_name",
+    axutil_hash_set(endpoint_impl->methods, "get_name",
             AXIS2_HASH_KEY_STRING,
             woden_endpoint_get_name);
-    axis2_hash_set(endpoint_impl->methods, "get_binding",
+    axutil_hash_set(endpoint_impl->methods, "get_binding",
             AXIS2_HASH_KEY_STRING,
             woden_endpoint_get_binding);
-    axis2_hash_set(endpoint_impl->methods, "get_address",
+    axutil_hash_set(endpoint_impl->methods, "get_address",
             AXIS2_HASH_KEY_STRING,
             woden_endpoint_get_address);
-    axis2_hash_set(endpoint_impl->methods, "set_name",
+    axutil_hash_set(endpoint_impl->methods, "set_name",
             AXIS2_HASH_KEY_STRING,
             woden_endpoint_set_name);
-    axis2_hash_set(endpoint_impl->methods, "set_binding_qname",
+    axutil_hash_set(endpoint_impl->methods, "set_binding_qname",
             AXIS2_HASH_KEY_STRING,
             woden_endpoint_set_binding_qname);
-    axis2_hash_set(endpoint_impl->methods, "get_binding_qname",
+    axutil_hash_set(endpoint_impl->methods, "get_binding_qname",
             AXIS2_HASH_KEY_STRING,
             woden_endpoint_get_binding_qname);
-    axis2_hash_set(endpoint_impl->methods, "get_binding_element",
+    axutil_hash_set(endpoint_impl->methods, "get_binding_element",
             AXIS2_HASH_KEY_STRING,
             woden_endpoint_get_binding_element);
-    axis2_hash_set(endpoint_impl->methods, "set_address",
+    axutil_hash_set(endpoint_impl->methods, "set_address",
             AXIS2_HASH_KEY_STRING,
             woden_endpoint_set_address);
-    axis2_hash_set(endpoint_impl->methods, "set_binding_element",
+    axutil_hash_set(endpoint_impl->methods, "set_binding_element",
             AXIS2_HASH_KEY_STRING,
             woden_endpoint_set_binding_element);
 
@@ -576,15 +576,15 @@
 
     endpoint_impl->nested_configurable = woden_nested_configurable_create(env);
 
-    endpoint_impl->super = axis2_hash_make(env);
+    endpoint_impl->super = axutil_hash_make(env);
     if (!endpoint_impl->super)
     {
         AXIS2_ERROR_SET(env->error, AXIS2_ERROR_NO_MEMORY, AXIS2_FAILURE);
         return NULL;
     }
-    axis2_hash_set(endpoint_impl->super, "WODEN_ENDPOINT", AXIS2_HASH_KEY_STRING,
+    axutil_hash_set(endpoint_impl->super, "WODEN_ENDPOINT", AXIS2_HASH_KEY_STRING,
             &(endpoint_impl->endpoint));
-    axis2_hash_set(endpoint_impl->super, "WODEN_NESTED_CONFIGURABLE", AXIS2_HASH_KEY_STRING,
+    axutil_hash_set(endpoint_impl->super, "WODEN_NESTED_CONFIGURABLE", AXIS2_HASH_KEY_STRING,
             endpoint_impl->nested_configurable);
 
     return &(endpoint_impl->endpoint);
@@ -740,13 +740,13 @@
 
     if (endpoint_impl->super)
     {
-        axis2_hash_free(endpoint_impl->super, env);
+        axutil_hash_free(endpoint_impl->super, env);
         endpoint_impl->super = NULL;
     }
 
     if (endpoint_impl->methods)
     {
-        axis2_hash_free(endpoint_impl->methods, env);
+        axutil_hash_free(endpoint_impl->methods, env);
         endpoint_impl->methods = NULL;
     }
 
@@ -772,7 +772,7 @@
     return AXIS2_SUCCESS;
 }
 
-axis2_hash_t *AXIS2_CALL
+axutil_hash_t *AXIS2_CALL
 woden_endpoint_super_objs(
     void *endpoint,
     const axutil_env_t *env)
@@ -816,7 +816,7 @@
     woden_endpoint_t *endpoint,
     const axutil_env_t *env,
     woden_endpoint_t *endpoint_impl,
-    axis2_hash_t *methods)
+    axutil_hash_t *methods)
 {
     woden_endpoint_impl_t *endpoint_impl_l = NULL;
 
@@ -824,32 +824,32 @@
     AXIS2_PARAM_CHECK(env->error, methods, AXIS2_FAILURE);
     endpoint_impl_l = INTF_TO_IMPL(endpoint_impl);
 
-    endpoint->ops->free = axis2_hash_get(methods, "free",
+    endpoint->ops->free = axutil_hash_get(methods, "free",
             AXIS2_HASH_KEY_STRING);
-    endpoint->ops->super_objs = axis2_hash_get(methods, "super_objs",
+    endpoint->ops->super_objs = axutil_hash_get(methods, "super_objs",
             AXIS2_HASH_KEY_STRING);
-    endpoint->ops->type = axis2_hash_get(methods, "type",
+    endpoint->ops->type = axutil_hash_get(methods, "type",
             AXIS2_HASH_KEY_STRING);
 
-    endpoint->ops->get_name = axis2_hash_get(methods,
+    endpoint->ops->get_name = axutil_hash_get(methods,
             "get_name", AXIS2_HASH_KEY_STRING);
     if (!endpoint->ops->get_name && endpoint_impl_l)
         endpoint->ops->get_name =
             endpoint_impl_l->endpoint.ops->get_name;
 
-    endpoint->ops->get_binding = axis2_hash_get(methods,
+    endpoint->ops->get_binding = axutil_hash_get(methods,
             "get_binding", AXIS2_HASH_KEY_STRING);
     if (!endpoint->ops->get_binding && endpoint_impl_l)
         endpoint->ops->get_binding =
             endpoint_impl_l->endpoint.ops->get_binding;
 
-    endpoint->ops->get_address = axis2_hash_get(methods,
+    endpoint->ops->get_address = axutil_hash_get(methods,
             "get_address", AXIS2_HASH_KEY_STRING);
     if (!endpoint->ops->get_address && endpoint_impl_l)
         endpoint->ops->get_address =
             endpoint_impl_l->endpoint.ops->get_address;
 
-    endpoint->ops->set_binding_element = axis2_hash_get(methods,
+    endpoint->ops->set_binding_element = axutil_hash_get(methods,
             "set_binding_element", AXIS2_HASH_KEY_STRING);
     if (!endpoint->ops->set_binding_element && endpoint_impl_l)
         endpoint->ops->set_binding_element =
@@ -867,11 +867,11 @@
     const axutil_env_t *env)
 {
     woden_endpoint_impl_t *endpoint_impl = NULL;
-    axis2_hash_t *super = NULL;
+    axutil_hash_t *super = NULL;
 
     AXIS2_ENV_CHECK(env, NULL);
     super = WODEN_ENDPOINT_SUPER_OBJS(endpoint, env);
-    endpoint_impl = INTF_TO_IMPL(axis2_hash_get(super,
+    endpoint_impl = INTF_TO_IMPL(axutil_hash_get(super,
             "WODEN_ENDPOINT", AXIS2_HASH_KEY_STRING));
 
     return endpoint_impl->f_name;
@@ -883,11 +883,11 @@
     const axutil_env_t *env)
 {
     woden_endpoint_impl_t *endpoint_impl = NULL;
-    axis2_hash_t *super = NULL;
+    axutil_hash_t *super = NULL;
 
     AXIS2_ENV_CHECK(env, NULL);
     super = WODEN_ENDPOINT_SUPER_OBJS(endpoint, env);
-    endpoint_impl = INTF_TO_IMPL(axis2_hash_get(super,
+    endpoint_impl = INTF_TO_IMPL(axutil_hash_get(super,
             "WODEN_ENDPOINT", AXIS2_HASH_KEY_STRING));
 
     return endpoint_impl->f_binding;
@@ -899,11 +899,11 @@
     const axutil_env_t *env)
 {
     woden_endpoint_impl_t *endpoint_impl = NULL;
-    axis2_hash_t *super = NULL;
+    axutil_hash_t *super = NULL;
 
     AXIS2_ENV_CHECK(env, NULL);
     super = WODEN_ENDPOINT_SUPER_OBJS(endpoint, env);
-    endpoint_impl = INTF_TO_IMPL(axis2_hash_get(super,
+    endpoint_impl = INTF_TO_IMPL(axutil_hash_get(super,
             "WODEN_ENDPOINT", AXIS2_HASH_KEY_STRING));
 
     return endpoint_impl->f_address;
@@ -919,11 +919,11 @@
     woden_nc_name_t *name)
 {
     woden_endpoint_impl_t *endpoint_impl = NULL;
-    axis2_hash_t *super = NULL;
+    axutil_hash_t *super = NULL;
 
     AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
     super = WODEN_ENDPOINT_SUPER_OBJS(endpoint, env);
-    endpoint_impl = INTF_TO_IMPL(axis2_hash_get(super,
+    endpoint_impl = INTF_TO_IMPL(axutil_hash_get(super,
             "WODEN_ENDPOINT", AXIS2_HASH_KEY_STRING));
 
     if (endpoint_impl->f_name)
@@ -941,11 +941,11 @@
     axis2_qname_t *binding_qname)
 {
     woden_endpoint_impl_t *endpoint_impl = NULL;
-    axis2_hash_t *super = NULL;
+    axutil_hash_t *super = NULL;
 
     AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
     super = WODEN_ENDPOINT_SUPER_OBJS(endpoint, env);
-    endpoint_impl = INTF_TO_IMPL(axis2_hash_get(super,
+    endpoint_impl = INTF_TO_IMPL(axutil_hash_get(super,
             "WODEN_ENDPOINT", AXIS2_HASH_KEY_STRING));
 
     if (endpoint_impl->f_binding_qname)
@@ -963,11 +963,11 @@
     const axutil_env_t *env)
 {
     woden_endpoint_impl_t *endpoint_impl = NULL;
-    axis2_hash_t *super = NULL;
+    axutil_hash_t *super = NULL;
 
     AXIS2_ENV_CHECK(env, NULL);
     super = WODEN_ENDPOINT_SUPER_OBJS(endpoint, env);
-    endpoint_impl = INTF_TO_IMPL(axis2_hash_get(super,
+    endpoint_impl = INTF_TO_IMPL(axutil_hash_get(super,
             "WODEN_ENDPOINT", AXIS2_HASH_KEY_STRING));
 
     return endpoint_impl->f_binding_qname;
@@ -979,11 +979,11 @@
     const axutil_env_t *env)
 {
     woden_endpoint_impl_t *endpoint_impl = NULL;
-    axis2_hash_t *super = NULL;
+    axutil_hash_t *super = NULL;
 
     AXIS2_ENV_CHECK(env, NULL);
     super = WODEN_ENDPOINT_SUPER_OBJS(endpoint, env);
-    endpoint_impl = INTF_TO_IMPL(axis2_hash_get(super,
+    endpoint_impl = INTF_TO_IMPL(axutil_hash_get(super,
             "WODEN_ENDPOINT", AXIS2_HASH_KEY_STRING));
 
     return endpoint_impl->f_binding;
@@ -996,11 +996,11 @@
     axis2_uri_t *uri)
 {
     woden_endpoint_impl_t *endpoint_impl = NULL;
-    axis2_hash_t *super = NULL;
+    axutil_hash_t *super = NULL;
 
     AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
     super = WODEN_ENDPOINT_SUPER_OBJS(endpoint, env);
-    endpoint_impl = INTF_TO_IMPL(axis2_hash_get(super,
+    endpoint_impl = INTF_TO_IMPL(axutil_hash_get(super,
             "WODEN_ENDPOINT", AXIS2_HASH_KEY_STRING));
 
     if (endpoint_impl->f_address)
@@ -1024,11 +1024,11 @@
     void *binding)
 {
     woden_endpoint_impl_t *endpoint_impl = NULL;
-    axis2_hash_t *super = NULL;
+    axutil_hash_t *super = NULL;
 
     AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
     super = WODEN_ENDPOINT_SUPER_OBJS(endpoint, env);
-    endpoint_impl = INTF_TO_IMPL(axis2_hash_get(super,
+    endpoint_impl = INTF_TO_IMPL(axutil_hash_get(super,
             "WODEN_ENDPOINT", AXIS2_HASH_KEY_STRING));
 
     if (endpoint_impl->f_binding)

Modified: webservices/axis2/trunk/c/woden/src/wsdl20/woden_interface_fault.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/woden/src/wsdl20/woden_interface_fault.c?view=diff&rev=524225&r1=524224&r2=524225
==============================================================================
--- webservices/axis2/trunk/c/woden/src/wsdl20/woden_interface_fault.c (original)
+++ webservices/axis2/trunk/c/woden/src/wsdl20/woden_interface_fault.c Fri Mar 30 11:28:18 2007
@@ -37,8 +37,8 @@
     woden_interface_fault_t interface_fault;
     woden_nested_configurable_t *nested_configurable;
     woden_obj_types_t obj_type;
-    axis2_hash_t *super;
-    axis2_hash_t *methods;
+    axutil_hash_t *super;
+    axutil_hash_t *methods;
     axis2_qname_t *f_qname;
     void *f_element_decl;
     axis2_qname_t *f_element_qname;
@@ -52,7 +52,7 @@
     void *interface_fault,
     const axutil_env_t *env);
 
-axis2_hash_t *AXIS2_CALL
+axutil_hash_t *AXIS2_CALL
 woden_interface_fault_super_objs(
     void *interface_fault,
     const axutil_env_t *env);
@@ -416,44 +416,44 @@
     interface_fault_impl->nested_configurable =
         woden_nested_configurable_create(env);
 
-    interface_fault_impl->methods = axis2_hash_make(env);
+    interface_fault_impl->methods = axutil_hash_make(env);
     if (!interface_fault_impl->methods)
     {
         AXIS2_ERROR_SET(env->error, AXIS2_ERROR_NO_MEMORY, AXIS2_FAILURE);
         return NULL;
     }
-    axis2_hash_set(interface_fault_impl->methods, "free", AXIS2_HASH_KEY_STRING,
+    axutil_hash_set(interface_fault_impl->methods, "free", AXIS2_HASH_KEY_STRING,
             woden_interface_fault_free);
-    axis2_hash_set(interface_fault_impl->methods, "super_objs",
+    axutil_hash_set(interface_fault_impl->methods, "super_objs",
             AXIS2_HASH_KEY_STRING, woden_interface_fault_super_objs);
-    axis2_hash_set(interface_fault_impl->methods, "type",
+    axutil_hash_set(interface_fault_impl->methods, "type",
             AXIS2_HASH_KEY_STRING, woden_interface_fault_type);
 
-    axis2_hash_set(interface_fault_impl->methods, "get_qname",
+    axutil_hash_set(interface_fault_impl->methods, "get_qname",
             AXIS2_HASH_KEY_STRING,
             woden_interface_fault_get_qname);
-    axis2_hash_set(interface_fault_impl->methods, "get_element_decl",
+    axutil_hash_set(interface_fault_impl->methods, "get_element_decl",
             AXIS2_HASH_KEY_STRING,
             woden_interface_fault_get_element_decl);
-    axis2_hash_set(interface_fault_impl->methods, "to_element",
+    axutil_hash_set(interface_fault_impl->methods, "to_element",
             AXIS2_HASH_KEY_STRING,
             woden_interface_fault_to_element);
-    axis2_hash_set(interface_fault_impl->methods, "set_qname",
+    axutil_hash_set(interface_fault_impl->methods, "set_qname",
             AXIS2_HASH_KEY_STRING,
             woden_interface_fault_set_qname);
-    axis2_hash_set(interface_fault_impl->methods, "set_element_qname",
+    axutil_hash_set(interface_fault_impl->methods, "set_element_qname",
             AXIS2_HASH_KEY_STRING,
             woden_interface_fault_set_element_qname);
-    axis2_hash_set(interface_fault_impl->methods, "get_element_qname",
+    axutil_hash_set(interface_fault_impl->methods, "get_element_qname",
             AXIS2_HASH_KEY_STRING,
             woden_interface_fault_get_element_qname);
-    axis2_hash_set(interface_fault_impl->methods, "get_element",
+    axutil_hash_set(interface_fault_impl->methods, "get_element",
             AXIS2_HASH_KEY_STRING,
             woden_interface_fault_get_element);
-    axis2_hash_set(interface_fault_impl->methods, "set_element_decl",
+    axutil_hash_set(interface_fault_impl->methods, "set_element_decl",
             AXIS2_HASH_KEY_STRING,
             woden_interface_fault_set_element_decl);
-    axis2_hash_set(interface_fault_impl->methods, "set_types",
+    axutil_hash_set(interface_fault_impl->methods, "set_types",
             AXIS2_HASH_KEY_STRING,
             woden_interface_fault_set_types);
 
@@ -470,21 +470,21 @@
     interface_fault_impl = (woden_interface_fault_impl_t *) create(env);
 
 
-    interface_fault_impl->super = axis2_hash_make(env);
+    interface_fault_impl->super = axutil_hash_make(env);
     if (!interface_fault_impl->super)
     {
         AXIS2_ERROR_SET(env->error, AXIS2_ERROR_NO_MEMORY, AXIS2_FAILURE);
         return NULL;
     }
-    axis2_hash_set(interface_fault_impl->super, "WODEN_INTERFACE_FAULT",
+    axutil_hash_set(interface_fault_impl->super, "WODEN_INTERFACE_FAULT",
             AXIS2_HASH_KEY_STRING,
             &(interface_fault_impl->interface_fault));
-    axis2_hash_set(interface_fault_impl->super, "WODEN_NESTED_CONFIGURABLE",
+    axutil_hash_set(interface_fault_impl->super, "WODEN_NESTED_CONFIGURABLE",
             AXIS2_HASH_KEY_STRING,
             interface_fault_impl->nested_configurable);
     configurable = WODEN_NESTED_CONFIGURABLE_GET_BASE_IMPL(
                 interface_fault_impl->nested_configurable, env);
-    axis2_hash_set(interface_fault_impl->super, "WODEN_CONFIGURABLE",
+    axutil_hash_set(interface_fault_impl->super, "WODEN_CONFIGURABLE",
             AXIS2_HASH_KEY_STRING, configurable);
 
     return &(interface_fault_impl->interface_fault);
@@ -613,13 +613,13 @@
 
     if (interface_fault_impl->super)
     {
-        axis2_hash_free(interface_fault_impl->super, env);
+        axutil_hash_free(interface_fault_impl->super, env);
         interface_fault_impl->super = NULL;
     }
 
     if (interface_fault_impl->methods)
     {
-        axis2_hash_free(interface_fault_impl->methods, env);
+        axutil_hash_free(interface_fault_impl->methods, env);
         interface_fault_impl->methods = NULL;
     }
 
@@ -640,7 +640,7 @@
     return AXIS2_SUCCESS;
 }
 
-axis2_hash_t *AXIS2_CALL
+axutil_hash_t *AXIS2_CALL
 woden_interface_fault_super_objs(
     void *interface_fault,
     const axutil_env_t *env)
@@ -684,7 +684,7 @@
     woden_interface_fault_t *interface_fault,
     const axutil_env_t *env,
     woden_interface_fault_t *interface_fault_impl,
-    axis2_hash_t *methods)
+    axutil_hash_t *methods)
 {
     woden_interface_fault_impl_t *interface_fault_impl_l = NULL;
 
@@ -692,38 +692,38 @@
     AXIS2_PARAM_CHECK(env->error, methods, AXIS2_FAILURE);
     interface_fault_impl_l = INTF_TO_IMPL(interface_fault_impl);
 
-    interface_fault->ops->free = axis2_hash_get(methods, "free",
+    interface_fault->ops->free = axutil_hash_get(methods, "free",
             AXIS2_HASH_KEY_STRING);
-    interface_fault->ops->super_objs = axis2_hash_get(methods, "super_objs",
+    interface_fault->ops->super_objs = axutil_hash_get(methods, "super_objs",
             AXIS2_HASH_KEY_STRING);
-    interface_fault->ops->type = axis2_hash_get(methods, "type",
+    interface_fault->ops->type = axutil_hash_get(methods, "type",
             AXIS2_HASH_KEY_STRING);
 
-    interface_fault->ops->get_qname = axis2_hash_get(methods,
+    interface_fault->ops->get_qname = axutil_hash_get(methods,
             "get_qname", AXIS2_HASH_KEY_STRING);
     if (!interface_fault->ops->get_qname && interface_fault_impl_l)
         interface_fault->ops->get_qname =
             interface_fault_impl_l->interface_fault.ops->get_qname;
 
-    interface_fault->ops->get_element_decl = axis2_hash_get(methods,
+    interface_fault->ops->get_element_decl = axutil_hash_get(methods,
             "get_element_decl", AXIS2_HASH_KEY_STRING);
     if (!interface_fault->ops->get_element_decl && interface_fault_impl_l)
         interface_fault->ops->get_element_decl =
             interface_fault_impl_l->interface_fault.ops->get_element_decl;
 
-    interface_fault->ops->to_element = axis2_hash_get(methods,
+    interface_fault->ops->to_element = axutil_hash_get(methods,
             "to_element", AXIS2_HASH_KEY_STRING);
     if (!interface_fault->ops->to_element && interface_fault_impl_l)
         interface_fault->ops->to_element =
             interface_fault_impl_l->interface_fault.ops->to_element;
 
-    interface_fault->ops->set_element_decl = axis2_hash_get(methods,
+    interface_fault->ops->set_element_decl = axutil_hash_get(methods,
             "set_element_decl", AXIS2_HASH_KEY_STRING);
     if (!interface_fault->ops->set_element_decl && interface_fault_impl_l)
         interface_fault->ops->set_element_decl =
             interface_fault_impl_l->interface_fault.ops->set_element_decl;
 
-    interface_fault->ops->set_types = axis2_hash_get(methods,
+    interface_fault->ops->set_types = axutil_hash_get(methods,
             "set_types", AXIS2_HASH_KEY_STRING);
     if (!interface_fault->ops->set_types && interface_fault_impl_l)
         interface_fault->ops->set_types =
@@ -741,11 +741,11 @@
     const axutil_env_t *env)
 {
     woden_interface_fault_impl_t *interface_fault_impl = NULL;
-    axis2_hash_t *super = NULL;
+    axutil_hash_t *super = NULL;
 
     AXIS2_ENV_CHECK(env, NULL);
     super = WODEN_INTERFACE_FAULT_SUPER_OBJS(interface_fault, env);
-    interface_fault_impl = INTF_TO_IMPL(axis2_hash_get(super,
+    interface_fault_impl = INTF_TO_IMPL(axutil_hash_get(super,
             "WODEN_INTERFACE_FAULT", AXIS2_HASH_KEY_STRING));
 
     return interface_fault_impl->f_qname;
@@ -757,11 +757,11 @@
     const axutil_env_t *env)
 {
     woden_interface_fault_impl_t *interface_fault_impl = NULL;
-    axis2_hash_t *super = NULL;
+    axutil_hash_t *super = NULL;
 
     AXIS2_ENV_CHECK(env, NULL);
     super = WODEN_INTERFACE_FAULT_SUPER_OBJS(interface_fault, env);
-    interface_fault_impl = INTF_TO_IMPL(axis2_hash_get(super,
+    interface_fault_impl = INTF_TO_IMPL(axutil_hash_get(super,
             "WODEN_INTERFACE_FAULT", AXIS2_HASH_KEY_STRING));
 
     return interface_fault_impl->f_element_decl;
@@ -773,11 +773,11 @@
     const axutil_env_t *env)
 {
     woden_interface_fault_impl_t *interface_fault_impl = NULL;
-    axis2_hash_t *super = NULL;
+    axutil_hash_t *super = NULL;
 
     AXIS2_ENV_CHECK(env, NULL);
     super = WODEN_INTERFACE_FAULT_SUPER_OBJS(interface_fault, env);
-    interface_fault_impl = INTF_TO_IMPL(axis2_hash_get(super,
+    interface_fault_impl = INTF_TO_IMPL(axutil_hash_get(super,
             "WODEN_INTERFACE_FAULT", AXIS2_HASH_KEY_STRING));
 
     return &(interface_fault_impl->interface_fault);
@@ -793,12 +793,12 @@
     axis2_qname_t *qname)
 {
     woden_interface_fault_impl_t *interface_fault_impl = NULL;
-    axis2_hash_t *super = NULL;
+    axutil_hash_t *super = NULL;
 
     AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
     AXIS2_PARAM_CHECK(env->error, qname, AXIS2_FAILURE);
     super = WODEN_INTERFACE_FAULT_SUPER_OBJS(interface_fault, env);
-    interface_fault_impl = INTF_TO_IMPL(axis2_hash_get(super,
+    interface_fault_impl = INTF_TO_IMPL(axutil_hash_get(super,
             "WODEN_INTERFACE_FAULT", AXIS2_HASH_KEY_STRING));
 
     if (interface_fault_impl->f_qname)
@@ -816,12 +816,12 @@
     axis2_qname_t *qname)
 {
     woden_interface_fault_impl_t *interface_fault_impl = NULL;
-    axis2_hash_t *super = NULL;
+    axutil_hash_t *super = NULL;
 
     AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
     AXIS2_PARAM_CHECK(env->error, qname, AXIS2_FAILURE);
     super = WODEN_INTERFACE_FAULT_SUPER_OBJS(interface_fault, env);
-    interface_fault_impl = INTF_TO_IMPL(axis2_hash_get(super,
+    interface_fault_impl = INTF_TO_IMPL(axutil_hash_get(super,
             "WODEN_INTERFACE_FAULT", AXIS2_HASH_KEY_STRING));
 
     if (!interface_fault_impl->f_element_qname)
@@ -840,11 +840,11 @@
     const axutil_env_t *env)
 {
     woden_interface_fault_impl_t *interface_fault_impl = NULL;
-    axis2_hash_t *super = NULL;
+    axutil_hash_t *super = NULL;
 
     AXIS2_ENV_CHECK(env, NULL);
     super = WODEN_INTERFACE_FAULT_SUPER_OBJS(interface_fault, env);
-    interface_fault_impl = INTF_TO_IMPL(axis2_hash_get(super,
+    interface_fault_impl = INTF_TO_IMPL(axutil_hash_get(super,
             "WODEN_INTERFACE_FAULT", AXIS2_HASH_KEY_STRING));
 
     return interface_fault_impl->f_element_qname;
@@ -856,12 +856,12 @@
     const axutil_env_t *env)
 {
     woden_interface_fault_impl_t *interface_fault_impl = NULL;
-    axis2_hash_t *super = NULL;
+    axutil_hash_t *super = NULL;
     xml_schema_element_t *xse = NULL;
 
     AXIS2_ENV_CHECK(env, NULL);
     super = WODEN_INTERFACE_FAULT_SUPER_OBJS(interface_fault, env);
-    interface_fault_impl = INTF_TO_IMPL(axis2_hash_get(super,
+    interface_fault_impl = INTF_TO_IMPL(axutil_hash_get(super,
             "WODEN_INTERFACE_FAULT", AXIS2_HASH_KEY_STRING));
 
     if (interface_fault_impl->f_types)
@@ -879,12 +879,12 @@
     void *element_decl)
 {
     woden_interface_fault_impl_t *interface_fault_impl = NULL;
-    axis2_hash_t *super = NULL;
+    axutil_hash_t *super = NULL;
 
     AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
     AXIS2_PARAM_CHECK(env->error, element_decl, AXIS2_FAILURE);
     super = WODEN_INTERFACE_FAULT_SUPER_OBJS(interface_fault, env);
-    interface_fault_impl = INTF_TO_IMPL(axis2_hash_get(super,
+    interface_fault_impl = INTF_TO_IMPL(axutil_hash_get(super,
             "WODEN_INTERFACE_FAULT", AXIS2_HASH_KEY_STRING));
 
     if (!interface_fault_impl->f_element_decl)
@@ -904,12 +904,12 @@
     void *types)
 {
     woden_interface_fault_impl_t *interface_fault_impl = NULL;
-    axis2_hash_t *super = NULL;
+    axutil_hash_t *super = NULL;
 
     AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
     AXIS2_PARAM_CHECK(env->error, types, AXIS2_FAILURE);
     super = WODEN_INTERFACE_FAULT_SUPER_OBJS(interface_fault, env);
-    interface_fault_impl = INTF_TO_IMPL(axis2_hash_get(super,
+    interface_fault_impl = INTF_TO_IMPL(axutil_hash_get(super,
             "WODEN_INTERFACE_FAULT", AXIS2_HASH_KEY_STRING));
 
     if (!interface_fault_impl->f_types)

Modified: webservices/axis2/trunk/c/woden/src/wsdl20/woden_interface_fault_ref.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/woden/src/wsdl20/woden_interface_fault_ref.c?view=diff&rev=524225&r1=524224&r2=524225
==============================================================================
--- webservices/axis2/trunk/c/woden/src/wsdl20/woden_interface_fault_ref.c (original)
+++ webservices/axis2/trunk/c/woden/src/wsdl20/woden_interface_fault_ref.c Fri Mar 30 11:28:18 2007
@@ -37,8 +37,8 @@
     woden_interface_fault_ref_t interface_fault_ref;
     woden_nested_configurable_t *nested_configurable;
     woden_obj_types_t obj_type;
-    axis2_hash_t *super;
-    axis2_hash_t *methods;
+    axutil_hash_t *super;
+    axutil_hash_t *methods;
     void *f_interface_fault;
     void *f_msg_label;
     void *f_direction;
@@ -52,7 +52,7 @@
     void *interface_fault_ref,
     const axutil_env_t *env);
 
-axis2_hash_t *AXIS2_CALL
+axutil_hash_t *AXIS2_CALL
 woden_interface_fault_ref_super_objs(
     void *interface_fault_ref,
     const axutil_env_t *env);
@@ -447,47 +447,47 @@
     interface_fault_ref_impl->interface_fault_ref.ops->to_element =
         woden_interface_fault_ref_to_element;
 
-    interface_fault_ref_impl->methods = axis2_hash_make(env);
+    interface_fault_ref_impl->methods = axutil_hash_make(env);
     if (!interface_fault_ref_impl->methods)
     {
         AXIS2_ERROR_SET(env->error, AXIS2_ERROR_NO_MEMORY, AXIS2_FAILURE);
         return NULL;
     }
-    axis2_hash_set(interface_fault_ref_impl->methods, "free", AXIS2_HASH_KEY_STRING,
+    axutil_hash_set(interface_fault_ref_impl->methods, "free", AXIS2_HASH_KEY_STRING,
             woden_interface_fault_ref_free);
-    axis2_hash_set(interface_fault_ref_impl->methods, "super_objs",
+    axutil_hash_set(interface_fault_ref_impl->methods, "super_objs",
             AXIS2_HASH_KEY_STRING, woden_interface_fault_ref_super_objs);
-    axis2_hash_set(interface_fault_ref_impl->methods, "type",
+    axutil_hash_set(interface_fault_ref_impl->methods, "type",
             AXIS2_HASH_KEY_STRING, woden_interface_fault_ref_type);
 
-    axis2_hash_set(interface_fault_ref_impl->methods, "get_interface_fault",
+    axutil_hash_set(interface_fault_ref_impl->methods, "get_interface_fault",
             AXIS2_HASH_KEY_STRING,
             woden_interface_fault_ref_get_interface_fault);
-    axis2_hash_set(interface_fault_ref_impl->methods, "get_msg_label",
+    axutil_hash_set(interface_fault_ref_impl->methods, "get_msg_label",
             AXIS2_HASH_KEY_STRING,
             woden_interface_fault_ref_get_msg_label);
-    axis2_hash_set(interface_fault_ref_impl->methods, "get_direction",
+    axutil_hash_set(interface_fault_ref_impl->methods, "get_direction",
             AXIS2_HASH_KEY_STRING,
             woden_interface_fault_ref_get_direction);
-    axis2_hash_set(interface_fault_ref_impl->methods, "to_element",
+    axutil_hash_set(interface_fault_ref_impl->methods, "to_element",
             AXIS2_HASH_KEY_STRING,
             woden_interface_fault_ref_to_element);
-    axis2_hash_set(interface_fault_ref_impl->methods, "set_ref",
+    axutil_hash_set(interface_fault_ref_impl->methods, "set_ref",
             AXIS2_HASH_KEY_STRING,
             woden_interface_fault_ref_set_ref);
-    axis2_hash_set(interface_fault_ref_impl->methods, "get_ref",
+    axutil_hash_set(interface_fault_ref_impl->methods, "get_ref",
             AXIS2_HASH_KEY_STRING,
             woden_interface_fault_ref_get_ref);
-    axis2_hash_set(interface_fault_ref_impl->methods, "get_interface_fault_element",
+    axutil_hash_set(interface_fault_ref_impl->methods, "get_interface_fault_element",
             AXIS2_HASH_KEY_STRING,
             woden_interface_fault_ref_get_interface_fault_element);
-    axis2_hash_set(interface_fault_ref_impl->methods, "set_msg_label",
+    axutil_hash_set(interface_fault_ref_impl->methods, "set_msg_label",
             AXIS2_HASH_KEY_STRING,
             woden_interface_fault_ref_set_msg_label);
-    axis2_hash_set(interface_fault_ref_impl->methods, "set_direction",
+    axutil_hash_set(interface_fault_ref_impl->methods, "set_direction",
             AXIS2_HASH_KEY_STRING,
             woden_interface_fault_ref_set_direction);
-    axis2_hash_set(interface_fault_ref_impl->methods, "set_interface_fault",
+    axutil_hash_set(interface_fault_ref_impl->methods, "set_interface_fault",
             AXIS2_HASH_KEY_STRING,
             woden_interface_fault_ref_set_interface_fault);
 
@@ -505,21 +505,21 @@
 
     interface_fault_ref_impl->nested_configurable = woden_nested_configurable_create(env);
 
-    interface_fault_ref_impl->super = axis2_hash_make(env);
+    interface_fault_ref_impl->super = axutil_hash_make(env);
     if (!interface_fault_ref_impl->super)
     {
         AXIS2_ERROR_SET(env->error, AXIS2_ERROR_NO_MEMORY, AXIS2_FAILURE);
         return NULL;
     }
-    axis2_hash_set(interface_fault_ref_impl->super, "WODEN_INTERFACE_FAULT_REF",
+    axutil_hash_set(interface_fault_ref_impl->super, "WODEN_INTERFACE_FAULT_REF",
             AXIS2_HASH_KEY_STRING,
             &(interface_fault_ref_impl->interface_fault_ref));
-    axis2_hash_set(interface_fault_ref_impl->super, "WODEN_NESTED_CONFIGURABLE",
+    axutil_hash_set(interface_fault_ref_impl->super, "WODEN_NESTED_CONFIGURABLE",
             AXIS2_HASH_KEY_STRING,
             interface_fault_ref_impl->nested_configurable);
     configurable = WODEN_NESTED_CONFIGURABLE_GET_BASE_IMPL(
                 interface_fault_ref_impl->nested_configurable, env);
-    axis2_hash_set(interface_fault_ref_impl->super, "WODEN_CONFIGURABLE",
+    axutil_hash_set(interface_fault_ref_impl->super, "WODEN_CONFIGURABLE",
             AXIS2_HASH_KEY_STRING, configurable);
 
     return &(interface_fault_ref_impl->interface_fault_ref);
@@ -649,13 +649,13 @@
 
     if (interface_fault_ref_impl->super)
     {
-        axis2_hash_free(interface_fault_ref_impl->super, env);
+        axutil_hash_free(interface_fault_ref_impl->super, env);
         interface_fault_ref_impl->super = NULL;
     }
 
     if (interface_fault_ref_impl->methods)
     {
-        axis2_hash_free(interface_fault_ref_impl->methods, env);
+        axutil_hash_free(interface_fault_ref_impl->methods, env);
         interface_fault_ref_impl->methods = NULL;
     }
 
@@ -682,7 +682,7 @@
     return AXIS2_SUCCESS;
 }
 
-axis2_hash_t *AXIS2_CALL
+axutil_hash_t *AXIS2_CALL
 woden_interface_fault_ref_super_objs(
     void *interface_fault_ref,
     const axutil_env_t *env)
@@ -726,7 +726,7 @@
     woden_interface_fault_ref_t *interface_fault_ref,
     const axutil_env_t *env,
     woden_interface_fault_ref_t *interface_fault_ref_impl,
-    axis2_hash_t *methods)
+    axutil_hash_t *methods)
 {
     woden_interface_fault_ref_impl_t *interface_fault_ref_impl_l = NULL;
 
@@ -734,32 +734,32 @@
     AXIS2_PARAM_CHECK(env->error, methods, AXIS2_FAILURE);
     interface_fault_ref_impl_l = INTF_TO_IMPL(interface_fault_ref_impl);
 
-    interface_fault_ref->ops->free = axis2_hash_get(methods, "free",
+    interface_fault_ref->ops->free = axutil_hash_get(methods, "free",
             AXIS2_HASH_KEY_STRING);
-    interface_fault_ref->ops->super_objs = axis2_hash_get(methods, "super_objs",
+    interface_fault_ref->ops->super_objs = axutil_hash_get(methods, "super_objs",
             AXIS2_HASH_KEY_STRING);
-    interface_fault_ref->ops->type = axis2_hash_get(methods, "type",
+    interface_fault_ref->ops->type = axutil_hash_get(methods, "type",
             AXIS2_HASH_KEY_STRING);
 
-    interface_fault_ref->ops->get_interface_fault = axis2_hash_get(methods,
+    interface_fault_ref->ops->get_interface_fault = axutil_hash_get(methods,
             "get_interface_fault", AXIS2_HASH_KEY_STRING);
     if (!interface_fault_ref->ops->get_interface_fault && interface_fault_ref_impl_l)
         interface_fault_ref->ops->get_interface_fault =
             interface_fault_ref_impl_l->interface_fault_ref.ops->get_interface_fault;
 
-    interface_fault_ref->ops->get_msg_label = axis2_hash_get(methods,
+    interface_fault_ref->ops->get_msg_label = axutil_hash_get(methods,
             "get_msg_label", AXIS2_HASH_KEY_STRING);
     if (!interface_fault_ref->ops->get_msg_label && interface_fault_ref_impl_l)
         interface_fault_ref->ops->get_msg_label =
             interface_fault_ref_impl_l->interface_fault_ref.ops->get_msg_label;
 
-    interface_fault_ref->ops->get_direction = axis2_hash_get(methods,
+    interface_fault_ref->ops->get_direction = axutil_hash_get(methods,
             "get_direction", AXIS2_HASH_KEY_STRING);
     if (!interface_fault_ref->ops->get_direction && interface_fault_ref_impl_l)
         interface_fault_ref->ops->get_direction =
             interface_fault_ref_impl_l->interface_fault_ref.ops->get_direction;
 
-    interface_fault_ref->ops->to_element = axis2_hash_get(methods,
+    interface_fault_ref->ops->to_element = axutil_hash_get(methods,
             "to_element", AXIS2_HASH_KEY_STRING);
     if (!interface_fault_ref->ops->to_element && interface_fault_ref_impl_l)
         interface_fault_ref->ops->to_element =
@@ -777,11 +777,11 @@
     const axutil_env_t *env)
 {
     woden_interface_fault_ref_impl_t *interface_fault_ref_impl = NULL;
-    axis2_hash_t *super = NULL;
+    axutil_hash_t *super = NULL;
 
     AXIS2_ENV_CHECK(env, NULL);
     super = WODEN_INTERFACE_FAULT_REF_SUPER_OBJS(interface_fault_ref, env);
-    interface_fault_ref_impl = INTF_TO_IMPL(axis2_hash_get(super,
+    interface_fault_ref_impl = INTF_TO_IMPL(axutil_hash_get(super,
             "WODEN_INTERFACE_FAULT_REF", AXIS2_HASH_KEY_STRING));
 
     return interface_fault_ref_impl->f_interface_fault;
@@ -793,11 +793,11 @@
     const axutil_env_t *env)
 {
     woden_interface_fault_ref_impl_t *interface_fault_ref_impl = NULL;
-    axis2_hash_t *super = NULL;
+    axutil_hash_t *super = NULL;
 
     AXIS2_ENV_CHECK(env, NULL);
     super = WODEN_INTERFACE_FAULT_REF_SUPER_OBJS(interface_fault_ref, env);
-    interface_fault_ref_impl = INTF_TO_IMPL(axis2_hash_get(super,
+    interface_fault_ref_impl = INTF_TO_IMPL(axutil_hash_get(super,
             "WODEN_INTERFACE_FAULT_REF", AXIS2_HASH_KEY_STRING));
 
     return interface_fault_ref_impl->f_msg_label;
@@ -809,11 +809,11 @@
     const axutil_env_t *env)
 {
     woden_interface_fault_ref_impl_t *interface_fault_ref_impl = NULL;
-    axis2_hash_t *super = NULL;
+    axutil_hash_t *super = NULL;
 
     AXIS2_ENV_CHECK(env, NULL);
     super = WODEN_INTERFACE_FAULT_REF_SUPER_OBJS(interface_fault_ref, env);
-    interface_fault_ref_impl = INTF_TO_IMPL(axis2_hash_get(super,
+    interface_fault_ref_impl = INTF_TO_IMPL(axutil_hash_get(super,
             "WODEN_INTERFACE_FAULT_REF", AXIS2_HASH_KEY_STRING));
 
     return interface_fault_ref_impl->f_direction;
@@ -824,11 +824,11 @@
     const axutil_env_t *env)
 {
     woden_interface_fault_ref_impl_t *interface_fault_ref_impl = NULL;
-    axis2_hash_t *super = NULL;
+    axutil_hash_t *super = NULL;
 
     AXIS2_ENV_CHECK(env, NULL);
     super = WODEN_INTERFACE_FAULT_REF_SUPER_OBJS(interface_fault_ref, env);
-    interface_fault_ref_impl = INTF_TO_IMPL(axis2_hash_get(super,
+    interface_fault_ref_impl = INTF_TO_IMPL(axutil_hash_get(super,
             "WODEN_INTERFACE_FAULT_REF", AXIS2_HASH_KEY_STRING));
 
     return &(interface_fault_ref_impl->interface_fault_ref);
@@ -844,12 +844,12 @@
     axis2_qname_t *fault_qname)
 {
     woden_interface_fault_ref_impl_t *interface_fault_ref_impl = NULL;
-    axis2_hash_t *super = NULL;
+    axutil_hash_t *super = NULL;
 
     AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
     AXIS2_PARAM_CHECK(env->error, fault_qname, AXIS2_FAILURE);
     super = WODEN_INTERFACE_FAULT_REF_SUPER_OBJS(interface_fault_ref, env);
-    interface_fault_ref_impl = INTF_TO_IMPL(axis2_hash_get(super,
+    interface_fault_ref_impl = INTF_TO_IMPL(axutil_hash_get(super,
             "WODEN_INTERFACE_FAULT_REF", AXIS2_HASH_KEY_STRING));
 
     if (interface_fault_ref_impl->f_ref)
@@ -866,11 +866,11 @@
     const axutil_env_t *env)
 {
     woden_interface_fault_ref_impl_t *interface_fault_ref_impl = NULL;
-    axis2_hash_t *super = NULL;
+    axutil_hash_t *super = NULL;
 
     AXIS2_ENV_CHECK(env, NULL);
     super = WODEN_INTERFACE_FAULT_REF_SUPER_OBJS(interface_fault_ref, env);
-    interface_fault_ref_impl = INTF_TO_IMPL(axis2_hash_get(super,
+    interface_fault_ref_impl = INTF_TO_IMPL(axutil_hash_get(super,
             "WODEN_INTERFACE_FAULT_REF", AXIS2_HASH_KEY_STRING));
 
     return interface_fault_ref_impl->f_ref;
@@ -882,11 +882,11 @@
     const axutil_env_t *env)
 {
     woden_interface_fault_ref_impl_t *interface_fault_ref_impl = NULL;
-    axis2_hash_t *super = NULL;
+    axutil_hash_t *super = NULL;
 
     AXIS2_ENV_CHECK(env, NULL);
     super = WODEN_INTERFACE_FAULT_REF_SUPER_OBJS(interface_fault_ref, env);
-    interface_fault_ref_impl = INTF_TO_IMPL(axis2_hash_get(super,
+    interface_fault_ref_impl = INTF_TO_IMPL(axutil_hash_get(super,
             "WODEN_INTERFACE_FAULT_REF", AXIS2_HASH_KEY_STRING));
 
     return NULL;
@@ -899,12 +899,12 @@
     void *msg_label)
 {
     woden_interface_fault_ref_impl_t *interface_fault_ref_impl = NULL;
-    axis2_hash_t *super = NULL;
+    axutil_hash_t *super = NULL;
 
     AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
     AXIS2_PARAM_CHECK(env->error, msg_label, AXIS2_FAILURE);
     super = WODEN_INTERFACE_FAULT_REF_SUPER_OBJS(interface_fault_ref, env);
-    interface_fault_ref_impl = INTF_TO_IMPL(axis2_hash_get(super,
+    interface_fault_ref_impl = INTF_TO_IMPL(axutil_hash_get(super,
             "WODEN_INTERFACE_FAULT_REF", AXIS2_HASH_KEY_STRING));
 
     if (!interface_fault_ref_impl->f_msg_label)
@@ -924,12 +924,12 @@
     void *dir)
 {
     woden_interface_fault_ref_impl_t *interface_fault_ref_impl = NULL;
-    axis2_hash_t *super = NULL;
+    axutil_hash_t *super = NULL;
 
     AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
     AXIS2_PARAM_CHECK(env->error, dir, AXIS2_FAILURE);
     super = WODEN_INTERFACE_FAULT_REF_SUPER_OBJS(interface_fault_ref, env);
-    interface_fault_ref_impl = INTF_TO_IMPL(axis2_hash_get(super,
+    interface_fault_ref_impl = INTF_TO_IMPL(axutil_hash_get(super,
             "WODEN_INTERFACE_FAULT_REF", AXIS2_HASH_KEY_STRING));
 
     if (!interface_fault_ref_impl->f_direction)
@@ -952,12 +952,12 @@
     void *fault)
 {
     woden_interface_fault_ref_impl_t *interface_fault_ref_impl = NULL;
-    axis2_hash_t *super = NULL;
+    axutil_hash_t *super = NULL;
 
     AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
     AXIS2_PARAM_CHECK(env->error, fault, AXIS2_FAILURE);
     super = WODEN_INTERFACE_FAULT_REF_SUPER_OBJS(interface_fault_ref, env);
-    interface_fault_ref_impl = INTF_TO_IMPL(axis2_hash_get(super,
+    interface_fault_ref_impl = INTF_TO_IMPL(axutil_hash_get(super,
             "WODEN_INTERFACE_FAULT_REF", AXIS2_HASH_KEY_STRING));
 
     if (!interface_fault_ref_impl->f_interface_fault)



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