RE: how to make context path case insensitive

2008-08-11 Thread Peter Crowther
From: persistence k [mailto:[EMAIL PROTECTED] Can anybody tell me how to make context path of a web application case insensitve. I need a case insenstive context path for my web application. Do you need a case insensitive context path, or do you need users to be able to type in either case

Re: how to make context path case insensitive

2008-08-11 Thread persistence k
thanks for your reply. I'm using FC5 linux, tomcat 5.028 for my web app. Currently my webapp context path is in upper case, and as per the requirement we need to make the context path case insensitive just as www.google.com and WWW.GOOgle.COM point to same application. Case sensitivity

Re: how to make context path case insensitive

2008-08-11 Thread Jens Kapitza
persistence k schrieb: thanks for your reply. I'm using FC5 linux, tomcat 5.028 for my web app. Currently my webapp context path is in upper case, and as per the requirement we need to make the context path case insensitive just as www.google.com and WWW.GOOgle.COM point to same application.

Re: how to make context path case insensitive

2008-08-11 Thread Pierre Goupil
Hello, If what you need is to redirect any request to http://www.yoursite.com/yOuRwEbapP (yourwebapp being case insensitive) to http://www.yoursite.com/yourwebapp (yourwebapp being case sensitive and being the context path to which you have deployed your app to), what you need is a servlet

Re: how to make context path case insensitive

2008-08-11 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Persistence, persistence k wrote: | Currently my webapp context path is in upper case, and as per the | requirement we need to make the context path case insensitive | just as www.google.com and WWW.GOOgle.COM point to same application. Case |

Re: how to make context path case insensitive

2008-08-11 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Pierre, Pierre Goupil wrote: | If what you need is to redirect any request to | http://www.yoursite.com/yOuRwEbapP (yourwebapp being case insensitive) to | http://www.yoursite.com/yourwebapp (yourwebapp being case sensitive and | being the context

Re: how to make context path case insensitive

2008-08-11 Thread André Warnier
Christopher Schultz wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Pierre, Pierre Goupil wrote: | If what you need is to redirect any request to | http://www.yoursite.com/yOuRwEbapP (yourwebapp being case insensitive) to | http://www.yoursite.com/yourwebapp (yourwebapp being case

RE: how to make context path case insensitive

2008-08-11 Thread Caldarale, Charles R
From: André Warnier [mailto:[EMAIL PROTECTED] Subject: Re: how to make context path case insensitive Do you mean that all requests go first through the ROOT app, no matter what ? and that thus a servlet filter placed in the ROOT app would see *all* requests ? No, just requests that do

Re: how to make context path case insensitive

2008-08-11 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 André, André Warnier wrote: | Christopher Schultz wrote: | | Oh, that's a MUCH better idea than mine (to deploy all combinations of | case as redirector apps). The trick is that you must deploy this filter | into the ROOT application specifically. |