> Is there a way to redirect servlet output similar to System.setOut()?
>
[quoted text clipped - 3 lines]
> by viewing the resultant source, saving it, and writing a quick app to parse
> it into multiple files but I'm attempting to automate that process.
You can trap the generated HTML (or basically all what is sent to the
client) by using ServletFilter
Alan Honeycutt - 12 Jan 2006 20:25 GMT
>> Is there a way to redirect servlet output similar to System.setOut()?
>>
> You can trap the generated HTML (or basically all what is sent to the
> client) by using ServletFilter
Thank you. That is exactly what I needed.