Setting default resource for a context

2002-06-21 Thread Tia Haenni
I know there is a way to do this, but I cannot recall how. I have Tomcat 4.0.1 on a windows server with a reidirect from IIS. Everything there is working fine, but what I want to do is to set a default resource that is served up without the user having to type in the /servelt/MyServlet part

Re: Catalina.start: LifecycleException:

2002-06-21 Thread Tia Haenni
I haven't heard of classes112.zip, but I can tell you that you should be able to find the right drivers at the oracle site: http://otn.oracle.com/software/tech/java/sqlj_jdbc/content.html (requires login with free online account id) I have used the classes12.zip file by unzipping, jar up, and

Re: tomcat with IIS

2002-06-07 Thread Tia Haenni
Also, check out this document which Ii have used to install tomcat 4.0.1 with IIS 5.0 on several windows 2000 server boxes: http://members.ozemail.com.au/~lampante/howto/tomcat/iisnt/index.html http://members.ozemail.com.au/%7Elampante/howto/tomcat/iisnt/index.html To add contexts to tomcat

Tomcat 4.0.1 and memory usage

2002-06-06 Thread Tia Haenni
I have searched the archives for this topic, but I need more information to understand. I need to limit the amount of memory used by Tomcat. I have Tomcat 4.0.1 running as an nt service on a Windows 2000 server box with redirects coming from IIS 5.0. I heard of using java -verbosegc to

Re: Tomcat 4.0.1 and memory usage

2002-06-06 Thread Tia Haenni
%CATALINA_OPTS% should be -Xmx### -Xms### fillup On 6/6/02 2:38 PM, Tia Haenni [EMAIL PROTECTED] wrote: I have searched the archives for this topic, but I need more information to understand. I need to limit the amount of memory used by Tomcat. I have Tomcat 4.0.1 running as an nt service

Re: jdk 1.4 and Oracle drivers

2002-06-06 Thread Tia Haenni
Did you try adding the location of your classes12.jar to the Tomcat classpath? Look in tomcat_home/bin/setclasspath file. There should be a section near the bottom like one of the following depending on the OS: # Set standard CLASSPATH CLASSPATH=$JAVA_HOME/lib/tools.jar rem Set standard

Re: Tomcat 4.0.1 and memory usage

2002-06-06 Thread Tia Haenni
excessive for the amount of traffic, etc. Play with it a bit, I guess would be my answer, but maybe someone else knows a more precise measurement. cheers fillup On 6/6/02 2:50 PM, Tia Haenni [EMAIL PROTECTED] wrote: Ok, that's simple enough. Does that limit the amount of RAM Tomcat can use? Do

Re: oracle drivers

2002-06-04 Thread Tia Haenni
Drivers are with your Oracle distribution, just search for classes111.zip or classes12.zip. Also, they are available here: http://otn.oracle.com/software/tech/java/sqlj_jdbc/content.html You will have to sign up for the Oracle Technology Network if you are not already a member. puneet sachar

RE: Tomcat 4.0 and IIS 5

