Re: java.lang.NoClassDefFoundError

2007-08-25 Thread Dave sailer
ah, I see now. I mucked up the path with "jar uf" and didn't notice cuz I was checking by doing "jar xf" instead of "jar tfv". doh! - Original Message - From: "Manivannan Palanichamy" <[EMAIL PROTECTED]> To: "Tomcat Users List" Sent: Saturday, August 25, 2007 4:33 PM Subject: Re: jav

Re: workers.properties confusion

2007-08-25 Thread Rainer Jung
[EMAIL PROTECTED] schrieb: > I think that really depends on the path you use inside > your httpd.conf. That's the place where you specify > which workers.properties to use. > > Cheers. Yes, as the others said, Tomcat does not read or use a workers.properties. It is only used by mod_jk and you can

Re: Apache authentication information (remoteuser) not visible in Tomcat

2007-08-25 Thread Rainer Jung
Hi Omar, Omar Nafees schrieb: > request.getRemoteUser() returns null in my servlet. > request.getAttribute("REMOTE_USER") also returns null. I have even > checked the headers that are being sent to the AJP connector in Tomcat. > request.getRemoteUser() works for me (mod_jk 1.2.25 and TC 5.5.23)

Re: Apache authentication information (remoteuser) not visible in Tomcat

2007-08-25 Thread David Smith
Hi Omar. 1. Removing the comments from server.xml is more for your sanity than mine. I started doing it to my server.xml's and it's made life so much easier. 2. The current production mod_jk is 1.2.14 in my system. I have to upgrade my server soon and will probably upgrade that when I do.

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, 2007-08-24 at 15:20 -0600, Filip Han

Re: Apache authentication information (remoteuser) not visible in Tomcat

2007-08-25 Thread Gabriel Wong
Omar, Try the following utility with Principal and let us know: String r = request.getRemoteUser(); if (r == null) { java.security.Principal pr = request.getUserPrincipal(); if (pr != null){ r = pr.getName();

OT / PHP build?

2007-08-25 Thread Martin Gainty
Afternoon All Anyone have recommends on user-friendly builds for php..preferrably a build which has less than 12 more builds of varying reliability to be installed Thanks M-- This email message and any files transmitted with it contain confidential information intended only for the person(s) to

Re: Apache authentication information (remoteuser) not visible in Tomcat

2007-08-25 Thread Omar Nafees
Thank you for the tips David. The JkEnvVar was just a shot at passing the REMOTE_USER explicitly. I read about it in one of the mod_jk documents. I was unable to get this to work without it either. Oh and my apologies for a cluttered server.xml on the list. I have restarted tomcat and apache

Re: Apache authentication information (remoteuser) not visible in Tomcat

2007-08-25 Thread David Smith
Hi. I'm in the same boat as you in using an apache httpd module to authenticate users and have had it working for a few years now. Your configuration looked good as far as I could tell. Here are a couple of suggestions though. 1. I'm not sure what 'JkEnvVar REMOTE_USER' is doing in your a

Re: [OT] Session replication vs stateless

2007-08-25 Thread Rémy Maucherat
On 8/24/07, lightbulb432 <[EMAIL PROTECTED]> wrote: > Although the debate between session replication vs stateless can't be > definitively solved and depends on the application, I'd like to hear about > your experiences with both. How are you designing your current applications, > and what implicat

Re: POJO Application Server for Tomcat

2007-08-25 Thread Johnny Kewl
Thank you for taking such an interst in the little application server for Tomcat There is now a better way than sending me emails direct. It has its own mailing list http://coolharbor.100free.com/mailing_list.htm Thank you --