I am a little bit confused with sending a response to a client.
When does it take place?
I thought that after:
But please consider an example (I attach only an important part of
JSP file):
Output in my webbrowser:
Some text after flush
So it can not be send after out.flush().
Another:
Nothing is printed.
Another:
"Some text" is printed.
Please, tell me when a response is sent to an user? And please give me some details about buffering (I think that page is double buffered - through JSPWriter and through PrintWriter of ServletResponse).
Thanks for your time!