Re: ListChoice Crashing on 13th Load

2008-06-06 Thread Timo Rantalaiho
On Thu, 05 Jun 2008, wfroud wrote: > I've been having trouble getting my app to run for any reasonable period of > time without crashing. I've laid out a basic page that contains a > > ListChoice component, after loading this page 13 times (when I have more > components it's far less) it just han

Re: ListChoice Crashing on 13th Load

2008-06-06 Thread wfroud
.getString("Category")); } }); return results; } } And it works perfectly. -- View this message in context: http://www.nabble.com/ListChoice-Crashing-on-13th-Load-tp17672729p17687430.html Sent from the Wicket - User mail

Re: ListChoice Crashing on 13th Load

2008-06-05 Thread Eelco Hillenius
On Thu, Jun 5, 2008 at 8:44 AM, John Krasnay <[EMAIL PROTECTED]> wrote: > You are not closing your JDBC connections, and are therefore you are > running out of connections in your connection pool. Yep, probably something like that. > I would STRONGLY advise against using raw JDBC. You have no ide

Re: ListChoice Crashing on 13th Load

2008-06-05 Thread John Krasnay
this.category = category; > } > > public String getCategory() { > return category; > } > > public void setCategory(String category) { > this.category = category; > } > > public int

ListChoice Crashing on 13th Load

2008-06-05 Thread wfroud
very much for your time, much appreciated. Regards, Will -- View this message in context: http://www.nabble.com/ListChoice-Crashing-on-13th-Load-tp17672729p17672729.html Sent from the Wicket - User mailing list archive at Nabble.com. ---