Re: filter question

2014-03-14 Thread André Warnier
Christopher Schultz wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Makilaj, On 3/14/14, 8:32 AM, Mikolaj Rydzewski wrote: On 14.03.2014 13:25, André Warnier wrote: Not a direct answer to your question, but this subject comes up so often that maybe a generic explanation may help. [..

Re: filter question

2014-03-14 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Makilaj, On 3/14/14, 8:32 AM, Mikolaj Rydzewski wrote: > On 14.03.2014 13:25, André Warnier wrote: > >> Not a direct answer to your question, but this subject comes up >> so often that maybe a generic explanation may help. > [...] >> So any attempt

Re: filter question

2014-03-14 Thread Mikolaj Rydzewski
On 14.03.2014 13:25, André Warnier wrote: Not a direct answer to your question, but this subject comes up so often that maybe a generic explanation may help. [...] So any attempt at that point by the webapp (filters, servlet, whatever) to modify the status or the headers will be met by a refus

Re: filter question

2014-03-14 Thread André Warnier
Brendan Miller wrote: I have a filter with doFilter method like this: public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException { HttpServletRequest req = (H

RE: filter question

2014-03-13 Thread Caldarale, Charles R
> From: Tim Watts [mailto:t...@cliftonfarm.org] > Subject: Re: filter question > Doing this in a Filter, while intuitively sensible, will always be a > highly fragile solution. You would have to set a buffer large enough to > accommodate the largest conceivable response size.

Re: filter question

2014-03-13 Thread Tim Watts
Chain::internalDoFilter(ServletRequest request, > > > ServletResponse response) > > > throws IOException, ServletException > > > > > > { > > > > > > servlet.service(request, response); > > > > > > ... > &g

Re: filter question

2014-03-13 Thread Tim Watts
; > > > > ApplicationFilterChain::internalDoFilter(ServletRequest request, > > ServletResponse response) > > throws IOException, ServletException > > > > { > > > > servlet.service(request, response); > > > > ..

RE: filter question

2014-03-13 Thread Caldarale, Charles R
> From: Brendan Miller [mailto:catph...@catphive.net] > Subject: Re: filter question > On Thu, Mar 13, 2014 at 6:20 PM, Martin Gainty wrote: > > you'll need to pass your modified response to service method of servlet > > which is *in* the filterChain > I'm

Re: filter question

2014-03-13 Thread Brendan Miller
est request, > ServletResponse response) > throws IOException, ServletException > > { > > servlet.service(request, response); > > ... > > } > > Martin > > > > > > > > Date: Thu, 13 Mar 2014 17:51:59 -0700 &g

RE: filter question

2014-03-13 Thread Tim Watts
> throws IOException, ServletException > > { > > servlet.service(request, response); > > ... > > } > > Martin > > > > > > > > Date: Thu, 13 Mar 2014 17:51:59 -0700 > > Subject: filter question &

Re: filter question

2014-03-13 Thread Tim Watts
On Thu, 2014-03-13 at 17:51 -0700, Brendan Miller wrote: > I have a filter with doFilter method like this: > > public void doFilter(ServletRequest request, > ServletResponse response, > FilterChain chain) > throws IOException, ServletEx

RE: filter question

2014-03-13 Thread Martin Gainty
ponse); ... } Martin > Date: Thu, 13 Mar 2014 17:51:59 -0700 > Subject: filter question > From: catph...@catphive.net > To: users@tomcat.apache.org > > I have a filter with doFilter method like this: > > public void doFilter(ServletRequest reques

filter question

2014-03-13 Thread Brendan Miller
I have a filter with doFilter method like this: public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException { HttpServletRequest req = (HttpServletRequest) reque