ComException when writing to isolated storage

Add-in Express™ Support Service
That's what is more important than anything else

ComException when writing to isolated storage
 
stwxy75




Posts: 15
Joined: 2010-04-12
HI,

we have bought Add-In-Express for developing an IE-Toolbar.
Everything works fine so far.

But now we have tried to write to the IsolatedStorage from the toolbar:

XmlDocument xmlDoc = new XmlDocument();
IsolatedStorageFile isoStore = IsolatedStorageFile.GetUserStoreForDomain();

                
IsolatedStorageFileStream isoFile = new IsolatedStorageFileStream(RSSLib.RSSFileName, FileMode.Open, isoStore);

xmlDoc.Load(isoFile);



And now we are getting a COMException ...
Do you have any hints for me how I can write some user-specific files to to the system for later usage?

Thanks in advance

Best regards

Stefan

P.S.: I have also tried the following without access: IsolatedStorageFile isoStore = IsolatedStorageFile.GetUserStoreForAssembly();

P.P.S.: Please also have a look at: http://stackoverflow.com/questions/2626220/programming-an-ie-toolbar-where-to-save-user-related-files-isolatedstorage-does
Posted 12 Apr, 2010 18:01:30 Top
Andrei Smolin


Add-in Express team


Posts: 18825
Joined: 2006-05-11
Hi Stefan,

stwxy75 writes:
And now we are getting a COMException


Are there any other details?

Is it IE 7 or IE 8 with Protected mode on?


Andrei Smolin
Add-in Express Team Leader
Posted 14 Apr, 2010 08:38:17 Top