On Sat, 2008-02-09 at 13:37 -0800, Richard Yee wrote: > Have you viewed the source to your blank page? Do you see the MyFaces > tags? I am having this problem on the Oracle OC4J external server that > comes with JDeveloper. The application starts up fine w/o any error > messages and the requests are getting processed but the tags are not > getting processed so they appear in the source view of the page. >
Are you using JSP pages, but with a ".faces" suffix on urls? If so, then it looks like you don't have the FacesServlet mapped to handle ".faces" suffixes, so the container is just serving them as text. If .jsp pages are being processed at all, then the jsp engine will try to execute them as tags and fail if the tag-class cannot be found. As that is not happening, it looks like you have some wrong config that means the container is not even recognising them as jsp tags. If you are using facelets, then again it looks like you haven't got the facelets servlet set up. Alternatively, maybe facelets passes tags through unaltered if it doesn't recognise them; I don't know much about configuring Facelets correctly. In neither case does this appear to be a MyFaces issue. Regards, Simon

