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?

link|improve this question

The accepted answer indicates that you're using JSF. You should really have mentioned that in your question and tags. This facility is namely not (directly) available in Servlet API. – BalusC Jul 16 '10 at 12:15
I was not really aware that the ResponseWriter is only available in JSF, I added the tag – Tobo Jul 16 '10 at 15:04
The package name of ResponseWriter tells that. Since you tagged servlets I initially thought that there's was some layman's ambiguity and that you actually meant response.getWriter() as you can obtain from HttpServletResponse. 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:05
The tag "servlets" was not added by me – Tobo Jul 16 '10 at 15:06
Talking about ambiguity in ResponseWriter :) 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
feedback

2 Answers

up vote 2 down vote accepted

How about this?

ResponseWriter rw1, rw2; // ...
rw2 = rw1.cloneWithWriter(new PrintWriter(System.out));

Documentation for ResponseWriter

Use whichever writer your find most convenient

And finally, system.out.

link|improve this answer
Thank you very much, works perfectly! Now I can go on finding my bug ;) – Tobo Jul 16 '10 at 11:18
feedback

There is - you can wrap your response and writer objects. But in this case there is a better solution: use Firebug. It will tell you what the response has been.

link|improve this answer
Thanks, I just tried that also and it's really helpful – Tobo Jul 16 '10 at 12:06
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.