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 =

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

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 at that

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.

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)

RE: filter question

2014-03-13 Thread Martin Gainty
); ... } 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 request, ServletResponse response, FilterChain chain

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,

RE: filter question

2014-03-13 Thread Tim Watts
, ServletException { servlet.service(request, response); ... } 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

Re: filter question

2014-03-13 Thread Brendan Miller
, ServletResponse response) throws IOException, ServletException { servlet.service(request, response); ... } Martin Date: Thu, 13 Mar 2014 17:51:59 -0700 Subject: filter question From: catph...@catphive.net To: users@tomcat.apache.org I have

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 mgai...@hotmail.com wrote: you'll need to pass your modified response to service method of servlet which is *in* the filterChain I'm confused by what you mean

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 From: catph...@catphive.net To: users@tomcat.apache.org I have

Re: filter question

2014-03-13 Thread Tim Watts
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 request, ServletResponse response, FilterChain

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. Once a response