OAM_JSESSIONID
Dears,
I ran into this document, while troubleshooting an issue --> http://docs.oracle.com/cd/E37115_01/doc.1112/e40782/webtier_im.htm#IMEDG2015
The document is talking about "Installing and Configuring Oracle Web Tier for an Enterprise Deployment". Looking into the virtual host configuration section, I found this as a location tag for oam:
##############################################
## Entries Required by Oracle Access Manager
##############################################
# OAM Configuration
<Location /oam>
SetHandler weblogic-handler
WLProxySSL ON
WLProxySSLPassThrough ON
WLCookieName OAM_JSESSIONID
WebLogicCluster IDMHOST1.mycompany.com:14100,IDMHOST2.mycompany.com:14100
</Location>
I'm aware that oam uses a different session cookie name "OAM_JSESSIONID", other than the WL default "JSESSIONID". I also know that mod_wl needs the directive "WLCookieName" when using a cookie name for a WL deployed application other than the default "JSESSIONID".