Given:
{
response.setHeader("foo","bar");
request.getRequestDispatcher(rd).forward(request, response);
}
Shouldn't the header "foo" be in the response?
The forward() implementation of com.meterware.servletunit.RequestDispatcherImpl.java resets the whole response, including headers and status, whereas servlet specification tells that only buffer is...
2009-06-24 12:19:57 UTC in httpunit