// setup invocation context, using web request
invocationContext = servletUnitClient.newInvocation(webRequest);
// invoke the servlet
invocationContext.service();
// retrieve response
webResponse = invocationContext.getServletResponse();
return webResponse;