Can you post your jsp code? I think the exception is not because of
what you think. In the exception it says that there is a rendStatus
property in your page that is not behaving well. Could you post the
stackTrace from the server (localhost-***.log)?

Regards,

Bruno

2005/11/21, Elam Daly <[EMAIL PROTECTED]>:
> Howdy all,
>
> I'm trying to do something very simple.  I have an <outputText> component
> set as  <outputText value="Here I am" rendered="#{TestBean.renderMe}" />
>
> The TestBean is simple as well:
>
> public class TestBean {
>
>     int i = 0;
>
>     public boolean renderMe() {
>         if( i%2 == 0 ) return true;
>         else return false;
>     }
> }
>
> I'm just trying to set the render state programmaticly, yet Tomcat keeps
> throwing this:
> javax.faces.FacesException: Bean: com.whiteware.beans.TestBean, property:
> rendStatus
> org.apache.myfaces.context.servlet.ServletExternalContextImpl.dispatch(ServletExternalContextImpl.java:422)
> org.apache.myfaces.application.jsp.JspViewHandlerImpl.renderView
>
> (JspViewHandlerImpl.java:234)
> org.apache.myfaces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:373)
> javax.faces.webapp.FacesServlet.service(FacesServlet.java:107)
> org.apache.myfaces.component.html.util.ExtensionsFilter.doFilter
>
> (ExtensionsFilter.java:123)
> In fact, if I try to use any bean method at all, it always fails.  Even
> something as simple as 'return true' etc.
>
> Any help would be appreciated,
> Elam
>

Reply via email to