RE: Strange processes

2009-11-05 Thread Hehl, Thomas
Subject: Re: Strange processes Hehl, Thomas wrote: What I don't understand is that every time someone hits our site, tomcat spawns several more processes and they never go away. This same tomcat and webapp are currently running on nearly 40 servers and they all only have two processes except

RE: Strange processes

2009-11-05 Thread Hehl, Thomas
:32 PM To: Tomcat Users List Subject: Re: Strange processes * PGP Signed by an unknown key Thomas, On 11/5/2009 1:44 PM, Hehl, Thomas wrote: OK, but these servers are all identical. Why would one do this and the rest not? Your previous statement seems to be in conflict with your observations

Management app start

2009-02-06 Thread Hehl, Thomas
I have a client using our software and have set up for them a user for the management app. They brought up the management app and stopped the webapp, but cannot seem to get it started again. I had them e-mail the log, but no help. This is a remote client, so I'm stuck as to what to look at next.

RE: Management app start

2009-02-06 Thread Hehl, Thomas
List Subject: RE: Management app start From: Hehl, Thomas [mailto:thomas.h...@acs-inc.com] Subject: Management app start This is a remote client, so I'm stuck as to what to look at next. How about looking at the Tomcat version, JRE/JDK in use, OS, etc. - and then telling us what

Debugging tomcat with eclipse

2008-02-13 Thread Hehl, Thomas
It seems like I've had this working before, but it surely isn't working now. I am trying to setup tomcat 5.5 so I can debug it with eclipse. I found the docs and set up the following environment variables. CATALINA_OPTS=-Dp6.home=D:\tomcat\common\lib:-Xdebug -Xrunjdwp:transport=dt_soc

RE: anyone using JNDI connection pool for Informix Database on T omcat

