Re: NoSuchMethodException

2003-07-05 Thread Andre D Bonner
Is the internal Server TOMCAT?? or the Oracle Servlet container? If its the Oracle one, I suggest you look through the generated code/dependancies and remove all of the oracle specific stuff - Original Message - From: "Joe McGranaghan" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sa

Re: Running a class on startup - java newbie....

2003-07-01 Thread Andre D Bonner
p of my webapp. > > What I meant earlier about the methodology is if it would be better to use > some sort of listener (grey area to me) to await access to a resource and > then run versus creating a separate thread. > > Thanks for the ideas guys, keep 'em commin'!!! > &g

Re: Running a class on startup - java newbie....

2003-07-01 Thread Andre D Bonner
It is a thread that sits and calls a method every 5 minutes? while(true){ Thread.sleep(5 * 60 * 1000) // 5 minutes exactly // lookup my jdbc Datasource // do my jdbc checking? // releaseConnection // loop } -- Andre D Bonner Sun Certified Programmer for the

Re: Running a class on startup - java newbie....

2003-07-01 Thread Andre D Bonner
On 7/1/03 5:27 PM, "Ciramella, EJ" <[EMAIL PROTECTED]> wrote: > Am I missing the boat here? Is there no good way to do this? If there is a > particular methodology, please enlighten me. > > -Original Message- > From: Ciramella, EJ > Sent: Tuesday, July 01, 2003 4:38 PM > To: '[EMAIL PRO