Have you tried the newest binary release jboss-2.2.1_Tomcat-3.2.1.zip. Its all
automatically setup for you in this release.
MikeD
>Hai,
>
>I'm trying to install Jboss with Tomcat.When I run the server I get
>errors like this.
>Please help
>
>
>[J2EE Deployer Default] Create application interes
In an EJB or anything that needs a connection you need to look up the connection.
Something like the following:
...
private Connection dbCon = null;
private Connection getConnection()
{
if( dbCon == null )
{
try
{
InitialContext ic = new InitialContext();