Quick setup steps for the atm application:

1) Make sure that the JMS server is enabled by ensuring that the following line exists in /orion/config/server.xml:
	<jms-config path="./jms.xml" />

2) Add a valid mail configuration to /application-deployments/atm/orion-application.xml.
It should look like the following:
<mail-session location="mail/MailSession" smtp-host="mail.mycompany.com">
	<property name="mail.transport.protocol" value="smtp" />
	<property name="mail.smtp.from" value="admin@mycompany.com" />
	<property name="mail.from" value="sales@mycompany.com" />
</mail-session>

3) Install the application, this is done by adding the following to
config/server.xml below the <global-application ../> tag:
<application name="atm" path="../applications/atm.ear" />

4) Bind the web-app to the default site, this is done by adding the following to
config/default-web-site.xml:
<web-app application="atm" name="atm-web" root="/atm" /> 

5) [optional] Bind the second web-app to the default site, this is done by adding
the following to config/default-web-site.xml:
<web-app application="atm" name="atm-wap" root="/atmwap" />

6) Start Orion up, this should auto-deploy the application.

7) Access http://localhost/atm/ using a normal browser and verify that the html web-app works.

8) Access http://localhost/atmwap/ using a wap emulator and verify that the wml web-app works.
