RE: Servlet Filter Not Intercepting?

2008-01-03 Thread Jay Liu
the resource' ? Yours, Marcus Milanez -Mensagem original- De: Jay Liu [mailto:[EMAIL PROTECTED] Enviada em: quinta-feira, 3 de janeiro de 2008 01:49 Para: 'Tomcat Users List' Assunto: RE: Servlet Filter Not Intercepting? Thanks Marcus. Here's my filter setup. I just created it fresh

Re: Servlet Filter Not Intercepting?

2008-01-03 Thread Len Popp
? And only one more question, what do you mean by 'turn off invonking the resource' ? Yours, Marcus Milanez -Mensagem original- De: Jay Liu [mailto:[EMAIL PROTECTED] Enviada em: quinta-feira, 3 de janeiro de 2008 01:49 Para: 'Tomcat Users List' Assunto: RE: Servlet Filter Not Intercepting

RE: Servlet Filter Not Intercepting?

2008-01-02 Thread Jay Liu
Thanks Marcus. Here's my filter setup. I just created it fresh in netbeans so I'd be surprised if there is a problem. I woke up this morning, realizing I forgot to turn off invoking the resource. Would that matter? filter filter-nameUserFilter/filter-name

RE: Servlet Filter Not Intercepting?

2008-01-01 Thread Martin Gainty
2 things1) the order of filter-mapping DOES matter in web.xmlin other words 1st lexically is the first filter to fire 2)any pre-initialisation of the filter should be accomplished in the init() method() check out this link from ibmhttp://www.ibm.com/developerworks/java/library/j-tomcat/

RE: Servlet Filter Not Intercepting?

2008-01-01 Thread Jay Liu
To: Tomcat Users List Subject: RE: Servlet Filter Not Intercepting? 2 things1) the order of filter-mapping DOES matter in web.xmlin other words 1st lexically is the first filter to fire 2)any pre-initialisation of the filter should be accomplished in the init() method() check out this link from