In regards to this statement:

Code:
What is the database URL you are using, the one you have commented out "dbUrl = jdbc:jtds:sqlserver://SMBELOW2006:8080" doesn't look correct at all.
The actual lines are in my web.xml file and are defined:

Code:
<init-param>
	<param-name>dbUrl</param-name>
	<param-value>jdbc:jtds:sqlserver://SMBELOW2006:8080”</param-value>
</init-param>
I’m now trying to find a suitable driver for the different databases (SQL, MySQL, etc)

Code:
 
<init-param>
	<param-name>jdbcDriver</param-name>
	<param-value>net.sourceforge.jtds.jdbc.Driver</param-value>
</init-param>
Working with this side of things seems to be where I need to camp?