3 Replies Latest reply on Mar 28, 2008 3:15 PM by zemanel

    Problem in renderResponse

    zemanel

      Hi, im having this error while using seam with icefaces:




      cause javax.el.ELException: /home.xhtml: Property 'xpto' not found on type com.mydomain.mySeamProj.TableBean 
      class class javax.faces.FacesException 
      localizedMessage Problem in renderResponse: /home.xhtml: Property 'xpto' not found on type com.mydomain.mySeamProj.TableBean
      message Problem in renderResponse: /home.xhtml: Property 'xpto' not found on type com.mydomain.mySeamProj.TableBean
      stackTrace com.icesoft.faces.facelets.D2DFaceletViewHandler.renderResponse(D2DFaceletViewHandler.java:294), com.icesoft.faces.application.D2DViewHandler.renderView(D2DViewHandler.java:161), com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:106),  
      ...





      I'm getting the error in the {inventoryList.xpto} parameter, on my .xhtml file inside a dataTable




      In my bean:


      @Name("inventoryList")
      @Scope(ScopeType.SESSION)
      
          public class TableBean {
      
              int xpto = 2;
              
              public int getXpto() {
                  return xpto;
              }...
      




      Am i doing something wrong? need to place something in faces-config.xml? Thansk for any help