The funny thing is, if I use @In(create=true) I get this: In attribute requires value for component:
I wanna outject a field from Component A and inject it into Component B during a request. This works. From this time on, the injected field should keep its value during all the next requests. But because the value isn't in the context any more, Seam tries to inject null. So I've to use @In(required=false) to avoid the exception. But this way, Seam injects null, overwriting the existing value. To avoid this, I thought "Let's outject the field", and annotated it @Out. But it doesn't work. Seam furthermore tries to inject null. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3930304#3930304 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3930304 ------------------------------------------------------- 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
