public void service ( HttpServletRequest request, HttpServletResponse response ) throws ServletException, IOException {
PrintWriter out = response.getWriter();
out.println( "In HttpSessionEventGetSessionTest servlet<BR>" );
HttpSessionEventLog sl = new HttpSessionEventLog();
sl.resetLog();
HttpSession session = request.getSession( true );
String sessionId = session.getId();
String searchString = "The session id of the object created was=";
Enumeration result = sl.readFromLog();
while ( result.hasMoreElements() ) {
String tmp = ( String ) result.nextElement();
// see if line contains Session id, if so verify it matches