2008-01-25 Thread Hehl, Thomas
I am on Informix 7 and 9 on tomcat 5.5 and 6. How can I help? -Original Message- From: Amitava Chakraborty [mailto:[EMAIL PROTECTED] Sent: Friday, January 25, 2008 3:43 AM To: users@tomcat.apache.org Subject: anyone using JNDI connection pool for Informix Database on Tomcat Please help

RE: load balancing issue

2008-01-24 Thread Hehl, Thomas
Struts, but I'm not an expert on that.) If you want to see whether the server is sending a redirect response, use a browser plug-in such as Live HTTP Headers or ieHTTPHeaders to look at the browser requests and server responses. -- Len On Jan 23, 2008 3:30 PM, Hehl, Thomas [EMAIL PROTECTED] wrote

load balancing issue

2008-01-23 Thread Hehl, Thomas
I am running apache httpd 2.0.46 on a redhat server as a load balancer for a tomcat 6 cluster, also on redhat servers. I point my browser to the home page on the load balancer server and it returns the index.html just fine. I log into the application, again, fine. I click on one of the menu

RE: load balancing issue

2008-01-23 Thread Hehl, Thomas
sends you to the wrong URL then of course you get a 404. So the first place to look is the web page with that button on it. There are other things that could cause problems like that, but without details about your setup I don't want to make wild guesses. -- Len On Jan 23, 2008 1:13 PM, Hehl

JDBC connection through JNDI

2008-01-21 Thread Hehl, Thomas
I wish to create a JDBC connection and store it in a JNDI tree for use by a spring configuration file that usually runs my tomcat webapp. I'm trying to figure out how tomcat creates the connection pool from my config file and stores it in JNDI, but it is absolutely beyond me. I've googled and

RE: JDBC connection through JNDI

2008-01-21 Thread Hehl, Thomas
- From: Mark Thomas [mailto:[EMAIL PROTECTED] Sent: Monday, January 21, 2008 3:21 PM To: Tomcat Users List Subject: Re: JDBC connection through JNDI Hehl, Thomas wrote: I wish to create a JDBC connection and store it in a JNDI tree for use by a spring configuration file that usually runs my

RE: Tomcat 6 cluster

2008-01-17 Thread Hehl, Thomas
Hehl, Thomas wrote: I've built tomcat 5 and 5.5 single servers a lot, but now I'm trying to build a tomcat 6 cluster for testing. The docs seem pretty straightforward (just uncomment the Cluster line) and I've followed it, but I'm getting errors. The error looks like

Tomcat 6 cluster

2008-01-16 Thread Hehl, Thomas
I've built tomcat 5 and 5.5 single servers a lot, but now I'm trying to build a tomcat 6 cluster for testing. The docs seem pretty straightforward (just uncomment the Cluster line) and I've followed it, but I'm getting errors. The error looks like:

RE: Tomcat looses POST parameters

2007-08-27 Thread Hehl, Thomas
I've read other responses and don't know much more about what to tell you. It seems to be the first order of business is to figure out how to consistently re-create the problem. Have you tried running requests from a load testing app? Try banging on tomcat directly, then on Apache if no luck

RE: URL mangling

2007-08-23 Thread Hehl, Thomas
at 09:17, Hehl, Thomas wrote: /* Shouldn't that get everything? I have a debug at the beginning of doFilter that prints out the request and I only get the original one, nothing for the images and stuff. -Original Message- From: Ben Souther [mailto:[EMAIL PROTECTED] Sent: Wednesday

RE: URL mangling

2007-08-23 Thread Hehl, Thomas
of us are running full fledged commercial apps with Tomcat running as a standalone. On Thu, 2007-08-23 at 07:58, Hehl, Thomas wrote: Aha! Yes I am. Kinda makes sense that would be it. Thanks so much for thinking deep enough to ask the question. I'm already forwarding everything that starts

URL mangling

2007-08-22 Thread Hehl, Thomas
I have two ways of running my webapp. One is your basic webapp where tomcat answers the responses directly. The second runs security software the forwards the requests to another tomcat instance. This second version was mandated by our clients. The second version is brand new to us and I'm now

RE: URL mangling

2007-08-22 Thread Hehl, Thomas
/* Shouldn't that get everything? I have a debug at the beginning of doFilter that prints out the request and I only get the original one, nothing for the images and stuff. -Original Message- From: Ben Souther [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 22, 2007 9:03 AM To:

RE: [OT] 20 Tips for Using Tomcat in Production

2007-08-22 Thread Hehl, Thomas
Oh, it's a Windows machine. Are those ever called servers? ;) Well, I'm a Unix guy, so that's not what I call them. :) -Original Message- From: Christopher Schultz [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 22, 2007 10:15 AM To: Tomcat Users List Subject: Re: [OT] 20 Tips for

Filter

2007-08-20 Thread Hehl, Thomas
Our application has a security filter on it that ensures access to all servlets is from a logged in user. This has worked fine for years. We are now testing over this new security software that relays requests from an external webapp to our internal one. The problem is that the security filter

FW: Filter

2007-08-20 Thread Hehl, Thomas
OK, since no one had a suggestion about that, is there ways out of a filter that won't re-write the URL? Maybe instead of using response.redirect? Thanks. _ From: Hehl, Thomas Sent: Monday, August 20, 2007 8:42 AM To: 'users@tomcat.apache.org' Subject: Filter Our application

RE: FW: Filter

2007-08-20 Thread Hehl, Thomas
at RequestDispatcher.forward. All of this takes place on the server and doesn't change the URL. http://java.sun.com/j2ee/1.4/docs/api/javax/servlet/RequestDispatcher.html#f orward(javax.servlet.ServletRequest,%20javax.servlet.ServletResponse) On Mon, 2007-08-20 at 11:35, Hehl, Thomas wrote: OK, since

JDBC connection issue

2007-08-16 Thread Hehl, Thomas
I am testing our webapp under tomcat 6 after being under tomcat 5.5. I have moved the following file from 5.5. into 6. I have placed it in the conf directory: Context path=/mo docBase=mo debug=0 reloadable=true crossContext=true Resource name=jdbc/mo auth=Container

RE: JDBC connection issue

2007-08-16 Thread Hehl, Thomas
moving the config.xml to conf/Catalina/localhost and ... ... the manager was undeployed. mas Hehl, Thomas wrote: I am testing our webapp under tomcat 6 after being under tomcat 5.5. I have moved the following file from 5.5. into 6. I have placed it in the conf directory

RE: JDBC driver of class '' for connect URL 'null' in Tomcat 5.5. 12

2007-08-16 Thread Hehl, Thomas
Hmm. Sounds like, yeah, this is what I need to do too. -Original Message- From: Matthew Kerle [mailto:[EMAIL PROTECTED] Sent: Thursday, August 16, 2007 1:37 PM To: Tomcat Users List Subject: Re: JDBC driver of class '' for connect URL 'null' in Tomcat 5.5.12 Hi Chris I apologise for

RE: JDBC connection issue

2007-08-16 Thread Hehl, Thomas
OK, I was trying to go away from this approach because Tomcat 6 didn't ship with a conf/Catalina/localhost directory, but apparently, this is still the way to do things. So I created this directory, put the xml files that synced with my webapp in there and everything's back to working peachy keen.