There sure is a lot going on here. It'll give it a shot though. I've been through this a couple of times, and don't see where you ever update your testactions datamodel component. @Factory only initializes components that aren't yet defined in any scope. In your case you don't seem to update testactions in any action listener, and your testactions component has session scope. Once set, your @Factory has done all it's going to do.
Try either: 1. Doing something in showListForDevelopers.select() 2. Setting the scope of your testactions to EVENT (@DataModel(scope=ScopeType.EVENT)) so that you [EMAIL PROTECTED] on each request. I'd probably go with #1 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3929490#3929490 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3929490 ------------------------------------------------------- This SF.Net email is sponsored by xPML, a groundbreaking scripting language that extends applications into web and mobile media. Attend the live webcast and join the prime developer group breaking into this new coding territory! http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642 _______________________________________________ JBoss-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/jboss-user
