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 du...@apache.org on 2001/08/11 16:43:46 UTC

cvs commit: xml-axis/java/samples/stock testit.cmd testit.sh

dug         01/08/11 07:43:46

  Modified:    java/samples/addr testit.cmd testit.sh
               java/samples/stock testit.cmd testit.sh
  Log:
  changed http.AdminClient to AdminClient
  
  Revision  Changes    Path
  1.3       +1 -1      xml-axis/java/samples/addr/testit.cmd
  
  Index: testit.cmd
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/samples/addr/testit.cmd,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- testit.cmd	2001/06/29 18:36:51	1.2
  +++ testit.cmd	2001/08/11 14:43:46	1.3
  @@ -1,7 +1,7 @@
   @echo off
   echo This test assumes a server URL of http://localhost:8080/axis/servlet/
   echo Deploying the addressbook2 service...
  -java org.apache.axis.client.http.AdminClient deploy.xml
  +java org.apache.axis.client.AdminClient deploy.xml
   echo .
   echo Running demo...
   java samples.addr.Main
  
  
  
  1.3       +1 -1      xml-axis/java/samples/addr/testit.sh
  
  Index: testit.sh
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/samples/addr/testit.sh,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- testit.sh	2001/06/29 18:36:52	1.2
  +++ testit.sh	2001/08/11 14:43:46	1.3
  @@ -1,6 +1,6 @@
   echo This test assumes a server URL of http://localhost:8080/axis/servlet/
   echo Deploying the addressbook2 service...
  -java org.apache.axis.client.http.AdminClient deploy.xml
  +java org.apache.axis.client.AdminClient deploy.xml
   echo
   echo Running demo...
   java samples.addr.Main
  
  
  
  1.9       +2 -2      xml-axis/java/samples/stock/testit.cmd
  
  Index: testit.cmd
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/samples/stock/testit.cmd,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- testit.cmd	2001/06/07 17:17:10	1.8
  +++ testit.cmd	2001/08/11 14:43:46	1.9
  @@ -4,7 +4,7 @@
   java samples.stock.GetQuote -uuser1 -wpass1 XXX -s/axis/StockQuoteService.jws
   
   echo Deploy everything first
  -java org.apache.axis.client.http.AdminClient deploy.xml
  +java org.apache.axis.client.AdminClient deploy.xml
   
   echo These next 2 should work...
   java samples.stock.GetQuote -uuser1 -wpass1 XXX
  @@ -19,4 +19,4 @@
   java samples.stock.GetQuote -d -uuser1 -wpass1 XXX
   
   echo Now undeploy everything
  -java org.apache.axis.client.http.AdminClient undeploy.xml
  +java org.apache.axis.client.AdminClient undeploy.xml
  
  
  
  1.8       +2 -2      xml-axis/java/samples/stock/testit.sh
  
  Index: testit.sh
  ===================================================================
  RCS file: /home/cvs/xml-axis/java/samples/stock/testit.sh,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- testit.sh	2001/06/07 17:17:12	1.7
  +++ testit.sh	2001/08/11 14:43:46	1.8
  @@ -2,7 +2,7 @@
   # this assumes webserver is running on port 8080
   
   echo "Deploy everything first"
  -java org.apache.axis.client.http.AdminClient deploy.xml
  +java org.apache.axis.client.AdminClient deploy.xml
   
   echo "These next 2 should work..."
   java samples.stock.GetQuote -uuser1 -wpass1 XXX
  @@ -17,4 +17,4 @@
   java samples.stock.GetQuote -d -uuser1 -wpass1 XXX
   
   # Now undeploy everything
  -java org.apache.axis.client.http.AdminClient undeploy.xml
  +java org.apache.axis.client.AdminClient undeploy.xml