Re: One step further

Its always useful to put a 
try {
	System.err.println("init called");
	 .... 
} catch(Error e ){
	 e.printStackTrace();
}

 around the content of your servlets
init() method temporarily to see if any problems there.

-- 
Chris Turner, http://www.cycom.co.uk/

Received on Wednesday, 9 February 2000 16:14:44 UTC