Configuring a restrictive cookie path on WebLogic
About this task
To set the restrictive cookie path in Oracle WebLogic, complete the following:
Procedure
- Extract the
weblogic.xml
file from the war package where you want to add the restrictive cookie path. - Copy the extracted
weblogic.xml
file to the following location:
<INSTALL_DIR>/extensions/<WAR Package>
where <
WAR Package
> is the package for the deployed application. For example, this would typically be smcfs, sbc, and isccs for the , Sterling Business Center, and Sterling Call Center - Add the following to the
weblogic.xml
file:
<session-descriptor><session-param> <param-name>CookiePath</param-name> <param-value>/<context-path></param-value> </session-param> </session-descriptor>
where <context-path> is the context path for the deployed application. For example, this would typically be /smcfs, /sbc, and /isccs for the , Sterling Business Center, and Sterling Call Center
- Rebuild the EAR file.