Part 1: How to destroy Siebel user’s session outside Start.swe

Problem Description:

The architecture has OAS 10.1.4.3, OAM 10.1.4.3, OID version is 10.1.4.3, Seibel 7.8.2 and portal11g installed in production server node. Portal and CRM are integrated with OAM.From portal application we lunching Siebel CRM application. The same user replicating in CRM application after login and logout from portal. So planned to destroy the cookies in CRM application and I manually called the CRM logoff template. Its working fine but its took more time to destroy the cookies and as well its showing the launching popup window.  Because start.swe is web engine it will process the templates so it will take more time to process. After I have planned to destroy the cookies from outside of start.swe.

 Solution :By default Siebel uses session cookie to track the session.  URL Session tracking uses URL Query String to keep track of the session id instead of a session cookie.  Therefore when the browser window is closed, the session tracking ID will also be lost (not browser session persistent like the session cookie). 

Workarounds: 

In your environment, please try the following :
In [swe] section of the eapps.cfg, add the following line:
[swe] SessionTracking = URL

If you already have SessionTracking entry, please change it to URL.(if SessionTracking = URL does not work, please try :
SessionTracking = URLSession
URLSession = TRUE
CookieSession = FALSE
).
You will need to bounce the web server and Siebel server for this to take effect.
Hope this will helps.

About the Author sarath

An Oracle Identity and Access Management professional, having working on Oracle Access Manager Single Sign-On implementations, Installation/Configuration of Identity Server, Web Pass, Web Gate, Access Gate, Policy Manager, Access Server, Policy Domains, Authentication /Authorization schemes, Single Sign-On (single and multi-domain), OIM, OVD, OID, OAAM, OIF, High Availability/Failover/ SSL deployment.

Leave a Comment:

2 comments
» Part 2:How to destroy Siebel user’s session outside Start.swe Online Apps DBA: One Stop Shop for Apps DBA’s says June 22, 2011

[…] Hi all, today I have faced some strange issue. Before describing about issue please refer this post .As per mentioned in that post I have changed SessionTracking  parameter value equal to ‘URL’ […]

Reply
rakesh kumar says June 29, 2011

Thanks for this information,it was really helpful for my company work.

Reply
Add Your Reply

Not found