Quickstart Examples - Simple Correlation Header
===============================================

This example is a variation of the 'simple_correlation' example that
builds on the previous 'hello_world' example, to show a
simple example of how two separate interactions can be correlated to the
same BPEL process instance. This variation carries the information
being correlated within the SOAP message header.

In this case, a 'hello' message must be sent first, and then a 'goodbye'
message must follow, where both messages must have the same ID field to
enable them to be correlated to the same process instance.

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 'hello'
and 'goodbye' message can be found in the messages sub-folder, with the
relevant WSDL being located in the bpel sub-folder.

Alternatively, use the 'ant sendhello' command (from a command line window)
to send the initial message, and then 'ant sendgoodbye' to send the last
message correlated to the same session.

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/Quickstart_bpel_simple_correlationWS?wsdl is the URL to the BPEL process' WSDL
