* @param response - servlet responce to write back to
* @throws IOException in case the container cannot process the request successfully
*/
public void doService(HttpServletRequest request, HttpServletResponse response) throws IOException {
HashMap<String, Resolvable> objects = new HashMap<String, Resolvable>();
objects.put("request", new RequestBeanWrapper(request));
objects.put("session", new HttpSessionWrapper(request.getSession()));
CRRequestBuilder rB = new CRRequestBuilder(request, crConf);
//response.setContentType(rB.getContentRepository(this.crConf.getEncoding()).getContentType()+"; charset="+this.crConf.getEncoding());
container.processService(rB, objects, response.getOutputStream(), new ServletResponseTypeSetter(response));
}