How to avoid session sharing provided by IE8 programatically in java/j2ee application ?

Posted by Idiot on Stack Overflow See other posts from Stack Overflow or by Idiot
Published on 2010-06-03T07:23:27Z Indexed on 2010/06/03 7:34 UTC
Read the original article Hit count: 933

Microsoft, in an effort to make Internet Explorer 8 "more stable" and “faster”, have changed the underlying architecture of the browser and introduced a function called "Loosely-Coupled IE" (LCIE) which works on session sharing across TAB and new instances.

But session sharing may be fatal when some one is trying to do two different things at a time with the same application, e.g. like someone want to book one forward journey ticket and one return ticket at a time, at that time he will book 2 same tickets what he has not intended to.

PROBABLE SOLUTION ON IT

  1. While creating new window Instead of creating by clicking on icon or Ctrl+N we should use File -> New Session it will not happen.

  2. You can make a registry change on the client PC - adding the following. [HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main] “TabProcGrowth" = dword : 00000000 Will disable "Loosely Couple IE8"; IE8 then works as previous versions of IE.

But how i will do it programatically ?

© Stack Overflow or respective owner

Related posts about java

Related posts about internet-explorer-8