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 sa...@apache.org on 2006/01/31 17:39:24 UTC

svn commit: r373867 - /webservices/axis2/trunk/c/test/client/echo/echo_client.c

Author: samisa
Date: Tue Jan 31 08:39:19 2006
New Revision: 373867

URL: http://svn.apache.org/viewcvs?rev=373867&view=rev
Log:
More eye candy

Modified:
    webservices/axis2/trunk/c/test/client/echo/echo_client.c

Modified: webservices/axis2/trunk/c/test/client/echo/echo_client.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/test/client/echo/echo_client.c?rev=373867&r1=373866&r2=373867&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/client/echo/echo_client.c (original)
+++ webservices/axis2/trunk/c/test/client/echo/echo_client.c Tue Jan 31 08:39:19 2006
@@ -51,6 +51,12 @@
     address = "http://localhost:9090/axis2/services/echo/echo";
     if (argc > 1 )
         address = argv[1];
+    if (AXIS2_STRCMP(address, "-h") == 0)
+    {
+        printf("Usage : %s [endpoint_url]\n", argv[0]);
+        printf("use -h for help\n");
+        return 0;
+    }
 
     printf ("Using endpoint : %s\n", address);