Hi, I guess you are using Spring, right? Maybe there is some Spring configuration messing with the JSF 2.0 ViewHandler.
Or did you disable the JSF 2.0 facelets support via javax.faces.DISABLE_FACELET_JSF_VIEWHANDLER? If not, you could try to find out which ViewHandler your application really uses (via facesContext.getApplication().getViewHandler()). It should be org.apache.myfaces.application.ViewHandlerImpl. If it really is ViewHandlerImpl, you could try to set a debug point into ViewHandlerImpl.renderView() and see what happens. Regards, Jakob 2010/6/16 Leis, Matthias - SID-NLKM <[email protected]> > Hi! > > I am using MyFaces 2.0.0. Today I noticed, that jsf-facelets.jar was > still in my libs, so I removed it. I also removed the corresponding > view-handler configuration in faces-config.xml. Now I am getting a blank > page whenever I try to access my application. > > I think two DEBUG-Messages could be interesting: > 14:00:08,226 DEBUG [JsfView] Asking view handler to render view > 14:00:08,226 DEBUG [JsfView] View rendering complete > > So there is a view-handler, but it seems to do nothing (also look at the > time stamp). > > Any suggestions are appreciated :) > -- Jakob Korherr blog: http://www.jakobk.com twitter: http://twitter.com/jakobkorherr work: http://www.irian.at

