Overview:
=========
  The purpose of the camel_esbschedule quickstart sample is to demonstrate the
  scheduling feature of the Camel Gateway.

  This test configures a scheduled CamelGateway which is bound to a bean class and
  invokes the bean's method every 5 seconds. It converts the return value of the
  bean method to the ESB Message and invokes the ESB service which prints out the content 
  of the message to server log.

  For more detailed information, please visit this wiki page:
  http://community.jboss.org/wiki/CamelGateway
  or refer to the Programmer's Guide.

Running this quickstart:
========================
  Please refer to 'ant help-quickstarts' for prerequisites about the quickstarts
  and a more detailed descripton of the different ways to run the quickstarts.

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

What to expect on "ant deploy":
===============================
Similar output will display in the Application Server console:

12:08:13,255 INFO  [EsbDeployment] Starting ESB Deployment 'Quickstart_camel_esbschedule.esb'
12:08:13,753 INFO  [AnnotationTypeConverterLoader] Found 5 packages with 18 @Converter classes to load
12:08:13,834 INFO  [DefaultTypeConverter] Loaded 167 type converters in 0.265 seconds
12:08:14,310 INFO  [DefaultCamelContext] Apache Camel 2.4.0 (CamelContext: camel-1) is starting
12:08:14,311 INFO  [DefaultCamelContext] JMX is disabled. Using DefaultManagementStrategy.
12:08:14,487 INFO  [DefaultCamelContext] Route: route1 started and consuming from: Endpoint[timer://1944545827?delay=0&fixedRate=true&period=5000]
12:08:14,488 INFO  [DefaultCamelContext] Started 1 routes
12:08:14,488 INFO  [DefaultCamelContext] Apache Camel 2.4.0 (CamelContext: camel-1) started in 0.178 seconds

Bean's method is invoked every 5 seconds:
=========================================

12:08:14,637 INFO  [STDOUT] Message structure: 
12:08:14,637 INFO  [STDOUT] [Hello Camel Gateway].
12:08:19,495 INFO  [STDOUT] Message structure: 
12:08:19,495 INFO  [STDOUT] [Hello Camel Gateway].
12:08:24,491 INFO  [STDOUT] Message structure: 
12:08:24,491 INFO  [STDOUT] [Hello Camel Gateway].

What to expect on "ant undeploy":
=================================
Similar output will display in the Application Server console:

12:08:24,618 INFO  [EsbDeployment] Stopping 'Quickstart_camel_esbschedule.esb'
12:08:24,619 INFO  [DefaultCamelContext] Apache Camel 2.4.0 (CamelContext:camel-1) is shutting down
12:08:24,619 INFO  [DefaultShutdownStrategy] Starting to graceful shutdown 1 routes (timeout 300 seconds)
12:08:24,646 INFO  [DefaultShutdownStrategy] Route: route1 shutdown complete, was consuming from: Endpoint[timer://1944545827?delay=0&fixedRate=true&period=5000]
12:08:24,646 INFO  [DefaultShutdownStrategy] Graceful shutdown of 1 routes completed in 0 seconds
12:08:24,647 INFO  [DefaultInflightRepository] Shutting down with no inflight exchanges.
12:08:24,647 INFO  [DefaultCamelContext] Uptime: 10.337 seconds
12:08:24,647 INFO  [DefaultCamelContext] Apache Camel 2.4.0 (CamelContext: camel-1) is shutdown in 0.028 seconds
12:08:24,700 INFO  [EsbDeployment] Destroying 'Quickstart_camel_esbschedule.esb'
12:08:24,700 WARN  [ServiceMessageCounterLifecycleResource] Calling cleanup on existing service message counters for identity ID-9
