LifecycleManager manager = LifecycleManagerStore.get(ServletRequest.class, httpReq);
manager.bindTo(FacesContext.class, facesContext);
facesContext.getAttributes().put(WARP_ENABLED, Boolean.TRUE);
manager.fireEvent(new FacesContextInitialized(facesContext));
} catch (ObjectNotAssociatedException e) {
log.fine("no association of manager found for this ServletRequest");
} catch (ObjectAlreadyAssociatedException e) {
throw new IllegalStateException(e);
}