Re: T5 Trouble editing component parameter with beaneditform

2007-06-22 Thread Bill Holloway
These are beaneditforms editing credit card info, etc. I'll change my builder methods to re-insert the tap-hibernate form of the DAOs (yay, tap-ioc!). Bill On 6/22/07, Howard Lewis Ship <[EMAIL PROTECTED]> wrote: Are you detaching objects between requests? My strategy would be to store object

Re: T5 Trouble editing component parameter with beaneditform

2007-06-22 Thread Howard Lewis Ship
Are you detaching objects between requests? My strategy would be to store object ids and re-acquire objects on each new request. On 6/22/07, Bill Holloway <[EMAIL PROTECTED]> wrote: That's what I'm thinking: The session opened for the action request is still open when the render request comes

Re: T5 Trouble editing component parameter with beaneditform

2007-06-22 Thread Bill Holloway
That's what I'm thinking: The session opened for the action request is still open when the render request comes and opens its session. Thus, my person object, which is one-to-many with subscription payment methods, triggers the collection error. I haven't figured out how to debug this one. My h

Re: T5 Trouble editing component parameter with beaneditform

2007-06-22 Thread Howard Lewis Ship
Could this be related to the split between the action request and the render request? On 6/22/07, Bill Holloway <[EMAIL PROTECTED]> wrote: wait wait...this is a hibernate error. i wanna go back to tapestry-hibernate, but then i get "Illegal attempt to assoc. collection w/ 2 open sessions". Gr

Re: T5 Trouble editing component parameter with beaneditform

2007-06-22 Thread Bill Holloway
wait wait...this is a hibernate error. i wanna go back to tapestry-hibernate, but then i get "Illegal attempt to assoc. collection w/ 2 open sessions". G. On 6/22/07, Bill Holloway <[EMAIL PROTECTED]> wrote: Hmmm. Well, now the error is different. Here's my page template: http://tapest

Re: T5 Trouble editing component parameter with beaneditform

2007-06-21 Thread Bill Holloway
Hmmm. Well, now the error is different. Here's my page template: http://tapestry.apache.org/schema/tapestry_5_0_0.xsd";> In EditCreditCard.java, onActivate (calling a DAO) gets a good value for _creditCardInfo. Know that by debugging. Here's some of the error p

Re: T5 Trouble editing component parameter with beaneditform

2007-06-21 Thread Howard Lewis Ship
Thanks appreciated! On 6/21/07, Daniel Jue <[EMAIL PROTECTED]> wrote: Thanks for your hard work Howard! On 6/21/07, Howard Lewis Ship <[EMAIL PROTECTED]> wrote: > ... and I'm uploading new snapshots right now. > > On 6/21/07, Howard Lewis Ship <[EMAIL PROTECTED]> wrote: > > Don't add another bu

Re: T5 Trouble editing component parameter with beaneditform

2007-06-21 Thread Daniel Jue
Thanks for your hard work Howard! On 6/21/07, Howard Lewis Ship <[EMAIL PROTECTED]> wrote: ... and I'm uploading new snapshots right now. On 6/21/07, Howard Lewis Ship <[EMAIL PROTECTED]> wrote: > Don't add another bug; I've checked in a change under TAPESTRY-1423. > > On 6/21/07, Howard Lewis

Re: T5 Trouble editing component parameter with beaneditform

2007-06-21 Thread Howard Lewis Ship
... and I'm uploading new snapshots right now. On 6/21/07, Howard Lewis Ship <[EMAIL PROTECTED]> wrote: Don't add another bug; I've checked in a change under TAPESTRY-1423. On 6/21/07, Howard Lewis Ship <[EMAIL PROTECTED]> wrote: > Ooh. I think I see what's happening ... I may need to re-work

Re: T5 Trouble editing component parameter with beaneditform

2007-06-21 Thread Howard Lewis Ship
Don't add another bug; I've checked in a change under TAPESTRY-1423. On 6/21/07, Howard Lewis Ship <[EMAIL PROTECTED]> wrote: Ooh. I think I see what's happening ... I may need to re-work the fix a little. I fixed in in terms of the PropertyBindingFactory, but not as used here, to order proper

Re: T5 Trouble editing component parameter with beaneditform

2007-06-21 Thread Howard Lewis Ship
Ooh. I think I see what's happening ... I may need to re-work the fix a little. I fixed in in terms of the PropertyBindingFactory, but not as used here, to order properties for the BeanModel. Please add a bug! On 6/21/07, Howard Lewis Ship <[EMAIL PROTECTED]> wrote: Interesting! I thought t

Re: T5 Trouble editing component parameter with beaneditform

2007-06-21 Thread Howard Lewis Ship
Interesting! I thought the bug was fixed. It's supposed to be working its way up the class hierarchy until it gets to a class it knows about. I wonder what's up? On 6/21/07, Bill Holloway <[EMAIL PROTECTED]> wrote: Should have included this. This is from my Eclipse console upon closing/re-op

Re: T5 Trouble editing component parameter with beaneditform

2007-06-21 Thread Bill Holloway
Should have included this. This is from my Eclipse console upon closing/re-opening the project: 6/21/07 7:30:28 PM CDT: [DEBUG] tapestry-core: resolved to version 5.0.5-20070616.164652-6 from repository tapestry-snapshots Bill On 6/21/07, Howard Lewis Ship <[EMAIL PROTECTED]> wrote: This is a

Re: T5 Trouble editing component parameter with beaneditform

2007-06-21 Thread Bill Holloway
Eeek. I'm in 5.0.5-SNAPSHOT: 5.0.5-SNAPSHOT On 6/21/07, Howard Lewis Ship <[EMAIL PROTECTED]> wrote: This is a known bug in 5.0.4 that should be fixed in the 5.0.5-SNAPSHOT. It relates to some classloader issues caused by the mix of Tapestry, Javassist, Hibernate, and CGLIB. On 6/21/07,

Re: T5 Trouble editing component parameter with beaneditform

2007-06-21 Thread Howard Lewis Ship
This is a known bug in 5.0.4 that should be fixed in the 5.0.5-SNAPSHOT. It relates to some classloader issues caused by the mix of Tapestry, Javassist, Hibernate, and CGLIB. On 6/21/07, Bill Holloway <[EMAIL PROTECTED]> wrote: I have a component that needs to edit an object passed in as a para