You must not print anything using the out.println
and then forward to another jsp,
maybe if you have conditional forward then it would work,
once the response is commited which you have done by calling flush you cannot
forward.
if(some condition)
{
print something
}else
{
forward
}
would work