[jboss-user] [JBoss Seam] - Re: Binding Component to Backing Bean Property

2007-10-16 Thread mikeeprice
I have a session bean that basically contains the logic for a crud app so I had put the property that I was using for the component binding in that bean. Based on your comments I created a separate stateless bean scoped EVENT and put the bind-to property in there and now it works fine. Thank Yo

[jboss-user] [JBoss Seam] - Re: Binding Component to Backing Bean Property

2007-10-13 Thread matt.drees
Also, you might want to consider binding to an event-scoped component, not a session-scoped one. It's what the docs recommend, anyway. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4094943#4094943 Reply to the post : http://www.jboss.com/index.html?module=b

[jboss-user] [JBoss Seam] - Re: Binding Component to Backing Bean Property

2007-10-13 Thread matt.drees
That doesn't look like quite the same problem; it looks (from the stacktrace) like you have an @Out(scope=Conversation) somewhere. Try setting it to required=false; IIRC, that will prevent the IllegalStateException from being thrown when the context isn't available. View the original post :