[jboss-user] [JBoss Seam] - Re: How to control end of conversations/state of stateful be

2008-01-31 Thread javichi_fer
The problem I find when setting propagation=none on my navigation links is that the conversation is not ended and is maintained on memory untill it expires. Wouldn't it be better to set propagation=end? View the original post :

[jboss-user] [JBoss Seam] - Re: Unwanted datamodel update on action cancel

2008-01-31 Thread javichi_fer
You are probably using an Extended Persistet Context. If you really need it try making the country field (the one you edit) a String property of some backing bean and dont use the Entity property directly. If the user clicks to save the country set the Entity property with the new value and

[jboss-user] [JBoss Seam] - Problem calling an action method at startup using the Observ

2007-11-07 Thread javichi_fer
Hi, Im trying to call an action method at startup using the Observer Annotation. The code is: @Stateless | @Name(initializator) | public class InitiatorBean implements InitiatorLocal { | | @Logger | private Log log; | |