Tomcat + HP OpenView

2004-04-01 Thread Carl Walker
Hi, Has anyone used Tomcat as an MBean Server for HP OVO? I read in the HP documentation that OVO can manage apps running in an open-source app server with "additional configuration". Thanks, Carl - To unsubscribe, e-mail: [E

[OT] Precompiled Webapps

2004-03-05 Thread Carl Walker
When I use the tag in Ant, I get an NPE if the page doesn't compile b/c of a JSP error. What I'd like to get is the error message pointing me to the coding problem and line number as I do when I hit a JSP and have it compiled on-the-fly. Is there anything besides verbose="99" that I can pass to

Re: RE: Multiple instances of Tomcat - why would you do it ?

2004-02-12 Thread Carl Walker
We run several instances of Tomcat to keep users from affecting each other. For example, since each Tomcat is a different process, if one app loaded in one of the Tomcat instances has a problem, we can bring that Tomcat instance down w/o affecting the others. Also, the likelihood that one appl

Re: Available JVM Heap vs WTM Process Memory .. Continued

2004-01-30 Thread Carl Walker
You should look at the code segment size in addtion to the the objects created (heap). Sometimes, large shared files are loaded into memory. For example, 10Mb for leading Oracle's OCI driver. Other sources of memory consumption include overhead (stacks) related to threads. If you have a Tomcat

Re: How Does GlobalNamingResources Work?

2003-08-14 Thread Carl Walker
I found the answer to this question this morning. Use in the to point to the definitions in the globals section. Carl Walker wrote: > Hi, > > I have an object and a javax.naming.spi.Naming factory that I want to > access as resources in server.xml. I'm able to use and >

How Does GlobalNamingResources Work?

2003-08-06 Thread Carl Walker
Hi, I have an object and a javax.naming.spi.Naming factory that I want to access as resources in server.xml. I'm able to use and in the . However, when I try to move either one of these to , Tomcat returns a 500 error saying "Cannot create resource instance". I think the factory code is corre

Securing Apache/Tomcat Communication

2003-08-04 Thread Carl Walker
Hi, Does anyone know if it's possible to secure the connection (AJP or otherwise) between Apache and Tomcat? I'm currently using mod_jk. I'm most interested in SSL (or other encryption) between the two rather than the JServ-style secret key mechanism. Thanks, Carl ---

LDAP/SSL Realm

2003-06-18 Thread Carl Walker
Has anyone used an LDAP Tomcat Realm over SSL? I wasn't able to get the stock JNDIRealm to work using the secure port. -Carl - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: problems with web.xml and security

2003-06-17 Thread Carl Walker
is on the web.xml of /secure. Is it possible? > > -- Rosaria > > -Original Message- > From: Carl Walker [mailto:[EMAIL PROTECTED] > Sent: Tuesday, June 17, 2003 12:56 PM > To: Tomcat Users List > Subject: Re: problems with web.xml and security > > I just teste

Re: problems with web.xml and security

2003-06-17 Thread Carl Walker
. > > -- Rosaria > > -Original Message- > From: Carl Walker [mailto:[EMAIL PROTECTED] > Sent: Tuesday, June 17, 2003 11:37 AM > To: Tomcat Users List > Subject: Re: problems with web.xml and security > > In which way doesn't it work? Are you prohibited from view

Re: problems with web.xml and security

2003-06-17 Thread Carl Walker
In which way doesn't it work? Are you prohibited from viewing the files after logging in or can you see the files even if you haven't authenticated? -Carl Rosaria Silipo wrote: > Hi, > > I am trying to set up Tomcat as a secure web engine. > From the tutorial I understood that you should insert

Re: Tomcat losing session

2003-01-14 Thread Carl Walker
I had a problem recently with a browser not setting Content-type correctly. If the Content-type is note set correctly, Tomcat can't parse the HTTP headers (including the cookie), so it'll create a new one. Charlie Toohey wrote: > Infrequently, Tomcat is creating a new session on each request fro

IE 6.0 and Missing Request Param. [CODE LISTING]

2003-01-13 Thread Carl Walker
I don't know if this will help anyone. I was having a problem with a form submission using IE 6. When I posted a form loaded by HTTP to JSP under Apache 1.3/mod_jk/Tomcat 4.1.12 (I tried 4.1.18 too) using HTTPS, IE sent a Content-type of 'application/x-www-form-urlencoded, application/x-www-form-

Re: [LONG] AJP13 Connector or IE6.0 Bug?

2003-01-10 Thread Carl Walker
I can reproduce this bug in 4.1.18 too. Carl Walker wrote: > I am running Tomcat 4.1.12 with Apache 1.3 using the AJP 1.3 Connector. > > I noticed that occasionly my request parameters are lost when processing > an HTTP POST with a Servlet. When I call getParameterNames(), nothing &

[LONG] AJP13 Connector or IE6.0 Bug?

2003-01-10 Thread Carl Walker
I am running Tomcat 4.1.12 with Apache 1.3 using the AJP 1.3 Connector. I noticed that occasionly my request parameters are lost when processing an HTTP POST with a Servlet. When I call getParameterNames(), nothing is returned even though the submitting form has several elements. The problem ma