Hi, Servlets are stateless and they must extend javax.servlet.http.HttpServlet, therefore I'm afraid the idea of manager class is probably unrealistic.
The stuff you want to achieve normally works by either placing objects into the HTTP session (user-bound) or attaching them to your application context (application-bound). Regards, Mindaugas On Tue, Apr 21, 2009 at 5:01 PM, David Seltzer <dselt...@tveyes.com> wrote: > Hi All, > > Sorry for the slightly off-topic question, but I've just run into a gap > in my understanding of Servlet programming. > > The question: Is it possible for two servlets to share access to an > instance of IndexSearcher or an IndexReader? I'm thinking about setting > up a Search servlet to provide XML search results and a Statistics > servlet to provide numeric statistics based on the same data. > > I imagine the right way to do it is to make both servlets child classes > of a manager class, but I'm not sure how that would look. I'm also not > sure how to configure tomcat in this scenario? > > -Dave > > --------------------------------------------------------------------- > To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org > For additional commands, e-mail: java-user-h...@lucene.apache.org > > --------------------------------------------------------------------- To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org For additional commands, e-mail: java-user-h...@lucene.apache.org