Failed to start Silverlight application in private browser mode (incognito window)

I am running the silverlight app in google chrome (incognito window). It rests on a Silverlight boot image. I saw an exception in the developer's window console

Uncaught Error: Unhandled Error in Silverlight Application Operation not permitted.   at System.IO.IsolatedStorage.IsolatedStorageSecurityState.EnsureState()
   at System.IO.IsolatedStorage.IsolatedStorageFile.GetUserStoreForApplication()
   at System.IO.IsolatedStorage.IsolatedStorageSettings.get_ApplicationSettings()
   at SilverlightBlobApplication.MainPage..ctor()
   at SilverlightBlobApplication.App.Application_Startup(Object sender, StartupEventArgs e)
   at MS.Internal.CoreInvokeHandler.InvokeEventHandler(UInt32 typeIndex, Delegate handlerDelegate, Object sender, Object args)
   at MS.Internal.JoltHelper.FireEvent(IntPtr unmanagedObj, IntPtr unmanagedObjArgs, Int32 argsTypeIndex, Int32 actualArgsTypeIndex, String eventName, UInt32 flags)

I found an offer on the forum

"1. Inside the Silverlight player, right-click 2. Click Silverlight. 3. In the window that appears, select the" Application Store "tab. 4. In the next window, select the" Enable application store "checkbox 5. Click the" Delete all "button. 6 . Click “Yes." 7. Click “OK." 8. Click the browser button Refresh or Reboot to continue. "

but this does not solve my problem. I get the same error in Internet Explorer when using private browser mode. Please help. Thanks in advance.

+4
source share
1 answer

When you switch your browser to private mode, it does not allow you to use Silverlight in isolated storage. This is done by design in browsers, and as far as I know, there is nothing you can do about it.

+2
source

All Articles