JonnyPoet
July 27th, 2008, 04:05 PM
Hi friends !
I'm trying to access Isolated storage. For learning reasns I have done an console application
namespace IsolatedStorage {
class Program {
static void Main(string[] args) {
IsolatedStorageFile userStore = IsolatedStorageFile.GetUserStoreForApplication();
//...
This throws the exceptin telling me that the Application-Idendity of the caller couldn't be defined. ( Maybe a bit different, because difficult to translate ) The code is from an example in a MS book for exam 70-536
This seems me to be a security issue, but there is nothing really helpful for me to be found in calling the help regarding this error. ( This is in Chapter 2 and all security things are in chapter 12 ! Far away from my actual knowledge about this.
Anyone knows what to do to get this working ?
BTW I'm using VS 2005 and Vista as OS
I'm trying to access Isolated storage. For learning reasns I have done an console application
namespace IsolatedStorage {
class Program {
static void Main(string[] args) {
IsolatedStorageFile userStore = IsolatedStorageFile.GetUserStoreForApplication();
//...
This throws the exceptin telling me that the Application-Idendity of the caller couldn't be defined. ( Maybe a bit different, because difficult to translate ) The code is from an example in a MS book for exam 70-536
This seems me to be a security issue, but there is nothing really helpful for me to be found in calling the help regarding this error. ( This is in Chapter 2 and all security things are in chapter 12 ! Far away from my actual knowledge about this.
Anyone knows what to do to get this working ?
BTW I'm using VS 2005 and Vista as OS