RE: Index files and CGI UNDER TOMCAT

2001-04-12 Thread Hunor Nam
n try seting : suppress="true" in other request interceptors . God luck Hades -Original Message- From: Stéphane BAUDET [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 12, 2001 4:37 PM To: [EMAIL PROTECTED] Subject: Re: Index files and CGI UNDER TOMCAT What do you m

RE: Index files and CGI UNDER TOMCAT

2001-04-12 Thread Danny Angus
watch out, if this means that the http response code issued isn't 200 OK, you can find browsers refusing to store your page in history, and bookmarks. We used a similar scheme with perl CGI & apache, but its no substitute for preparing a proper handler. danny

Re: Index files and CGI UNDER TOMCAT

2001-04-12 Thread Stéphane BAUDET
not apricieted :-) ) > > Hades > > -Original Message- > From: Danny Angus [mailto:[EMAIL PROTECTED]] > Sent: Thursday, April 12, 2001 4:23 PM > To: [EMAIL PROTECTED] > Subject: RE: Index files and CGI UNDER TOMCAT > > if you leave the * out of the URL patte

RE: Index files and CGI UNDER TOMCAT

2001-04-12 Thread Hunor Nam
PROTECTED] Subject: RE: Index files and CGI UNDER TOMCAT if you leave the * out of the URL pattern you'll only get directories, not files in them, does that help? or try /OneApp/*/ I don't know how hot pattern matching is in the config parser, but I'd expect that to match anyth

RE: Index files and CGI UNDER TOMCAT

2001-04-12 Thread Danny Angus
ay, April 12, 2001 12:25 PM > To: [EMAIL PROTECTED] > Subject: RE: Index files and CGI UNDER TOMCAT > > > Hi again, > Well, Danny thanks a lot. Your idea was god. > Almost perfect for my needs. > There is a big "bubu" anyhow... > This is how thing

RE: Index files and CGI UNDER TOMCAT

2001-04-12 Thread Hunor Nam
om: Danny Angus [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 12, 2001 11:58 AM To: [EMAIL PROTECTED] Subject: RE: Index files and CGI UNDER TOMCAT I think something like: indexServlet app_nr*/ should take all hits to that

RE: Index files and CGI UNDER TOMCAT

2001-04-12 Thread Danny Angus
I think something like: indexServlet app_nr*/ should take all hits to that path, but not to specified files, to the indexServlet, which can parse the request URI to decide what to give you, depending on where you think you are.