RE: [ANN] Apache Jakarta Tomcat 5.5.0 Released

2004-09-01 Thread V. Karthik Kumar
Hi, Where can I get 5.5 ? (a CVS snapshot is OK.) Regards, Karthik. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: jndi-datasource

2004-09-01 Thread V. Karthik Kumar
Hmmm, But seriously, there ought to be a better way to add datasources in the future... Probably the only solution is to set-up a LocalDataSourceFactory, when an entry exists in Context.xml ... and then add these to the current classpath... Yeah, I know it sucks, but when it's possible to have

RE: How to configure logs in Tomcat 5.5?

2004-09-01 Thread V. Karthik Kumar
Hi, Are the Valves gone too? On Wed, 2004-09-01 at 22:20, Shapira, Yoav wrote: Hi, Loggers are gone: your server.xml Logger element is invalid and should be removed. For configuring commons-logging with Tomcat, see http://jakarta.apache.org/tomcat/faq/misc.html#commonsLoggingLog4j. If

Re: How to configure logs in Tomcat 5.5?

2004-09-01 Thread V. Karthik Kumar
Hi, This is because the org.apache.catalina.logger.FileLogger class was deprecated in favor of the commons-logging API (and subsequently the log4j API, though the latter is not needed, ) ... Also see: http://jakarta.apache.org/commons/logging/api/org/apache/commons/logging/impl/Jdk14Logger.html

Aesthetics Suggestions

2004-09-01 Thread V. Karthik Kumar
Hi, 1. Should there be a redirection page (say, index.jsp or index.htm) to ./html when manager app is invoked through http://localhost:8080/manager , or that it entirely defeats the purpose? 2. I could run the newer version of tomcat, and a link to the admin page has been given by default in the

Hi!

2004-08-31 Thread V. Karthik Kumar
Hi, I'm reporting this some sort of unusual behavior in the manager... (WRT Tomcat 5.0.27) ... When a user tries to start a web-app that has been started already, and then stop it, it becomes unusable again... The current way to solve such a thing is: 1. Shutdown the server 2. Clean up in the

Re: tag file encoding problem

2004-08-31 Thread V. Karthik Kumar
use: response.setCharacterEncoding(Whatever); -- internally, this is what the tags translate to... Before u carry on with out.print() statements... And one more thing.. there is an option available to add encoding messages by default; a filter is available by default