Hello,

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

anonymous wrote : 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?



View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4046015#4046015

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4046015
_______________________________________________
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to