Hi all,
Here I have this code lines in the DirectAction class, google chrome the session is restored.
but in Mozilla firefox a new session is created.
Why is this happening?
What do I have to do to make it works on firefox too?
public WOActionResults entidadesListAction() {
WOComponent nextPage = null;
Session session =(Session)session();
if (!session.isValidCiaId()) {
nextPage = pageWithName(SesionExpirada.class.getName());
} else {
nextPage = pageWithName (EntidadList.class.getName());
((EntidadList)nextPage).browsing = true;
((EntidadList)nextPage).addButton2 = true;
}
return nextPage;
}
Saludos.