ok, first of all the problem was the database connection with the geronimo-specific deployment descriptors. but after this was solved by help of your wiki i faced this
No registered metadata for type "class vt.bean.entity.Director" error. so the problem was, that in my application (which was first deployed on jboss) i have a 1:n relation between Directors and Movies. this relation i was modelling by an @ManyToOne annotation in Movie and a @OneToMany relation in Director (i don't really know why). this was accepted by jboss but in geronimo i got some error and when i finally pinpointed the error to the annotation i simply commented out the annotation... leaving the Collection<Movie> as attribute in the Director. that Collection was not annotated now, leading to the above mentioned error. while i was searching through deployment plans and descriptors over and over again changing values and attributes, i just realized the problem is in the app after i was modifying the "simple entity ejb" example from the documentation. thanks for your help, mario Jacek Laskowski wrote: > > On Jan 15, 2008 10:44 PM, the666pack <[EMAIL PROTECTED]> wrote: > > Wait. What was the attribute that stirred up the trouble? I must admit > I'm still unable to figure that out from the entire thread. > > Jacek > > -- > Jacek Laskowski > http://www.JacekLaskowski.pl > > -- View this message in context: http://www.nabble.com/Geronimo-2.0-openejb-postgresql-tp14710209s134p14873589.html Sent from the Apache Geronimo - Users mailing list archive at Nabble.com.
