Re: Jigsaw stops serving servlets

On Thu, 26 Aug 1999, brax wrote:
> We've got a similar problem, which might by a time-out problem, 
> for servlet serving.
> 
Hello all;

If it is a timing problem for loading the servlet --

Perhaps a work around would be to force Jigsaw to "pre-load" the servlet(s):
The method: getServletContext().getServlet("filename")
will cause Jigsaw to load a currently unloaded servlet.

Since "HotSpot" does not compile the code until (at least) a second invocation
of a method -- there will be two time delays to work around;  The first, when
the class is loaded and a second when "HotSpot" decides it is time to compile
the code.

Mike

Received on Thursday, 26 August 1999 07:58:40 UTC