Re: 501 error not going to location

2013-03-20 Thread Shelley
ebugging of Tomcat's code to understand what's happening, but in the meantime, I'd appreciate any other thoughts or ideas as to how custom 501 error pages may be handled. Thanks! On Wed, Mar 20, 2013 at 3:01 PM, Konstantin Kolinko wrote: > 2013/3/20 Shelley : > > I'

Re: MultiContext War

2008-01-16 Thread Shelley
The maven-war-plugin allows for war overlays [1], which may accomplish what you need. [1] http://maven.apache.org/plugins/maven-war-plugin/overlays.html On Jan 15, 2008 6:04 AM, Peter Crowther <[EMAIL PROTECTED]> wrote: > > From: DCVer [mailto:[EMAIL PROTECTED] > > I am trying to merge 4 web ap

JNDIRealm AlternateURLs

2007-11-08 Thread Shelley
I have configured a JNDIRealm for LDAP authentication, and actually have multiple alternateURLs for the LDAP directory. Is it possible to specify more than a single connectionURL and alternateURL? - To start a new topic, e-mail:

LDAP Security

2007-11-07 Thread Shelley
I have a stand-alone webapp which requires authentication against an existing LDAP directory. The tomcat security realm configuration (JNDIRealm) seems to be working correctly, but I'd like to be able to define only one security-role in the deployment descriptor for all authenticated users. (I do

Overriding the Webapp Display Name

2007-09-07 Thread Shelley
Can the web-app displayName (from the web deployment descriptor) be overridden via any Tomcat configuration (ex: context.xml)?

Re: Prefix Paths on Servlets

2007-08-14 Thread Ryan Shelley
eployments? Or package it with the war? On Aug 13, 2007, at 12:03 PM, Ryan Shelley wrote: My apologies... I'm on Tomcat 5.5. I'll take a look at it and give that a try. Thanks Chuck! On Aug 13, 2007, at 11:59 AM, Caldarale, Charles R wrote: From: Ryan Shelley [mailto:[EMAIL PROTECT

Re: character encodingg problem

2007-08-13 Thread Ryan Shelley
So I've been able to deploy the servlet and access it with the "/it" prefix, however, I noticed that when I redeploy my war, my custom it#idm.war context file is also removed. Is there a way to keep that transient between deployments? Or package it with the war? On Aug 13, 2007, at 1:12 P

Re: Prefix Paths on Servlets

2007-08-13 Thread Ryan Shelley
My apologies... I'm on Tomcat 5.5. I'll take a look at it and give that a try. Thanks Chuck! On Aug 13, 2007, at 11:59 AM, Caldarale, Charles R wrote: From: Ryan Shelley [mailto:[EMAIL PROTECTED] Subject: Prefix Paths on Servlets However, it's recently been requested that

Prefix Paths on Servlets

2007-08-13 Thread Ryan Shelley
I developed a servlet with the package name "idm.war". Therefore, my URL is http://myhost/idm/... However, it's recently been requested that I add a prefix to my servlet. Now it should be http://myhost/it/idm/... Does tomcat provide a configuration that would allow me to add "/it" to ju