Images CSS not loaded after the request passes through a Servlet Filter

2005-04-28 Thread Roberto
Hi, I have a small java application, in which a servlet processes the request and then calls a JSP to present the data. Everything is OK with that configuration. Then, I decided to create a servlet filter, to redirect every request to that application, to a login page first. The code of that

Re: Images CSS not loaded after the request passes through a Servlet Filter

2005-04-28 Thread Frank W. Zammetti
Question: are the requests for images and CSS files also going through the filter? I'm wondering if those requests are getting forarded to the logon page too, which obviously wouldn't work. -- Frank W. Zammetti Founder and Chief Software Architect Omnytex Technologies http://www.omnytex.com On

Re: Images CSS not loaded after the request passes through a Servlet Filter

2005-04-28 Thread Roberto
Frank, You got it. The filter configuration, in the web.xml file, was intercepting ALL requests (url-pattern/*/url-pattern). I really thought that the filter would intercept only requests for Servlets, not all HTTP requests... Thanks ! This problem was really pissing me off... :) Regards