Quickstart Examples - Level 1 - Salutations
============================================

This example is based on the Say Hello example but has slightly more
complicated functionality. Instead of just greeting with 'Hello', it
discriminates between the given time of day and uses one of these:
	04:00 - 11:59 Good Morning
	12:00 - 16:59 Good Afternoon
	17:00 - 21:59 Good Evening
	22:00 - 03:59 Good Night

To deploy the example, open a command line window in the example's folder,
and simply type 'ant deploy'. To undeploy, use the command 'ant undeploy'.

To test the example, for example using the SOAPUI client, an example
'salute' message can be found in the messages sub-folder, with the
relevant WSDL being located in the bpel sub-folder.

Alternatively, use one of these commands (from a command line window)
to send the message:
	ant salute_morning
	ant salute_afternoon
	ant salute_evening
	ant salute_night

NOTE: The "ant deploy" command will by default deploy version 1 of the
example to the server. If you wish to change the example, and redeploy,
then you will need to update the version number in the build.xml, or
override the version property, e.g. "ant -Dversion=2 deploy" (and similarly
when undeploying "ant -Dversion=2 undeploy").

Some handy URLs:
http://localhost:8080/bpel-console is the BPEL console
http://localhost:8080/SalutationsProcess?wsdl is the URL to the BPEL process' WSDL
