Re: tomcat incoming requests and thread usage

2007-09-14 Thread Manivannan Palanichamy
sure that the thread is done. --- Manivannan Palanichamy http://mani.gw.googlepages.com/index.html On 9/14/07, Caldarale, Charles R <[EMAIL PROTECTED]> wrote: > > > From: Waseem Azhar [mailto:[EMAIL PROTECTED] > > Subject: tomcat incoming requests and thread usage > > &g

Threads in tomcat application.

2007-08-31 Thread Manivannan Palanichamy
erver application... Just want to know whether this will be a great impact in future.. Otherwise, do you suggest any alternative design for the above problem? Looking forward a quick reply :-) -- Manivannan Palanichamy http://mani.gw.googlepages.com/index.html

Re: Tomcat not starting properly.

2007-08-28 Thread Manivannan Palanichamy
which tomcat version are you using? can you also specify the value of PATH and CLASSPATH variables? -- Manivannan Palanichamy http://mani.gw.googlepages.com/index.html On 8/28/07, Potri Raaja <[EMAIL PROTECTED]> wrote: > > > Hi, > > When I try to start my tomcat I am

Re: Tomcat (javac)compilation arguments

2007-08-27 Thread Manivannan Palanichamy
to tomcat's javac & java? I am not able to start tomcat. it is throwing any exception/error but, simply the prompt returns. -- Manivannan Palanichamy http://mani.gw.googlepages.com/index.html On 8/26/07, Brian Munroe <[EMAIL PROTECTED]> wrote: > > On 8/25/07, Manivan

Tomcat (javac)compilation arguments

2007-08-25 Thread Manivannan Palanichamy
Hi, I need to pass javac (compilation) arguments to tomcat. Just as JAVA_OPTS is there for jvm arguments, is there any env var/ other ways to pass arguments to javac of tomcat? -- Manivannan Palanichamy http://mani.gw.googlepages.com/index.html

Re: java.lang.NoClassDefFoundError

2007-08-25 Thread Manivannan Palanichamy
just do, jar -tvf MyJar.jar and see whether it lists the class. -- Manivannan Palanichamy http://mani.gw.googlepages.com/index.html On 8/25/07, Dave Sailer <[EMAIL PROTECTED]> wrote: > > it does. And if it didn't "jar uf" is broken, I would think. > > On Fri,

Re: Tomcat freezes up

2007-08-17 Thread Manivannan Palanichamy
What solution been found out for this problem? I am really a sufferer of this problem? I am thinking of entering a bug. But, the problem is, as Sebastiaan said, reproducing the bug. Let me work on this, or guys you can also help/guide/work on reproducing the bug. -- Manivannan Palanichamy http

Re: Tomcat freezes up

2007-08-16 Thread Manivannan Palanichamy
s. Is it an issue with tomcat thread handling? Because, in user applications, these freezing problems happen most of the time, because of poor thread handling. Better we enter a bug/ discuss this issue in tomcat developers forum. -- Manivannan Palanichamy http://mani.gw.googlepages.com/index.htm

how to strip tomcat?

2007-08-16 Thread Manivannan Palanichamy
nter/retrieve some values to/from database, nothing else other than that) -- Manivannan Palanichamy http://mani.gw.googlepages.com/index.html

Re: java.net.BindException: Address already in use

2007-08-12 Thread Manivannan Palanichamy
On 8/11/07, Susan Richards <[EMAIL PROTECTED]> wrote: > > First, I just want to say that I sure appreciate all the help I am getting > on this list and I don't deserve to even associate with highly intelligent > beings such as yourselves. > > We shutdown and restart our tomcat 5.5.23 server nightly

Re: Tomcat startup error

2007-08-08 Thread Manivannan Palanichamy
Proabably, you have wronly edited server.xml or tomcat-users.xml. Revert the changes or get fresh files & then try again. On 8/8/07, R Y <[EMAIL PROTECTED]> wrote: > > I install tomcat 5.5 package on Ubuntu, it run server on port 8180 by > default. > > I start Tomcat 5.5 by running /etc/init.d/tom

Re: Datasource Error

2007-08-07 Thread Manivannan Palanichamy
Set the connection url in database configuration xml file. Some thing like, url jdbc:mysql://localhost:3306/javatest?autoReconnect=true Refer to this page: http://tomcat.apache.org/tomcat-5.0-doc/jndi-datasource-examples-howto.html -- Manivannan.Palanichamy (@) Oracle.com http:/

Re: Read and write inside WEB-INF

2007-07-15 Thread Manivannan Palanichamy
I too do the same thing; I am reading properties from a property file, thats under WEB-INF/classes directory. code is: InputStream in = getClass().getClassLoader().getResourceAsStream(" sample.properties"); Code is working fine. -- Manivannan.Palanichamy (@) Oracle.com http://mani.gw.googlepa

Re: How to replace jar which was already loaded?

2007-07-10 Thread Manivannan Palanichamy
Try manager url, http://localhost:8080/manager/reload?path=/app_name (app_name is your web application name. ). it will reload the specific application alone. You will be prompted for manager login, which you have already configured in /conf/tomcat-users.xml -- Manivannan.Palanichamy (@) Oracle