Hi All
How do you configure global.jsa on Oracle 9ias.
I have placed the global.jsa under public_html along with
my
jsp files.
Each jsp file is attempting to access a session attribute value,
but each time a value null is received.
Any ideas?.
Part of the jsp code is as follows:-
<%
try
{
accessLevel= new Integer((
String)session.getAttribute
(Constant.ACCESSLEVEL)).intValue();
}
catch(Exception e)
{
errMess="Error message:"+e+" accessLevel="+accessLevel;
}
%>
file global.jsa contains:-
<%@ page import="java.sql.*,test.Constant" %>
<event:session_OnStart>
<%
session.setAttribute(Constant.FIRSTNAME,"none");
session.setAttribute(Constant.SURNAME,"none");
session.setAttribute(Constant.ACCESSLEVEL,"0");
%>
</event:session_OnStart>
<event:session_OnEnd>
</event:session_OnEnd>