Quickstarts information:
========================
  The quickstarts come in two forms: 
  1. standalone mode which is started by 'ant run'
  2. '.esb' package which is deployed to an application server by running
     'ant deploy'.

Before Running:
===============
  1. Copy install/deployment.properties-example to install/deployment.properties
     and modify the properties there to suit your environment[*]. 
  2. Run 'ant deploy' in the "install" folder of the distribution.  This
     deploys the required SARs to your JBoss Application Server instance.
  3. Make sure the JBoss Application server is running.

[*]
It is often a good idea to copy the default server configuration to a different
name so that you can easily start a fresh one by simply deleting it. This also
makes it simple to diff both directories to find differences if problems occur. 
So, if you copied the default server configuration use the new configuration
name for the property 'org.jboss.esb.server.config' in
install/deployment.properties.

You can optionally copy the file conf/quickstarts.properties-example to
quickstart.properties if you want to run the quickstarts against a different
server then the one specified in step 1 above. This is also needed if you run
any of the quickstarts that use ftp.

To Run standalone mode:
=======================
  1. In a command terminal window in the quickstart folder type 'ant
     deploy-jms-dests'.
     See the section "Notes about JMS" for more information.  
  2. In a command terminal window in this folder ("Window1"), type 'ant run'.
  3. Open another command terminal window in this folder ("Window2"), type
     'ant runtest'.
  4. Switch back to "Window1" to see the output from the ESB
  5. When finished, interrupt the ESB using Ctrl-C and, in this folder
     ("Window1"), type 'ant undeploy-jms-dests'.

To Run '.esb' archive mode:
===========================
  1. In a command terminal window in this folder ("Window1"), type 'ant deploy'.
  2. Open another command terminal window in this folder ("Window2"), type
     'ant runtest'.
  3. Switch back to Application Server console to see the output from the ESB
  4. In a command terminal window in this folder ("Window1"), type 'ant
      undeploy'.

Notes about JMS:
================
  The standalone ESB uses JMS provided by a JBoss Application Server instance.
  This means that jms queues must be configured before running :
    'ant deploy-jms-dests'

  A '.esb' package is self-contained and has queue definitions that it needs in
  the 'esb' archive. 
  Since we wanted to show you that the jboss-esb.xml configuration is the same
  for both modes of running the ESB the queue names are the same which means
  that if you have run the standalone mode and want to try the '.esb. archive
  mode you need to run : 
   'ant undeploy-jms-dests'

More information about the quickstart can be found in the GettingStarted.pdf
document, which is in the doc folder.
