Re: Servlet Filter calling chain of Servlets

2012-07-04 Thread wicket user
so in this case i can get the Request/Response object by (WebRequest) getRequestCycle().getRequest() and (WebReponse) getRequestCycle().getResponse() right? and all the parameters or cookies can get from the WebRequest which will be passing thorough the Servlet Chain . -- View this message i

Re: Servlet Filter calling chain of Servlets

2012-07-04 Thread Martin Grigorov
Hi, The request and response are the ones passed by the web container. Since you will not wrap them then they will be the same objects for all filters/servlets in the chain. On Thu, Jul 5, 2012 at 8:04 AM, wicket user wrote: > Hi, > > I was wondering we can write a custom servlet filter , and in