Redirect to login page after session time out in webcenter portal
Hi all,
I am using webcenter portal framework application 11.1.1.6 . I need to redirect to login or public home page after session time out.When use click on ok on the popup that page has expired.
I tried filter approach from http://www.yenlo.nl/nl/adf-11g-session-handling-avoiding-adfc-12012-error/
But when i click ok.
if (adfCtrlState != null && (requestedSession == null || !currentWebSession.equalsIgnoreCase(requestedSession))) {
I am not able to pass this if condition. adfCtrlState is not null and both requested and currentWebsession is coming as equal.
How to handle this situtation.