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 du...@apache.org on 2007/07/24 12:25:52 UTC

svn commit: r559001 - in /webservices/axis2/trunk/c/axiom: include/axiom_text.h src/om/om_text.c

Author: dumindu
Date: Tue Jul 24 03:25:51 2007
New Revision: 559001

URL: http://svn.apache.org/viewvc?view=rev&rev=559001
Log:
exported axiom_text_get_text


Modified:
    webservices/axis2/trunk/c/axiom/include/axiom_text.h
    webservices/axis2/trunk/c/axiom/src/om/om_text.c

Modified: webservices/axis2/trunk/c/axiom/include/axiom_text.h
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/axiom/include/axiom_text.h?view=diff&rev=559001&r1=559000&r2=559001
==============================================================================
--- webservices/axis2/trunk/c/axiom/include/axiom_text.h (original)
+++ webservices/axis2/trunk/c/axiom/include/axiom_text.h Tue Jul 24 03:25:51 2007
@@ -149,6 +149,17 @@
         axutil_string_t *value);
 
    /**
+     * Gets text value from the text node even when MTOM optimized
+     * @param om_text om_text struct
+     * @param env environment.
+     * @return text value base64 encoded text when MTOM optimized, 
+     * NULL is returned if there is no text value.
+     */
+    AXIS2_EXTERN const axis2_char_t *AXIS2_CALL
+        axiom_text_get_text(axiom_text_t *om_text,
+                    const axutil_env_t *env);
+
+   /**
      * Gets text value 
      * @param om_text om_text struct
      * @param env environment.

Modified: webservices/axis2/trunk/c/axiom/src/om/om_text.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/axiom/src/om/om_text.c?view=diff&rev=559001&r1=559000&r2=559001
==============================================================================
--- webservices/axis2/trunk/c/axiom/src/om/om_text.c (original)
+++ webservices/axis2/trunk/c/axiom/src/om/om_text.c Tue Jul 24 03:25:51 2007
@@ -25,10 +25,6 @@
 #include <axiom_namespace.h>
 #include <axutil_base64.h>
 
-static const axis2_char_t *AXIS2_CALL
-axiom_text_get_text(axiom_text_t *om_text,
-    const axutil_env_t *env);
-
 static axis2_bool_t AXIS2_CALL
 axiom_text_get_is_binary(axiom_text_t *om_text,
     const axutil_env_t *env);
@@ -480,7 +476,7 @@
     return AXIS2_SUCCESS;
 }
 
-static const axis2_char_t *AXIS2_CALL
+AXIS2_EXTERN const axis2_char_t *AXIS2_CALL
 axiom_text_get_text(axiom_text_t *om_text,
     const axutil_env_t *env)
 {



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