RE: Tomcat 4 and Log4J

2001-09-18 Thread Aravind Naidu
Have you tried putting the log4j.jar in the jre/lib/ext directory of the JDK ? -- Aravind -Original Message- From: Jiger Java [mailto:[EMAIL PROTECTED]] Sent: Tuesday, 18 September 2001 14:51 To: [EMAIL PROTECTED] Subject: Re: Tomcat 4 and Log4J Hi Craig, Things are

RE: The pitfalls in restarting tomcat

2001-09-09 Thread Aravind Naidu
or you can use (if you are on Linux that is) the command pstree -p to easily view the parent process for Tomcat. -- Aravind -Original Message- From: Pier Fumagalli [mailto:[EMAIL PROTECTED]] Sent: Monday, 10 September 2001 11:49 To: [EMAIL PROTECTED] Subject: Re: The pitfalls in

forward from servlet to JSP got slow

2001-09-07 Thread Aravind Naidu
Hi, Environment is Tomcat 3.2.3 on Linux. All of a sudden the forward from a servlet to a JSP page got very slow. It is weird in that we have 2 servers in a load balance pool and it started happening on 1 server and while debugging it, I stoped and started the other one and it started happening

More info. RE: forward from servlet to JSP got slow

2001-09-07 Thread Aravind Naidu
/opt/tomcat/we bapps/ROOT/leon/menu-look1.jsp /opt/tomcat/webapps/ROOT 2001-09-07 21:38:07 - ContextManager: SimpleRealm: Verify user=null pass=null -- Aravind -Original Message- From: Aravind Naidu [mailto:[EMAIL PROTECTED]] Sent: Friday, 7 September 2001 19:34 To: [EMAIL PROTECTED

RE: COMPAQ V300

2001-09-05 Thread Aravind Naidu
Sorry... Not to start an OS war or something like that. (As mentioned before it could be a JDK problem) We have Tomcat 3.2.3 running on RedHat 7.1 with IBM JDK 1.3 (latest) quite nicely thank you. It was a default Linux install with no tuning applied and we have stress tested it successfully

RE: how to make a servlet as the home page

2001-08-26 Thread Aravind Naidu
Create an index.html with the following text HTML HEAD meta http-equiv=REFRESH CONTENT=0; URL=/servlet/com.acme.XYZServlet /HEAD /HTML Ensure that the servlet handles doGet(...) -- Aravind - Original Message - From: naveen [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, August

RE: Tomcat Performance

2001-08-24 Thread Aravind Naidu
Maybe it has got something to do with a crappy OS ! Sorry. could'nt resist On RH 7.1 linux, the IBM JDK 1.3 (latest build) runs like a scaled cat. -- Aravind -Original Message- From: Hari [mailto:[EMAIL PROTECTED]] Sent: Friday, 24 August 2001 20:20 To: [EMAIL PROTECTED] Subject:

RE: OutOfMemory - Set Java Heap Size?

2001-08-24 Thread Aravind Naidu
You can use -Xms128m -Xmx256m which means the heap will start at 128m and grow to 256m, but you are better off testing your app first (use verboseGC) to check the memory usage and then setting both parameters to the same no. (i.e.) -Xms256m -Xmx256m or to a value suitable to your app usage and

mod_jk.log messages

2001-08-19 Thread Aravind Naidu
I have got TC 3.2.3 with AJP13 connector to Apache on RedHat 7.1 Everything is working fine. I have these messages in the log file for mod_jk [jk_uri_worker_map.c (335)]: jk_uri_worker_map_t::uri_worker_map_close, NULL par ameter [jk_uri_worker_map.c (185)]: In

RE: IBM JDK

2001-08-14 Thread Aravind Naidu
Works great, similar environment to yours, except I am using the IBM HTTP Server (modifid Apache) v1.3.19 My tests have shown that the IBM JDK is way faster than Sun's for my application scenarios and you can also look at the Volano benchmarks. Aravind -Original Message- From: Mike

Tuning Tomcat

2001-08-12 Thread Aravind Naidu
Hi, Is there a guideline/doc on tuning Tomcat and it's connectors, (i.e.) Ajp13, mod_jk etc. I can see that there are parameters for max_threads etc. but what is ideal and what are the defaults ? My current config. Redhat 7.1, IBM JDK 1.3, TC 3.2.3, IBM HTTP Server 1.3.19 with mod_jk The

big5 problem with Tomcat on RedHat 7.1

2001-08-04 Thread Aravind Naidu
This may not be Tomcat's problem but I am hoping someone will point me in the right direction. I have 2 installations, one Tomcat 3.2.1 on RedHat 6.2 and the other Tomcat 3.2.3 on RedHat 7.1 I have a JSP file with the following tag META http-equiv=Content-Style-Type content=text/css

Solved (was: RE: big5 problem with Tomcat on RedHat 7.1)

2001-08-04 Thread Aravind Naidu
Solved the problem. For others interested. By default Tomcat 3.2.1 uses a 8859-1 and 3.2.3 ISO-8859-1 and just explicitly setting the page directive in the JSP overcame the problem. %@ page contentType=text/html; charset=big5 % -- Aravind -Original Message- From: Aravind Naidu [mailto

RE: VOTE: HTML in Messages and politeness (Was: Re: jdbc odbc bridgeon linux)

2001-07-29 Thread Aravind Naidu
+1

RE: TOMCAT VISUAL AGE

2001-07-09 Thread Aravind Naidu
Even better. IBM has a Tomcat test environment package available for free It replaces the websphere test environment and works very well http://www7.software.ibm.com/vad.nsf/FrameData/Master?OpenDocumentTitle=Ove rviewFSet=1Doc3=4556Doc4=4567 Been using it for dev, testing and

How large can a session object be ?

2001-07-02 Thread Aravind Naidu
How large can a session object go in Tomcat ? -- Aravind

Tomcat in production

2001-05-17 Thread Aravind Naidu
Hi All, We have been using Tomcat for development and are quite happy with it. I would like to know any success/failure(?) stories of Tomcat as a production servlet/JSP engine. -- Aravind