Hi everyone !
I had an application working under Websphere 3.5.4 and JDK 1.2.2.
This application used many session variables.
I have stopped working on it, and now that I want to use again, I get this stupid usual :
Unhandled error! You might want to consider having an error page to report such errors more gracefully
com.sun.jsp.JspException: Compilation failed
at javax.servlet.ServletException.(ServletException.java:49)
at com.sun.jsp.JspException.(JspException.java:29)
...
I try with a very very simple file :
<%@ page contentType="text/html"%>
<%@ page session="true"%>
<%
String name = request.getParameter( "nom" );
session.setAttribute( "theName", name );
%>
<HTML>
<HEAD>
<TITLE>Petit message</TITLE>
</HEAD>
<BODY>
<a href="TestSession.jsp">Lien</a>
</BODY>
</HTML>
The compilation always fails on the line with access to the session.
I have tried other access to the session object, but it semms that I cannot reach it any longer !
Can anyone help me, please ?
I really don't catch what the problem is !
Gaelle, from France.