2 Replies Latest reply on May 16, 2007 12:36 PM by tonylmai

    What is com.sun.facelets.FaceletException: EL Expression Unb

      Hello,

      I encountered an encrypted exception that I do not understand. My app threw an exception as followed:

      com.sun.facelets.FaceletException: EL Expression Unbalanced: ... #{srchMgr.searchedQuote.dayChangePerc)
      at com.sun.facelets.tag.AbstractTagLibrary$UserComponentHandlerFactory.createHandler(AbstractTagLibrary.java:237)


      I know that I have #{srchMgr.searchedQuote.dayChangePerc) as my code is such:

      @Stateful
      @Scope(ScopeType.SESSION)
      @Name("srchMgr")
      public class SearchManagerBean implements Serializable, SearchManager {
       private TdQuote searchedQuote = null;
      ...
       public TdQuote getSearchedQuote() {
       return searchedQuote;
       }
      ...
      }
      
      
      public class TdQuote implements Serializable {
       private String dayChangePerc;
      ...
       public String getDayChangePerc() {
       return dayChangePerc;
       }
      }


      So what did Seam complain about?