Re: Strange Sql exception accesing Wicket page

2008-01-27 Thread Johan Compagner
that looks like a database pool, where connections are in and after a while a specific connection isn't used for a long time and oracle terminates or makes in invalid. configure your database pool that way that you test the connection before it gives you the connection johan On Jan 26, 2008

Re: Strange Sql exception accesing Wicket page

2008-01-27 Thread Scott Swank
Yes, this is an improperly configured connection pool. In Tomcat you would look at these settings such as the following: timeBetweenEvictionRunsMillis numTestsPerEvictionRun minEvictableIdleTimeMillis - Scott On Jan 27, 2008 7:08 AM, Johan Compagner [EMAIL PROTECTED] wrote: that looks like a

Re: Strange Sql exception accesing Wicket page

2008-01-26 Thread Nino Saturnino Martinez Vazquez Wael
How do you store your dao? Is it a transient object on the page? regards nino [EMAIL PROTECTED] wrote: Hello: I have several bookmarkable links that would bring up page with data retrieved from database via JPA/TOPLINK (EntityManager is always created fresh evertime data is retrieved). The