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 ha...@apache.org on 2004/12/23 11:17:43 UTC

cvs commit: ws-axis/c/tests/utils/ServiceEmulator README.txt

hawkeye     2004/12/23 02:17:43

  Modified:    c/tests/utils/ServiceEmulator README.txt
  Log:
  Fixed some issues with the MockServer. It now sends byte[] instead of single byte. Single bytes was causing it to not work after one cycle - somekind of wierd Java bug as far as I could tell. I had to reboot my machine after each cycle - it would work for the first cycle then fail. When it failed the service would then cycle using 80% CPU !
  
  Revision  Changes    Path
  1.2       +3 -2      ws-axis/c/tests/utils/ServiceEmulator/README.txt
  
  Index: README.txt
  ===================================================================
  RCS file: /home/cvs/ws-axis/c/tests/utils/ServiceEmulator/README.txt,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- README.txt	17 Nov 2004 13:38:51 -0000	1.1
  +++ README.txt	23 Dec 2004 10:17:42 -0000	1.2
  @@ -5,6 +5,7 @@
   When it receives the request it throws the result away and returns back the complete contents of a given file.
   The file must contain all of the http headers, soap headers etc. This file will probably be the captured output of tcpmon.
   
  -When the server has sent back the response it exits. i.e. for each test run you will have to restart the server.
  +The server will sit there for x requests where x=numberOfTimesToListen
   
  -Usage: java -jar MockServer.jar <port> <responsefile>
  \ No newline at end of file
  +
  +Usage: java -jar MockServer.jar <port> <responsefile> <numberOfTimesTolisten>
  \ No newline at end of file