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 2004/09/21 06:17:47 UTC

cvs commit: ws-axis/c/tests/client/performance/time Client.cpp

samisa      2004/09/20 21:17:47

  Modified:    c/tests/client/performance/time Client.cpp
  Log:
  Improved usage help
  
  Revision  Changes    Path
  1.2       +6 -4      ws-axis/c/tests/client/performance/time/Client.cpp
  
  Index: Client.cpp
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/client/performance/time/Client.cpp,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- Client.cpp	21 Sep 2004 04:09:09 -0000	1.1
  +++ Client.cpp	21 Sep 2004 04:17:47 -0000	1.2
  @@ -42,12 +42,14 @@
   usage (char *programName, char *defaultURL)
   {
       cout << "\nUsage:\n"
  -	<< programName << " [-? | service_url] " << endl
  +	<< programName << " [-? | message_size [service_url]] " << endl
   	<< "    -?             Show this help.\n"
  +	<< "    message_size   Size of the message sent in chars / 10\n"
  +        << "                   (i.e. If you say 5, then 50 chars would be sent).\n"
  +        << "                   Default is 10*10.\n"
   	<< "    service_url    URL of the service.\n"
  -	<< "    Default service URL is assumed to be " << defaultURL
  -	<<
  -	"\n    Could use http://localhost:8080/axis/services/echo to test with Axis Java."
  +	<< "                   Default service URL is assumed to be " << defaultURL
  +	<< "\n                   Could use http://localhost:8080/axis/services/echo to test with Axis Java."
   	<< endl;
   }