Re: xml parser errors

2006-09-08 Thread Larry Meadors
Daniel is right - you cannot create a property named 'Firstname' according to the java bean spec: getFirstname() defines a property named 'firstname'. Larry On 9/8/06, Daniel Pitts <[EMAIL PROTECTED]> wrote: If you read carefully, you'll see that there is no WRITEABLE property named "Firstna

Re: xml parser errors

2006-09-08 Thread Okan Çetin
Yes, i solved this. case-sensitive problem. On 9/8/06, Daniel Pitts <[EMAIL PROTECTED]> wrote: If you read carefully, you'll see that there is no WRITEABLE property named "Firstname" in class "com.domain.User" This means that your com.domain.User class doesn't have a "setFirstname" method. Al

RE: xml parser errors

2006-09-08 Thread Daniel Pitts
If you read carefully, you'll see that there is no WRITEABLE property named "Firstname" in class "com.domain.User" This means that your com.domain.User class doesn't have a "setFirstname" method. Also, the property should be start with lowercase, e.g. "firstname".   From: Okan Çetin [mailt