Hi,
With the new build 1.7rc1, the identification system of webmail ICEFaces example project don't work now.
The problem come from here:
index.jsp file of example project
Code:
<html>
<head>
<title></title>
</head>
<body>
<% if(session.getAttribute("LoggedIn")=="true"){ %>
<jsp:forward page="webmail.iface" />
<% }else{
session.invalidate();%>
<jsp:forward page="login.iface" />
<% } %>
</body>
</html>
If I refresh the login page, I get one error because session is invalidated wehereas it was working fine with previous version.
Regards,
Bal.