public override IHttpHandler GetHandler(HttpContext context, string requestType, string url, string path)
        {
            Type         pageType = PageMapper.GetObjectType(context, url);
            IHttpHandler handler  = new ServletFacesPageHandler(url, pageType, BaseHttpServlet.FacesContextFactory, BaseHttpServlet.Lifecycle);

            return(SessionWrapper.WrapHandler(handler));
        }
		public override IHttpHandler GetHandler (HttpContext context, string requestType, string url, string path) {
			Type pageType = PageMapper.GetObjectType (context, url);
			IHttpHandler handler = new ServletFacesPageHandler (url, pageType, BaseHttpServlet.FacesContextFactory, BaseHttpServlet.Lifecycle);
			return SessionWrapper.WrapHandler (handler);
		}