[jboss-user] [JBoss Seam] - Re: Sometimes error messages shown only after page refresh

2008-01-17 Thread avpavlov
Looks like messages added to old conversation, after error Seam opens new BUT keeps old conversation id in URL. After refreshing Seam returns to old conversation and displays messages. See some debug logs below | Legend | | FMhash is org.jboss.seam.faces.FacesMessages component instance

[jboss-user] [JBoss Seam] - Re: Sometimes error messages shown only after page refresh

2007-12-28 Thread avpavlov
Hi Pete. In what form do you expect example? deployable ear? or just files involved to this bug, i.e. bean definition, page source, controller source and etc? Our deployable ear is about 5Mb. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4115861#4115861 Rep

[jboss-user] [JBoss Seam] - Sometimes error messages shown only after page refresh

2007-12-27 Thread avpavlov
Hi folks! I faced strange behaviour when tried to display error page for all uncatched exceptions: sometimes error messages are displayed, sometimes I see empty error page and need refresh page to see messages. My error page | http://www.w3.org/1999/xhtml"; | xmlns:ui="http

[jboss-user] [JBoss Seam] - Re: Where exceptions handling should be configured?

2007-12-26 Thread avpavlov
Really, just next row under deprecated file parsing! Thanks Pete, I'm very-very ashamed :(( View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4115477#4115477 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4115477 __

[jboss-user] [JBoss Seam] - Re: Where exceptions handling should be configured?

2007-12-26 Thread avpavlov
Sorry, my post above was not well formed There is updated I found that Seam2.0 documentation advices to put "exception" tag to pages.xml. It does not work! Moreover, if you open Pages.java that you can see that "exception" tags are not parsed at all! Exception.java parses exceptions.xml wh

[jboss-user] [JBoss Seam] - Where exceptions handling should be configured?

2007-12-26 Thread avpavlov
I found that Seam2.0 documentation advices to put to pages.xml. It does not work! Moreover, if you open Pages.java that you can see that tags are not parsed at all! Exception.java parses exceptions.xml which marked as deprecated. What I'm doing wrong? View the original post : http://www.jb

[jboss-user] [JBoss Seam] - Re: ManyToMany association within conversation scope bean

2007-12-10 Thread avpavlov
"[EMAIL PROTECTED]" wrote : ... hibernate is though in the persistence context? I'm not sure I understand that :) Could you please clarify? Do you mean hibernate fetched collection to Provider bean and did not refresh when User form saved (== links changed)? If yes, why usernames were refreshed

[jboss-user] [JBoss Seam] - ManyToMany association within conversation scope bean

2007-12-04 Thread avpavlov
Hi all. I have 2 entities linked via many-to-many association | @Entity | @Cache(usage = CacheConcurrencyStrategy.READ_WRITE) | public class User implements Serializable { | @Id | @GeneratedValue | private long id; | | @NotEmpty | @Column(unique = true) |