Your servlet might do this:
response.setHeader('Location', 'Home/')
Which works fine with CGI-based adapters, but fails with others. This is not a bug. CGI goes the extra mile by setting the HTTP status for you. In practice, redirects are supposed to also be accompanied by the status. Also, you should provide a small bit of HTML to describe the redirection, in case the user's browser fails to follow it. Finally, it might not hurt to check that the WebKit response object has not already been committed.
So use the sendRedirect() method instead, which does all of this for you:
response.sendRedirect('Home/')
-- ChuckEsterbrook - 07 Dec 2001