Loading User Information from Channel 9
Something went wrong getting user information from Channel 9
Loading User Information from MSDN
Something went wrong getting user information from MSDN
Loading Visual Studio Achievements
Something went wrong getting the Visual Studio Achievements
Chris Wilson: Inside IE8 Beta 1 For Developers
Mar 05, 2008 at 1:32 PMI wish that they would give us the ability to clear the SSL cache from Javascript like in the mozilla base browers. This is very imported when using client certificates store on a smart card to authentication users to a site. There is no way to clear/close the SSL on logout, unless you close IE. When you revised the site you are not prompted for PIN code again, becuse the SSL session is alive.
In mozilla you can for example do:
function register() {
window.crypto.enableSmartCardEvents=true;
document.addEventListener("smartcard-remove",<callback>,false);
};
For closing SSL session:
function logout() {
window.crypto.logout
};
There is noway to clear SSL cache even from a ActiveX Control (With calling something undocumented)
-gk