Re: java:comp/UserTransaction NameNotFoundException Tomcat 5.0.28

2006-07-24 Thread Vivek Mohan
try using java:comp/env.UserTransaction for JNDI lookup. -- Vivek. On 7/24/06, Seetha Rao <[EMAIL PROTECTED]> wrote: Hi I'm using JOTM for transaction management with Tomcat 5.0.28. I have all the required jar files as given in http://jotm.objectweb.org/current/jotm/doc/howto-tomcat-jotm.html T

java:comp/UserTransaction NameNotFoundException Tomcat 5.0.28

2006-07-24 Thread Seetha Rao
Hi I'm using JOTM for transaction management with Tomcat 5.0.28. I have all the required jar files as given in http://jotm.objectweb.org/current/jotm/doc/howto-tomcat-jotm.html The JNDI look up throws the following exception: Here is the code: Context ctx = new InitialContext(); UserTransaction u

tuning tomcat for push applications

2006-07-24 Thread Rajeev Jha
Hi Folks Past couple of months i was working to make tomcat perform with a "push" application. I have posted the results of our effort @ http://rjha94.blogspot.com/ I would welcome your comments and suggestions Thanks - Rajeev. -

Re: Tomcat as a proxy server

2006-07-24 Thread Pid
McHugh, Jason wrote: > I want to run straight tomcat as a proxy server. (I understand that there > are a variety of other applications out there that may perform better and > offer more features. I also understand that I could front tomcat with apache > and do some sort of rewriting solution

Re: Restart web app

2006-07-24 Thread Florian Hopf
Hi, asaf.lahav schrieb: > Where can I find code to perform a restart (or stop and then start) of a web > application? > There is an Ant task which performs a reload using the manager application. It's located in package org.apache.catalina.ant.ReloadTask. If you want to perform the reload comple

Re: SSL not working

2006-07-24 Thread Matus Nemcik
Thanks for your reply, you was right, the problem was with the account ... now everything is working great!!! Thanks again!! On 7/24/06, Mladen Turk <[EMAIL PROTECTED]> wrote: Matúš Nemčík wrote: > Hi, i have installed the latest version of Apache Tomcat 5.5.17 on Windows > XP platform using th

Re: SSL not working

2006-07-24 Thread Mladen Turk
Matúš Nemčík wrote: Hi, i have installed the latest version of Apache Tomcat 5.5.17 on Windows XP platform using the installer and the server is running as a service. The probable reason is because default service runs under the SYSTEM account. Keystore requires a valid user. Modify the servic

Re: Restart web app

2006-07-24 Thread Shinya Koizumi
Where can I find code to perform a restart (or stop and then start) of a web application? Thank in advance, Asaf You mean from the batch file? if so can you just call stop and start scripts they will do the trick, no? SK ---

Restart web app

2006-07-24 Thread asaf.lahav
Where can I find code to perform a restart (or stop and then start) of a web application? Thank in advance, Asaf - To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: [EMAIL PROTECTED] For additional co

sendRedirect with response wrapper not working

2006-07-24 Thread Mani Balasubramani
Hi, Here is the scenario. In my filter I do the following doFilter(){ MyRequestWrapper reqWrapper = new MyRequestWrapper(servletRequest); MyResponseWrapper respWrapper = new MyResponseWrapper(servletResponse); //get cookie from request and decrypt it. ch

SSL not working

2006-07-24 Thread Matúš Nemčík
Hi, i have installed the latest version of Apache Tomcat 5.5.17 on Windows XP platform using the installer and the server is running as a service. I have created the keystore as it is described in the tomcat documentation and have also uncommented the connector for SSL in /conf/server.xml. My prob

RE: Tomcat fails to refresh connections when mySQL server on linux is shutdown and restarted

2006-07-24 Thread Seetha Rao
Hi Chris, thanks for the comments. I thought since we have singleton class and creating a connection object there, we will be reusing the same connection object for all database operations. May be my thinking is not correct. Do you suggest I just create the DataSource object in the private const

<    1   2