Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: noted that Connector emptySessionPath is configured in CATALINA_BASE/conf/server.xml

...

Jasig portlets, as well as many other popular JSR-168 portlets, rely on the ability to share user session data between the portal web application and portlet applications. To enable this feature in Tomcat, you must add the emptySessionPath="true" parameter to the in-use connector (configured in Tomcat 6 in CATALINA_BASE/conf/server.xml ).

Code Block
xml
xml
titleExample Tomcat Connector Configuration
<Connector port="8080" protocol="HTTP/1.1"
    connectionTimeout="20000" redirectPort="8443" emptySessionPath="true"/>

...