2001-09-22 Thread Tia Haenni
: Tia Haenni [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, September 22, 2001 1:48 AM Subject: RE: Tomcat 4.0 and IIS 5 I tried to do this very thing all day yesterday. If you want to run tomcat 4.0 as a service, I suggest you download the .exe version. It has a pretty slick installer

RE: Started Tomcat, why don't JSPs run...

2001-09-21 Thread Tia Haenni
Taken from the app developer's guide docs for Tomcat 4.0: A web application is defined as a hierarchy of directories and files in a standard layout. Such a hierarchy can be accessed in its unpacked form, where each directory and file exists in the file system separately, or in a packed form

RE: Tomcat 4.0 and IIS 5

2001-09-21 Thread Tia Haenni
I tried to do this very thing all day yesterday. If you want to run tomcat 4.0 as a service, I suggest you download the .exe version. It has a pretty slick installer program, just know that any prior version of tomcat and any files under it will be permanently deleted without asking. Rename or

Has anyone configured tomcat 4.0 with IIS???

2001-09-20 Thread Tia Haenni
I have installed the .exe version of tomcat 4.0. It went well, other than IIS and tomcat don't seem to be communicating. Tomcat is not listening on port 8007 as in older versions. I can only access tomcat by including port 8080 in the url, such as http://locvalhost:8080/examples Please PLEASE

Help with servlet context

2001-07-31 Thread Tia Haenni
This is a repost. Does anyone know how to do this? There used to be methods for this in ServletContext (getServlets() and getServletNames()), but they have been deprecated with no replacements. I have a servlet which dispatches to other servlets in the same context through a RequestDispatcher

Help with file exists in same context.

2001-07-28 Thread Tia Haenni
I have a servlet which dispatches to other servlets in the same context through a RequestDispatcher object. I want to provide some guard-rails by checking if the class file for the receiving servlet exists in the context. Any direction/advice is much appreciated. TIA Tia

RE: JDK version

2001-07-27 Thread Tia Haenni
You need the J2EE classes which contain the API for servlets, JSP. See this page: http://java.sun.com/j2ee/download.html Tia -Original Message- From: Libo Ren [mailto:[EMAIL PROTECTED]] Sent: Friday, July 27, 2001 7:19 AM To: [EMAIL PROTECTED] Subject: JDK version hi all: I have

Upgrading tomcat

2001-07-26 Thread Tia Haenni
Has anyone gone from 3.2.1 up to 3.3? Does it require a complete uninstall of previous versions? Is it best to go with 3.3 or wait for 4.0? Thanks, Tia

RE: Upgrading tomcat

2001-07-26 Thread Tia Haenni
, 2001 6:38 PM To: [EMAIL PROTECTED] Subject: Re: Upgrading tomcat Another question, do apps developed under the 3.2.x ( jsp 1.1/servlet 2.2 ) work well with Tomcat 4.0 and the newer servlet/jsp specs? --- John Hebert [EMAIL PROTECTED] wrote: Tia Haenni wrote: Has anyone gone from 3.2.1 up

RE: Upgrading tomcat

2001-07-26 Thread Tia Haenni
Well, then, what am I waiting for? Thanks for the input. Tia -Original Message- From: Craig R. McClanahan [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 26, 2001 6:53 PM To: [EMAIL PROTECTED] Subject: Re: Upgrading tomcat On Thu, 26 Jul 2001, Charles Baker wrote: Another

Help with using getRequestURL()

2001-07-11 Thread Tia Haenni
Is anyone familiar with the method getRequestURL() of the HttpServeltRequest interface? I am trying to use it, but the compiler object to the method. By the way, this method is previously of javax.servlet.http.HttpUtils, which has been deprecated. Thanks in advance, Tia

Help with using getRequestURL()

2001-07-11 Thread Tia Haenni
Is anyone familiar with the method getRequestURL() of the HttpServeltRequest interface? I am trying to use it, but the compiler object to the method. By the way, this method is previously of javax.servlet.http.HttpUtils, which has been deprecated. Thanks in advance, Tia

RE: Help with using getRequestURL()

2001-07-11 Thread Tia Haenni
? -- Bill K. -Original Message- From: Tia Haenni [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 11, 2001 11:21 AM To: Tomcat Mailing List Subject: Help with using getRequestURL() Is anyone familiar with the method getRequestURL() of the HttpServeltRequest

RE: Help with using getRequestURL()

2001-07-11 Thread Tia Haenni
To: '[EMAIL PROTECTED]' Subject: RE: Help with using getRequestURL() try: java.lang.StringBuffer reqUtilURL = HttpUtils.getRequestURL(request); String callingURL = reqUtilURL.toString(); -Original Message- From: Tia Haenni [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 11, 2001 4:04 PM

RE: Help with using getRequestURL()

2001-07-11 Thread Tia Haenni
That worked, thanks! -Original Message- From: Li, William [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 11, 2001 7:39 PM To: '[EMAIL PROTECTED]' Subject: RE: Help with using getRequestURL() precede it w/javax.servlet.http. -Original Message- From: Tia Haenni [mailto:[EMAIL

RE: Making over Half Million Dollars every 4 to 5 Months from your Home

2001-06-05 Thread Tia Haenni
spam list!! -Original Message-From: NOOOR [mailto:[EMAIL PROTECTED]]Sent: Tuesday, June 05, 2001 3:52 PMTo: Undisclosed-Recipient:;Subject: Making over Half Million Dollars every 4 to 5 Months from your Home AS SEEN ON NATIONAL TV:Making over Half Million Dollars