Disabling Cookies to work with multiple sessions and browser tabs
877464May 28 2013 — edited May 31 2013JDeveloper Version 11.1.2.3.0
Browser Versions IE 8, Mozilla 21 and Chrome 20
my requirement is i should open the application in multiple tabs and browsers without any issues.
i have followed all the posts of adf forums and google to open the application in multiple sessions and browser tabs and i did the same and i have/had acheived the required functionality
opening the application with new sessions in every tab.
application is working fine in both IE and Chrome Browsers incase of Firefox i am facing the below issue.
i have a table and i have defined custom selection listener on table and whenever i am selecting command link in the first column i need to set values to pageflowscope using setpropertylistener and it should call action listener of this command link along with table selection listener.
in ie,chrome first table selection listener event, af: propertylistener, af:commandlink action listener are working in sequnece and i am getting the desired result
but in firefox table selection event is not getting triggered and the remaining two are working
if i am clicking other than command link in that row table selection listener is getting invoked and after clicking over properties link i am getting result but incase of ie in single click everything is working.
if i enable cookies it is working fine in firefox too but in each tab the same session is getting retained .
is there any relation ship between cookie enabling option and table selection listener in firefox brower window ?
or is there open bug in af:table with respect to firefox ?
my application is designed to open the module in a dynamic region(BTF) whenever the corresponding menu is selected. and i am getting this btf selection from a session bean where i will call taskflow.parsetaskflow('taskflow') to load the dynacmic region.
if i am opening a new tab the old session information is getting shared with the new tab and what ever the transaction i am doing in the new tab is getting reflected in first tab this i want to make it as independent so i have disabled cookies at server
every flow is working fine after disbling cookies at server but in firefox one critical transaction is getting failed.
is there any workaround ?