Re: JSPs not compiling

2003-07-10 Thread dwightHugget
On Thursday 10 July 2003 08:25, Thomas, Kevin wrote: > Thanks for the reply Ben, > > I ran the $JAVA_HOME/bin/javac and got: > > Exception in thread "main" java.lang.NoClassDefFoundError: > com/sun/tools/javac/Main > > Does that narrow it down any? > > The directories are writable, so hopefully the

Tomcat compile error

2003-06-12 Thread dwighthugget
Hi gang, I'm seeking leads into what this error is telling me: org.apache.jasper.JasperException: Unable to compile class for JSP An error occurred at line: -1 in the jsp file: null Generated servlet error: [javac] Since fork is true, ignoring compiler setting. [javac] Compiling 1 source

Re: Tomcat vs. JBoss

2003-04-05 Thread dwightHugget
On Sunday 06 April 2003 07:16, [EMAIL PROTECTED] professed: > Hi there, > > At my company some are discussing to replace our Tomcat installation with > JBoss application server. > What are the main arguments pro/contra using Tomcat/JBoss? > Is anybody able to share some production experiences? > >

JDBC URL from webserver

2003-04-05 Thread dwightHugget
Can anyone confirm that using either of these 2 styles of JDBC URL ought to work when web container is running on one machine and DBMS is on another machine across the internet. jdbc:oracle:thin:@xxx.aa.bb.zz:1521:sid_name jdbc:oracle:thin:@//xxx.aa.bb.zz:1521/service_name The DBMS is Oracle 9

Multiple Tomcat Instances

2003-04-02 Thread dwightHugget
Can anyone point me to how to get this type of setup. I want to have multiple instance of tomcat running on the same machine under different ports, say 80, 8080, & . Would I achieve this if I setup an env variable called CATALINA_BASE as described in the RUNNING.txt file ? I have only one se

Configuring Tomcat for multiple applications/users

2003-04-02 Thread dwightHugget
Can anyone point me to how to get this type of setup. I want to have multiple instance of tomcat running on the same machine under different ports, say 80, 8080, & . Would I achieve this if I setup an env variable called CATALINA_BASE as described in the RUNNING.txt file ? I have only one se

Configuring Tomcat for multiple applications/users

2003-04-01 Thread dwightHugget
Can anyone point me to how to get this type of setup. I want to have multiple instance of tomcat running on the same machine under different ports, say 80, 8080, & . Would I achieve this if I setup an env variable called CATALINA_BASE as described in the RUNNING.txt file ? I have only one se

SUN LDAP Server

2003-03-31 Thread dwightHugget
How do I get SUN's LDAP Server ? I have Solaris 9, does it come with that ? I need to use it do to user/role lookups within Tomcat. thanks -- Dwight Hugget - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-

Re: Database setup in tomcat

2003-03-24 Thread dwightHugget
On Monday 24 March 2003 14:00, Jason Smartt professed: > Hi, > I am trying to set up a database connection pool using JDBC and MS Access. > I initially just wrote a small servlet to do a login lookup to my database > which worked fine and then proceeded onto the connection pool program > (which I o

Re: javabean question

2003-03-14 Thread dwightHugget
On Saturday 15 March 2003 01:46, Michael Ni professed: > if i have a > > C:\Tomcat 4.1\webapps\ROOT\WEB-INF\classes\database\DBConstants.class > > that i want to use in my file, > > C:\Tomcat 4.1\webapps\ROOT\WEB-INF\classes\database\DBPoolBean.java > > how do i import the DBConstants bean to my DB