For debug reasons, I want to see the ouput of my ResponseWriter directly in standard output. Because the response will be processed by JavaScript I am not able to see the output there.
Is there an easy solution to redirect the ResponseWriter to standard output?
ResponseWritertells that. Since you taggedservletsI initially thought that there's was some layman's ambiguity and that you actually meantresponse.getWriter()as you can obtain fromHttpServletResponse. For that a completely different approach is needed, as suggested by Bozho and answered in detail by me here. – BalusC Jul 16 '10 at 15:05ResponseWriter:) In future try to tag as specific as possible. Know what you're actually using. Look at package names and so on. It's not "just" Java and Ajax. Actually, Ajax has not much to do with the actual question. – BalusC Jul 16 '10 at 15:08