You are viewing a plain text version of this content. The canonical link for it is here.
Posted to rampart-dev@ws.apache.org by na...@apache.org on 2007/06/25 08:03:12 UTC

svn commit: r550372 - in /webservices/rampart/trunk/c/samples/client/sec_echo: echo.c echo_helper.h

Author: nandika
Date: Sun Jun 24 23:03:11 2007
New Revision: 550372

URL: http://svn.apache.org/viewvc?view=rev&rev=550372
Log:
compilation error fixed, echo_helper.h removed

Removed:
    webservices/rampart/trunk/c/samples/client/sec_echo/echo_helper.h
Modified:
    webservices/rampart/trunk/c/samples/client/sec_echo/echo.c

Modified: webservices/rampart/trunk/c/samples/client/sec_echo/echo.c
URL: http://svn.apache.org/viewvc/webservices/rampart/trunk/c/samples/client/sec_echo/echo.c?view=diff&rev=550372&r1=550371&r2=550372
==============================================================================
--- webservices/rampart/trunk/c/samples/client/sec_echo/echo.c (original)
+++ webservices/rampart/trunk/c/samples/client/sec_echo/echo.c Sun Jun 24 23:03:11 2007
@@ -39,10 +39,12 @@
     axiom_node_t *payload = NULL;
     axiom_node_t *ret_node = NULL;
     axis2_status_t status = AXIS2_FAILURE;
-    /* Set up the environment */
-    env = axutil_env_create_all("echo.log", AXIS2_LOG_LEVEL_TRACE);
     neethi_policy_t *policy = NULL;
     axis2_char_t *file_name = NULL;
+	
+	/* Set up the environment */
+    env = axutil_env_create_all("echo.log", AXIS2_LOG_LEVEL_TRACE);
+
 
     /* Set end point reference of echo service */
     address = "http://localhost:9090/axis2/services/echo";