Administrator
|
With the proxy portlet, your forms work in a *servlet* environment. That environment can be a completely separate servlet container, or it can be within the same servlet container which runs Liferay (usually Tomcat). Either way, the session accessed will be that of a servlet.
The proxy portlet connects to the Form Runner runtime running in that servlet environment via HTTP. If the servlet container is remote, there can be no sharing of session at all between the proxy portlet and the forms.
If the servlet container is local, there could possibly be some kind of sharing as the two will work in the same JVM. But note that the proxy portlet's session object will be different from the forms' session. So here too I wouldn't expect session sharing to work.
-Erik
|