System.Security.SecurityException
-
I have an application which works fine on my home computer, however when I try to run the same application over the network on the computer in the office I get an error An unhandled exception of type system.security.securityexception occurred in MSOTest001.exe Addtional information:System.Security.Permissions.SecurityPermission This error is driving me nuts...I hope there is someone who can advise me as of what to do. Thanks Regards Mohammed
-
I have an application which works fine on my home computer, however when I try to run the same application over the network on the computer in the office I get an error An unhandled exception of type system.security.securityexception occurred in MSOTest001.exe Addtional information:System.Security.Permissions.SecurityPermission This error is driving me nuts...I hope there is someone who can advise me as of what to do. Thanks Regards Mohammed
Hello, Does your test app access the file system or anything else like that? Running an app from a network share is a security risk. So .NET sandboxes the app and doesn't let it do certain things. If you try copying the application to the harddrive, does it still cause the security exception? To fix the problem of sandboxing you will need to grant the application permissions to run from the network. Hope this helps, Nathan --------------------------- Hmmm... what's a signature?