when i am forwarding a request to another servlet or jsp i am not getting the partial response generated by the first servlet..whathappens exactly tothe already generated response ..will it be over ridden by the second servlet or will it be ignoredby the container
The initial response is written to a buffer. If the buffer fills it gets sent as is considered 'committed', if you farward after his point you gaet an IllegalStateException. If you forward before the buffer fills the buffer gets cleared (ie deleted) and starts from scratch.
In general it is a bad idea to rely on the buffer to manage this behaviour. It is better to decide whether to show A or B and only show that resource, rather than showing one and then changing your mind, hoping it won't fail horribly.
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to
run our stuff on 16 servers instead of 3.