The scenario I am facing is that I have an ASP.NET web service (.NET 3.5) running on an W2k3 server which is using the CacheManager/IsolatedStorage store to store a persisted state variable. This configuration has been working fine for quite sometime until we changed the physical machine. Now whenver the [...] read more
Hi I have to store some hidden information in Isolated space. For that I am using System.IO.Isolated class like IsolatedStorageFile isf = System.IO.IsolatedStorage.IsolatedStorageFile.GetStore(IsolatedStorageScope.User | IsolatedStorageScope.Assembly, null, null); Stream writer = new IsolatedStorageFileStream(filename, FileMode.Create, isf); IFormatter formatter = new BinaryFormatter(); formatter.Serialize(writer, appCollection.ToString()); writer.Close(); It works fine in Windows XP but on [...] read more
I've hit an interesting problem with our .NET 4 application trying to access IsolatedStorage (GetMachineStoreForAssembly) on a Windows Server 2008 R2 machine for a new "administrator" account. Other users on this same machine can access it just fine. The first time the application is run under this new account and [...] read more
I am using OpenXML to generate an Excel document within a web application. It is working great for files < ~10mb For files generated with sizes great than 10mb I am getting the following exception... While I have some discussion of this issue on the web (some about using other [...] read more
I am using SAP SDK In Microsoft bot application. Its working fine for me in local emulator, but after publishing this bot application on azure portal I got this exception. > {"The type initializer for 'SAP.Logon.Core.LogonCore' threw an exception."} > Unable to create the store directory. (Exception from HRESULT: 0x80131468) [...] read more
On my website, excel download function is working fine for < 10k data rows. If the rows is about 25k, 30k, I receive the following error. Unable to create the store directory. (Exception from HRESULT: 0x80131468) And it's working fine on development server. read more