[jboss-user] [JBoss Seam] - Re: EntityHome persist problem

2007-02-16 Thread codelion
While I didn't look close enough to determine whether there are other problems, from my own experience I know sooner or later you could run into a problem with that factory being invoked only once in a conversation, and hence your factory made instance not being the same as the one home uses.

[jboss-user] [JBoss Seam] - Re: EntityHome persist problem

2007-02-16 Thread petemuir
Put a h:message component on the selectOneListbox (or better still keep a h:messages component running for the whole page during devel) and check what validation/update/conversion errors you are getting. And I've never had a problem with the style the ref manual recommends for EntityHome's and

[jboss-user] [JBoss Seam] - Re: EntityHome persist problem

2007-02-16 Thread petemuir
1) Make sure you are in a conversation 2) components.xml IIRC but that error is more serious and means the entityconverter hasn't been able do its job. Make sure you are using 1.1.6 not 1.1.5. Are you getting that error when you don't select an option? View the original post :

[jboss-user] [JBoss Seam] - Re: EntityHome persist problem

2007-02-16 Thread dustismo
Thanks for the tips. I am using 1.1.6 and I don't get that error when nothing is selected. Any other suggestions on how to debug this? Oh, and I am using Icefaces 1.5.3.. thanks much, Dustin View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4017832#4017832

[jboss-user] [JBoss Seam] - Re: EntityHome persist problem

2007-02-16 Thread codelion
Pete, To get the problem I saw you need to do this as I got to do when I started from a seam-generated project a couple weeks ago (things changed in seam-gen since, I think now there is join instead of begin): From a list view (with query) go to create new entity page with a propagation

[jboss-user] [JBoss Seam] - Re: EntityHome persist problem

2007-02-16 Thread codelion
Not sure about all the details now, but the problem was real. I clearly had it display in the view fields from the factory made instance and from the home.instance, and they were two separate instances. I showed the screen to a colleague. Since I've stopped using the factory made instance I