You are viewing a plain text version of this content. The canonical link for it is here.
Posted to fx-dev@ws.apache.org by ja...@apache.org on 2005/07/08 06:58:24 UTC

cvs commit: ws-sandesha/samples DeployClient.sh DeployService.sh RunSimpleAxisServer.sh RunTCPMon.sh DeployService.bat

jaliya      2005/07/07 21:58:24

  Modified:    .        release-notes.html
               samples  DeployService.bat
  Added:       samples  DeployClient.sh DeployService.sh
                        RunSimpleAxisServer.sh RunTCPMon.sh
  Log:
  Added the shell scripts for samples
  
  Revision  Changes    Path
  1.3       +1 -1      ws-sandesha/release-notes.html
  
  Index: release-notes.html
  ===================================================================
  RCS file: /home/cvs/ws-sandesha/release-notes.html,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- release-notes.html	11 Jun 2005 09:33:18 -0000	1.2
  +++ release-notes.html	8 Jul 2005 04:58:23 -0000	1.3
  @@ -3,7 +3,7 @@
   <body>
   <h1>Apache Sandesha Release Notes</h1>
   
  -This is the beta release of the Apache Sandesha.
  +This is the 1.0-RC1 release of the Apache Sandesha.
   
   <h2>What's in this release?</h2>
   
  
  
  
  1.3       +12 -14    ws-sandesha/samples/DeployService.bat
  
  Index: DeployService.bat
  ===================================================================
  RCS file: /home/cvs/ws-sandesha/samples/DeployService.bat,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- DeployService.bat	7 Jul 2005 13:09:25 -0000	1.2
  +++ DeployService.bat	8 Jul 2005 04:58:23 -0000	1.3
  @@ -10,18 +10,16 @@
   set CLASSPATH=%CLASSPATH%;..\lib\axis-wsdl4j-1.2.jar
   set CLASSPATH=%CLASSPATH%;..\lib\log4j-1.2.8.jar
   set CLASSPATH=%CLASSPATH%;..\lib\xerces.jar
  -if  exist  ..\Sandesha-beta.jar goto  jarfoundinroot
  -if  exist  ..\target\Sandesha-beta.jar goto  jarfoundintarget
  -echo Cannot find the Sandesha-beta.jar.
  -echo If you are using the source distribution, please build the source using maven before running the samples
  -pause
  -goto end
  -
  -:jarfoundinroot
  -set CLASSPATH=%CLASSPATH%;..\Sandesha-beta.jar;
   
  -:jarfoundintarget
  -set CLASSPATH=%CLASSPATH%;..\target\Sandesha-beta.jar;
  -
  -java org.apache.axis.client.AdminClient RMSampleServiceDeploy.wsdd
  -:end
  \ No newline at end of file
  +if [ -e "../Sandesha-1.0-RC1.jar" ]; then
  +     CLASSPATH=$CLASSPATH:../Sandesha-1.0-RC1.jar
  +     export CLASSPATH
  +     java org.apache.axis.client.AdminClient RMSampleServiceDeploy.wsdd
  +elif [ -e "../target/Sandesha-1.0-RC1.jar" ]; then
  +     CLASSPATH=$CLASSPATH:../target/Sandesha-1.0-RC1.jar;
  +     export CLASSPATH
  +     java org.apache.axis.client.AdminClient RMSampleServiceDeploy.wsdd
  +else
  +echo Cannot find the Sandesha-1.0-RC1.jar.
  +echo If you are using the source distribution, please build the source using maven before running the samples
  +fi
  
  
  
  1.1                  ws-sandesha/samples/DeployClient.sh
  
  Index: DeployClient.sh
  ===================================================================
  #!/bin/sh
  CLASSPATH='.'
  CLASSPATH=$CLASSPATH:../lib/addressing-SNAPSHOT.jar
  CLASSPATH=$CLASSPATH:../lib/axis-1.2.jar
  CLASSPATH=$CLASSPATH:../lib/axis-ant-1.2.jar
  CLASSPATH=$CLASSPATH:../lib/axis-jaxrpc-1.2.jar
  CLASSPATH=$CLASSPATH:../lib/axis-saaj-1.2.jar
  CLASSPATH=$CLASSPATH:../lib/commons-discovery-0.2.jar
  CLASSPATH=$CLASSPATH:../lib/commons-logging-1.0.3.jar
  CLASSPATH=$CLASSPATH:../lib/junit-3.8.1.jar
  CLASSPATH=$CLASSPATH:../lib/axis-wsdl4j-1.2.jar
  CLASSPATH=$CLASSPATH:../lib/log4j-1.2.8.jar
  CLASSPATH=$CLASSPATH:../lib/xerces.jar
  
  if [ -e "../Sandesha-1.0-RC1.jar" ]; then
       CLASSPATH=$CLASSPATH:../Sandesha-1.0-RC1.jar
       export CLASSPATH
      java org.apache.axis.utils.Admin client ClientDeploy.wsdd
  elif [ -e "../target/Sandesha-1.0-RC1.jar" ]; then
       CLASSPATH=$CLASSPATH:../target/Sandesha-1.0-RC1.jar;
       export CLASSPATH
       java org.apache.axis.utils.Admin client ClientDeploy.wsdd
  else
  echo Cannot find the Sandesha-1.0-RC1.jar.
  echo If you are using the source distribution, please build the source using maven before running the samples
  fi
  
  
  
  1.1                  ws-sandesha/samples/DeployService.sh
  
  Index: DeployService.sh
  ===================================================================
  #!/bin/sh
  CLASSPATH='.'
  CLASSPATH=$CLASSPATH:../lib/addressing-SNAPSHOT.jar
  CLASSPATH=$CLASSPATH:../lib/axis-1.2.jar
  CLASSPATH=$CLASSPATH:../lib/axis-ant-1.2.jar
  CLASSPATH=$CLASSPATH:../lib/axis-jaxrpc-1.2.jar
  CLASSPATH=$CLASSPATH:../lib/axis-saaj-1.2.jar
  CLASSPATH=$CLASSPATH:../lib/commons-discovery-0.2.jar
  CLASSPATH=$CLASSPATH:../lib/commons-logging-1.0.3.jar
  CLASSPATH=$CLASSPATH:../lib/junit-3.8.1.jar
  CLASSPATH=$CLASSPATH:../lib/axis-wsdl4j-1.2.jar
  CLASSPATH=$CLASSPATH:../lib/log4j-1.2.8.jar
  CLASSPATH=$CLASSPATH:../lib/xerces.jar
  
  if [ -e "../Sandesha-1.0-RC1.jar" ]; then
       CLASSPATH=$CLASSPATH:../Sandesha-1.0-RC1.jar
       export CLASSPATH
       java org.apache.axis.client.AdminClient RMSampleServiceDeploy.wsdd
  elif [ -e "../target/Sandesha-1.0-RC1.jar" ]; then
       CLASSPATH=$CLASSPATH:../target/Sandesha-1.0-RC1.jar;
       export CLASSPATH
       java org.apache.axis.client.AdminClient RMSampleServiceDeploy.wsdd
  else
  echo Cannot find the Sandesha-1.0-RC1.jar.
  echo If you are using the source distribution, please build the source using maven before running the samples
  fi
  
  
  
  1.1                  ws-sandesha/samples/RunSimpleAxisServer.sh
  
  Index: RunSimpleAxisServer.sh
  ===================================================================
  #!/bin/sh
  CLASSPATH='.'
  CLASSPATH=$CLASSPATH:../lib/addressing-SNAPSHOT.jar
  CLASSPATH=$CLASSPATH:../lib/axis-1.2.jar
  CLASSPATH=$CLASSPATH:../lib/axis-ant-1.2.jar
  CLASSPATH=$CLASSPATH:../lib/axis-jaxrpc-1.2.jar
  CLASSPATH=$CLASSPATH:../lib/axis-saaj-1.2.jar
  CLASSPATH=$CLASSPATH:../lib/commons-discovery-0.2.jar
  CLASSPATH=$CLASSPATH:../lib/commons-logging-1.0.3.jar
  CLASSPATH=$CLASSPATH:../lib/junit-3.8.1.jar
  CLASSPATH=$CLASSPATH:../lib/axis-wsdl4j-1.2.jar
  CLASSPATH=$CLASSPATH:../lib/log4j-1.2.8.jar
  CLASSPATH=$CLASSPATH:../lib/xerces.jar
  
  if [ -e "../Sandesha-1.0-RC1.jar" ]; then
       CLASSPATH=$CLASSPATH:../Sandesha-1.0-RC1.jar
       export CLASSPATH
       java org.apache.axis.transport.http.SimpleAxisServer
  elif [ -e "../target/Sandesha-1.0-RC1.jar" ]; then
       CLASSPATH=$CLASSPATH:../target/Sandesha-1.0-RC1.jar;
       export CLASSPATH
       java org.apache.axis.transport.http.SimpleAxisServer
  else
  echo Cannot find the Sandesha-1.0-RC1.jar.
  echo If you are using the source distribution, please build the source using maven before running the samples
  fi
  
  
  1.1                  ws-sandesha/samples/RunTCPMon.sh
  
  Index: RunTCPMon.sh
  ===================================================================
  #!/bin/sh
  CLASSPATH='.'
  CLASSPATH=$CLASSPATH:../lib/addressing-SNAPSHOT.jar
  CLASSPATH=$CLASSPATH:../lib/axis-1.2.jar
  CLASSPATH=$CLASSPATH:../lib/axis-ant-1.2.jar
  CLASSPATH=$CLASSPATH:../lib/axis-jaxrpc-1.2.jar
  CLASSPATH=$CLASSPATH:../lib/axis-saaj-1.2.jar
  CLASSPATH=$CLASSPATH:../lib/commons-discovery-0.2.jar
  CLASSPATH=$CLASSPATH:../lib/commons-logging-1.0.3.jar
  CLASSPATH=$CLASSPATH:../lib/junit-3.8.1.jar
  CLASSPATH=$CLASSPATH:../lib/axis-wsdl4j-1.2.jar
  CLASSPATH=$CLASSPATH:../lib/log4j-1.2.8.jar
  CLASSPATH=$CLASSPATH:../lib/xerces.jar
  export CLASSPATH
  java org.apache.axis.utils.tcpmon
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: sandesha-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: sandesha-dev-help@ws.apache.org