Re: Threads in Tomcat

2012-05-21 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Vance, On 5/18/12 12:29 PM, Vance - wrote: > The servlet I have in mind for modification is the one responsible > for performing the search as well as for getting the next page of > search results. If one or more of the wikis is unavailable, I want >

RE: Threads in Tomcat

2012-05-21 Thread Casper Wandahl Schmidt
database). Med venlig hilsen/Kind regards Casper/Kalle -Original Message- From: Tim Watts [mailto:t...@cliftonfarm.org] Sent: 18. maj 2012 21:54 To: Tomcat Users List Subject: Re: Threads in Tomcat On Fri, 2012-05-18 at 12:14 -0400, Vance - wrote: > I'm maintaining a W

Re: Threads in Tomcat

2012-05-18 Thread Tim Watts
On Fri, 2012-05-18 at 12:14 -0400, Vance - wrote: > I'm maintaining a Web application for searching multiple wikis, this app > runs under Tomcat 6. I need to modify a servlet so it instantiates a > 'Thread' subclass to perform a wiki availability check every so often, say > every 30 minutes. Given

Re: Threads in Tomcat

2012-05-18 Thread Vance -
Chris, thanks for responding. The servlet I have in mind for modification is the one responsible for performing the search as well as for getting the next page of search results. If one or more of the wikis is unavailable, I want to display an error message on the search results page. The wiki av

Re: Threads in Tomcat

2012-05-18 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Vance, On 5/18/12 12:14 PM, Vance - wrote: > I'm maintaining a Web application for searching multiple wikis, > this app runs under Tomcat 6. I need to modify a servlet so it > instantiates a 'Thread' subclass to perform a wiki availability > check eve

Re: Threads in tomcat application.

2007-09-02 Thread Juha Laiho
Manivannan Palanichamy wrote: > I need to design a web application that may use threads. Thats, the web > application might have to read some 200 files from network. In order to > speed up the process, I've decided to use threads/thread pooling. But, > however I know it is not a good practice to us