Re: T5: HibernateEntityValueEncoder nullpointerException after Tapestry update

2009-11-04 Thread buckofive
Hi, Was this issue ever resolved or is there a JIRA open for it (I couldn't find one)? We are experiencing this exact same scenario ie, Moving from 5.0 to 5.1 and using a composite-id entity in a loop. thanks, B -- View this message in context: http://old.nabble.com/T5%3A-HibernateEntityVal

Re: T5: HibernateEntityValueEncoder nullpointerException after Tapestry update

2009-11-04 Thread buckofive
Hi, Was this issue ever resolved or is there a JIRA open for it (I couldn't find one)? We are experiencing this exact same scenario ie, Moving from 5.0 to 5.1 and using a composite-id entity in a loop. thanks, B -- View this message in context: http://old.nabble.com/T5%3A-HibernateEntityValue

Re: T5: HibernateEntityValueEncoder nullpointerException after Tapestry update

2009-11-04 Thread buckofive
Hi, Was this issue ever resolved or is there a JIRA open for it (I couldn't find one)? We are experiencing this exact same scenario ie, Moving from 5.0 to 5.1 and using a composite-id entity in a loop. thanks, B -- View this message in context: http://old.nabble.com/T5%3A-HibernateEntityValue

Re: T5: HibernateEntityValueEncoder nullpointerException after Tapestry update

2009-08-19 Thread Britske
I'm not sure if HibernateEntityValueEncoder called PersistentClass.getIdentifierProperty() before (in 5.0.x) when my code worked... getIdentifierProperty() returns an instance of hibernate.mapping.Property which may be a Composite ID (which seems to be the official name for multi-column ids). In

Re: T5: HibernateEntityValueEncoder nullpointerException after Tapestry update

2009-08-19 Thread Ulrich Stärk
This /seems/ to be a Hibernate issue. PersistentClass.getIdentifierProperty() is apparently returning null. On second thought this seems just natural since there is no property representing your Id. Uli On 19.08.2009 12:39 schrieb Britske: I'm in the process of updating from 5.0.17 to 5.1.0.

T5: HibernateEntityValueEncoder nullpointerException after Tapestry update

2009-08-19 Thread Britske
I'm in the process of updating from 5.0.17 to 5.1.0.5 and breaking my head on this one: Getting a NullPointerException in HibernateEntityValueEncoder when trying to loop a hibernate Entity where the entity has a multi-column id. I actually have this with every entity with a multi-column id so