The forward method of the RequestDispatcher interface may be called by the
calling
servlet only when no output has been committed to the client. If output data
exists in the response buffer that has not been committed, the content must be
cleared before the target servlet’s service method is called. If the response has been
committed, an
IllegalStateException must be thrown.
"does this mean I should have no out.println stmt
before calling requestDispatcher.forward() and after calling the forward"???
please someone clear my doubt