I can confirm this issue. Could you add it to JIRA please?
Cheers, Bruno On 28/06/07, noah <[EMAIL PROTECTED]> wrote:
With the 1.2.0-SNAPSHOT for today <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %> <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %> <html> <head> <title>Null Test</title> </head> <body> <f:view> <h:outputText value="#{nullValue}" /> </f:view> </body> </html> causes the exception shown below. 1.1.5 didn't have problem with null expressions where there is only a base and the 1.2 RI doesn't either. This is on Jetty. javax.el.PropertyNotFoundException: ELResolver cannot handle a null base Object with identifier 'nullValue' at com.sun.el.lang.ELSupport.throwUnhandled(ELSupport.java:52) at com.sun.el.parser.AstIdentifier.getValue(AstIdentifier.java:75) at com.sun.el.ValueExpressionImpl.getValue(ValueExpressionImpl.java:195) at javax.faces.component.UIOutput.getValue(UIOutput.java:68) at org.apache.myfaces.shared_impl.renderkit.RendererUtils.getStringValue(RendererUtils.java:241) at org.apache.myfaces.shared_impl.renderkit.html.HtmlTextRendererBase.renderOutput(HtmlTextRendererBase.java:71) at org.apache.myfaces.shared_impl.renderkit.html.HtmlTextRendererBase.encodeEnd(HtmlTextRendererBase.java:58) at javax.faces.component.UIComponentBase.encodeEnd(UIComponentBase.java:539) at javax.faces.component.UIComponent.encodeAll(UIComponent.java:250) at javax.faces.component.UIComponent.encodeAll(UIComponent.java:247) at org.apache.myfaces.application.jsp.JspViewHandlerImpl.renderView(JspViewHandlerImpl.java:308) at com.sun.facelets.FaceletViewHandler.renderView(FaceletViewHandler.java:533) at org.apache.myfaces.lifecycle.RenderResponseExecutor.execute(RenderResponseExecutor.java:41) at org.apache.myfaces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:132) at javax.faces.webapp.FacesServlet.service(FacesServlet.java:138) at org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:487) at org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:367) at org.mortbay.jetty.security.SecurityHandler.handle(SecurityHandler.java:216) at org.mortbay.jetty.servlet.SessionHandler.handle(SessionHandler.java:181) at org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java:712) at org.mortbay.jetty.webapp.WebAppContext.handle(WebAppContext.java:405) at org.mortbay.jetty.handler.ContextHandlerCollection.handle(ContextHandlerCollection.java:211) at org.mortbay.jetty.handler.HandlerCollection.handle(HandlerCollection.java:114) at org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:139) at org.mortbay.jetty.Server.handle(Server.java:295) at org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java:503) at org.mortbay.jetty.HttpConnection$RequestHandler.headerComplete(HttpConnection.java:827) at org.mortbay.jetty.HttpParser.parseNext(HttpParser.java:511) at org.mortbay.jetty.HttpParser.parseAvailable(HttpParser.java:210) at org.mortbay.jetty.HttpConnection.handle(HttpConnection.java:379) at org.mortbay.io.nio.SelectChannelEndPoint.run(SelectChannelEndPoint.java:361) at org.mortbay.thread.BoundedThreadPool$PoolThread.run(BoundedThreadPool.java:442)

