You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by di...@apache.org on 2007/07/26 08:24:58 UTC

svn commit: r559704 - /webservices/axis2/trunk/c/samples/server/echo/echo.c

Author: dinesh
Date: Wed Jul 25 23:24:57 2007
New Revision: 559704

URL: http://svn.apache.org/viewvc?view=rev&rev=559704
Log:
sample restored

Modified:
    webservices/axis2/trunk/c/samples/server/echo/echo.c

Modified: webservices/axis2/trunk/c/samples/server/echo/echo.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/samples/server/echo/echo.c?view=diff&rev=559704&r1=559703&r2=559704
==============================================================================
--- webservices/axis2/trunk/c/samples/server/echo/echo.c (original)
+++ webservices/axis2/trunk/c/samples/server/echo/echo.c Wed Jul 25 23:24:57 2007
@@ -87,18 +87,13 @@
     axiom_node_t* text_om_node = NULL;
     axiom_element_t * text_om_ele = NULL;
     axiom_namespace_t *ns1 = NULL;
-    int i = 0;
+    
     ns1 = axiom_namespace_create(env, "http://ws.apache.org/axis2/c/samples", "ns1");
     echo_om_ele = axiom_element_create(env, NULL, "echoString", ns1, &echo_om_node);
     text_om_ele = axiom_element_create(env, echo_om_node, "text", NULL, &text_om_node);
     axiom_element_set_text(text_om_ele, env, text, text_om_node);
-    
-    for (i = 0; i < 3000; i++)
-    {
-        text_om_ele = axiom_element_create(env, echo_om_node, "text", NULL, &text_om_node);
-        axiom_element_set_text(text_om_ele, env, text, text_om_node);
-    }
-        
+    text_om_ele = axiom_element_create(env, echo_om_node, "text", NULL, &text_om_node);
+    axiom_element_set_text(text_om_ele, env, text, text_om_node);
     return echo_om_node;
 }
 



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