RE: [T5] Cannot persist field exception

2007-11-29 Thread Jean-Philippe Steinmetz
So I've finally narrowed it down to the Palette component the page uses. When I remove the Palette it doesn't give errors. When its on screen I get errors. This is the error I now get when I try and submit the form... java.lang.NullPointerException Stack trace *

Re: [T5] Cannot persist field exception

2007-11-29 Thread Howard Lewis Ship
Don't see anything obvious, he Palette itself does not have any persistent fields. It must be some parameter of the Palette, tied to a persistent field in some way. On Nov 29, 2007 3:40 PM, Jean-Philippe Steinmetz [EMAIL PROTECTED] wrote: So I've finally narrowed it down to the Palette

Re: [T5] Cannot persist field exception

2007-11-28 Thread Josh Canfield
. Very strange indeed. Not even a stack trace. -Original Message- From: jeffrey ai [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 21, 2007 2:42 PM To: users@tapestry.apache.org Subject: Re: [T5] Cannot persist field exception I think you are missing t:value in your

RE: [T5] Cannot persist field exception

2007-11-27 Thread Jean-Philippe Steinmetz
PROTECTED] Sent: Wednesday, November 21, 2007 2:42 PM To: users@tapestry.apache.org Subject: Re: [T5] Cannot persist field exception I think you are missing t:value in your template. It should be : input t:type=TextField t:id=username t:value=username t:validate=required size=30

RE: [T5] Cannot persist field exception

2007-11-21 Thread Jean-Philippe Steinmetz
Is there anyone that can help with this problem? Thanks -Original Message- From: Jean-Philippe Steinmetz [mailto:[EMAIL PROTECTED] Sent: Friday, November 16, 2007 1:36 PM To: 'Tapestry users' Subject: [T5] Cannot persist field exception Hi All, I'm getting the following

RE: [T5] Cannot persist field exception

2007-11-21 Thread Jean-Philippe Steinmetz
Subject: Re: [T5] Cannot persist field exception full stack trace ? On Nov 21, 2007 10:17 PM, Jean-Philippe Steinmetz [EMAIL PROTECTED] wrote: Is there anyone that can help with this problem? Thanks -Original Message- From: Jean-Philippe Steinmetz [mailto:[EMAIL PROTECTED

Re: [T5] Cannot persist field exception

2007-11-21 Thread Davor Hrg
To: 'Tapestry users' Subject: [T5] Cannot persist field exception Hi All, I'm getting the following error Error persisting field Users/Create:username: java.lang.NullPointerException In my page class I have... @Persist private String username; public String getUsername

Re: [T5] Cannot persist field exception

2007-11-21 Thread jeffrey ai
Steinmetz -- View this message in context: http://www.nabble.com/-T5--Cannot-persist-field-exception-tf4824029.html#a13887482 Sent from the Tapestry - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL

[T5] Cannot persist field exception

2007-11-16 Thread Jean-Philippe Steinmetz
Hi All, I'm getting the following error Error persisting field Users/Create:username: java.lang.NullPointerException In my page class I have... @Persist private String username; public String getUsername() { return username; } public void setUsername(String username) { this.username =