On 9/19/07, Torsten Krah <[EMAIL PROTECTED]> wrote: > So in short, i need to analyze the response of mod_proxy and if it matches > some criteria, i want to do a internal redirect and serve some content under > the requested url. > The client should not see the "external redirect" the servlet triggers. > > I hope i can do this with a ResponseHandler, but as i am new to this stuff, i > don't know if this is the "right" way.
I think a filter is what you want. It sounds like mod_proxy is your response handler already. A filter can step in afterward and change the response. - Perrin