Quick setup steps for the news application:
1) Add a valid data-source to data-sources.xml and uncomment
the helper datasources in the same file. For instance if using
HypersonicSQL the datasource could look like this:

<data-source class="com.evermind.sql.ConnectionDataSource" location="jdbc/HypersonicDS">
	<name>Default data-source</name>
	<description>
		Hypersonic SQL source.
	</description>
	<url>jdbc:HypersonicSQL:defaultdb</url>
	<connection-driver>hSql.hDriver</connection-driver>
	<username>sa</username>
	<password></password>
</data-source>

2) Install the application, this is done by adding the following to config/server.xml:
<application name="news" path="../applications/news.ear" />

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

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

5) Access http://localhost/news/ and verify that it works.
