Essentially, you just need to somehow configure the server to store the session in a cookie without a path. In the case of Tomcat, you can simply set the emptySessionPath attribute of the <Connector> element to true in /conf/server.xml . Also see this Tomcat configuration link .
<Connector ... emptySessionPath="true">
This, however, affects all webcams deployed on the same server.
Refresh . Since you are actually using Websphere (which uses Tomcat under the hoods), you need to modify the Tomcat connector in Websphere config.xml to include the following attribute:
<attribute name="emptySessionPath">true</attribute>
Balusc
source share