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 ka...@apache.org on 2008/01/28 10:00:56 UTC

svn commit: r615771 - /webservices/axis2/trunk/c/axiom/src/util/om_util.c

Author: kaushalye
Date: Mon Jan 28 01:00:32 2008
New Revision: 615771

URL: http://svn.apache.org/viewvc?rev=615771&view=rev
Log:
Fixed JIRA https://issues.apache.org/jira/browse/AXIS2C-937

Modified:
    webservices/axis2/trunk/c/axiom/src/util/om_util.c

Modified: webservices/axis2/trunk/c/axiom/src/util/om_util.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/axiom/src/util/om_util.c?rev=615771&r1=615770&r2=615771&view=diff
==============================================================================
--- webservices/axis2/trunk/c/axiom/src/util/om_util.c (original)
+++ webservices/axis2/trunk/c/axiom/src/util/om_util.c Mon Jan 28 01:00:32 2008
@@ -23,6 +23,20 @@
 #include <axutil_uri.h>
 #include <axiom_util.h>
 
+
+AXIS2_EXTERN axis2_char_t *AXIS2_CALL
+axiom_util_get_child_text(axiom_node_t *node, 
+    const axutil_env_t * env)
+{
+    axiom_element_t *ele = NULL;
+    axis2_char_t *txt = NULL;
+
+    ele = (axiom_element_t*)axiom_node_get_data_element(node, env);
+    txt = axiom_element_get_text(ele, env, node);
+    
+    return txt;
+}
+
 AXIS2_EXTERN axiom_element_t *AXIS2_CALL
 axiom_util_get_first_child_element_with_uri(
     axiom_node_t * ele_node,



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