A potential workaround for portals that run in a Tomcat environment is to use a Valve to touch the session during client-initiated requests. To do this:
1) Create a Valve that does the same as the following:
package com.icesoft.faces.webapp.http.portlet;
import org.apache.catalina.valves.ValveBase;
import org.apache.catalina.connector.Request;
import org.apache.catalina.connector.Response;
import org.apache.catalina.Session;
import javax.servlet.ServletException;
import java.io.IOException;
public class TouchSessionValve extends ValveBase {
public void invoke(Request request, Response response) throws IOException, ServletException {
String reqURI = request.getRequestURI();
if( reqURI.endsWith("send-receive-updates"))
{
Session internalSession = request.getSessionInternal();
internalSession.access();
}
getNext().invoke(request,response);
}
}
2) Compile this (it depends on catalina.jar) and build it into a jar (e.g. icefaces-portlet-valve.jar) and put the jar into Tomcat's set of server libraries:
[tomcat-root]/server/lib/icefaces-portlet-valve.jar
You'll need to restart Tomcat for this to take effect.
3) Add a META-INF/context.xml file to your portlet archive. The contents of the context.xml file should look like this (match the fully qualified name to the Valve class you created):
<Context>
<Valve className="com.icesoft.faces.webapp.http.portlet.TouchSessionValve" />
</Context>
Now when you deploy and run your portlet application, each user-initiated request will "touch" the session and ensure that it doesn't expire prematurely.
Need to support doing our Ajax communication through the portal container.