Re: AW: AW: AW: JDO - Unable to build object instance

2003-12-23 Thread Gus Heck
Heck [mailto:[EMAIL PROTECTED] Gesendet: Samstag, 20. Dezember 2003 00:17 An: OJB Users List Betreff: Re: AW: AW: JDO - Unable to build object instance This may interest you: http://www.mail-archive.com/[EMAIL PROTECTED]/msg03320.html HTH, Gus

AW: AW: JDO - Unable to build object instance

2003-12-19 Thread Sebastian Muench
] Gesendet: Donnerstag, 18. Dezember 2003 21:20 An: OJB Users List Betreff: Re: AW: JDO - Unable to build object instance It might be because you havn't followed the javabean get/set pattern... you wrote: public String GetName() { public void SetName(String name) { but the standard pattern is public

Re: AW: AW: JDO - Unable to build object instance

2003-12-19 Thread Gus Heck
really don't know what to do anymore. -Ursprüngliche Nachricht- Von: Gus Heck [mailto:[EMAIL PROTECTED] Gesendet: Donnerstag, 18. Dezember 2003 21:20 An: OJB Users List Betreff: Re: AW: JDO - Unable to build object instance It might be because you havn't followed the javabean get/set

Re: AW: JDO - Unable to build object instance

2003-12-18 Thread Gus Heck
It might be because you havn't followed the javabean get/set pattern... you wrote: public String GetName() { public void SetName(String name) { but the standard pattern is public String getName() { public void setName(String name) { This probably causes the enhancer to not recognize your object

AW: JDO - Unable to build object instance

2003-12-17 Thread Sebastian Muench
Hi all, yes, I have the default public constructor. May it be, I missed some settings? I did: - the mapping in the Person.jdo (copied to target/classes/JDOTest/) - the mapping in the repository_jdo.xml (in target/test/ojb/) - the schema - creation in the hsqldb The build and enhance of the class