473,394 Members | 1,932 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,394 software developers and data experts.

.NET security exception

I get the following exception trying to open a folder using the
FolderBrowserDialog control in Visual Studio 2005. This only happens when the
code is running on a mapped drive. How can I avoid this?

System.Security.SecurityException occurred
Message="Request for the permission of type
'System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.0.0,
Culture=neutral, PublicKeyToken=b77a5c561934e089' failed."

Source="mscorlib"
StackTrace:
at System.Security.CodeAccessSecurityEngine.Check(Obj ect demand,
StackCrawlMark& stackMark, Boolean isPermSet)
at System.Security.CodeAccessPermission.Demand()
at System.Windows.Forms.FolderBrowserDialog.get_Selec tedPath()
at IfGen_Reader.Form1.openToolStripMenuItem_Click(Obj ect sender,
EventArgs e)

Any help would be appreciated!


Jun 26 '07 #1
3 4289
Hi,
IIRC the default install do not allow programs running from the network to
access the filesystem. You need to modify the permission from the Adm. tools

"Chris" <Ch***@discussions.microsoft.comwrote in message
news:D4**********************************@microsof t.com...
>I get the following exception trying to open a folder using the
FolderBrowserDialog control in Visual Studio 2005. This only happens when
the
code is running on a mapped drive. How can I avoid this?

System.Security.SecurityException occurred
Message="Request for the permission of type
'System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.0.0,
Culture=neutral, PublicKeyToken=b77a5c561934e089' failed."

Source="mscorlib"
StackTrace:
at System.Security.CodeAccessSecurityEngine.Check(Obj ect demand,
StackCrawlMark& stackMark, Boolean isPermSet)
at System.Security.CodeAccessPermission.Demand()
at System.Windows.Forms.FolderBrowserDialog.get_Selec tedPath()
at IfGen_Reader.Form1.openToolStripMenuItem_Click(Obj ect sender,
EventArgs e)

Any help would be appreciated!


Jun 26 '07 #2
I'm not familiar with out to set permissions in the Adm. tools. Can you
extrapolate?

"Ignacio Machin ( .NET/ C# MVP )" wrote:
Hi,
IIRC the default install do not allow programs running from the network to
access the filesystem. You need to modify the permission from the Adm. tools

"Chris" <Ch***@discussions.microsoft.comwrote in message
news:D4**********************************@microsof t.com...
I get the following exception trying to open a folder using the
FolderBrowserDialog control in Visual Studio 2005. This only happens when
the
code is running on a mapped drive. How can I avoid this?

System.Security.SecurityException occurred
Message="Request for the permission of type
'System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.0.0,
Culture=neutral, PublicKeyToken=b77a5c561934e089' failed."

Source="mscorlib"
StackTrace:
at System.Security.CodeAccessSecurityEngine.Check(Obj ect demand,
StackCrawlMark& stackMark, Boolean isPermSet)
at System.Security.CodeAccessPermission.Demand()
at System.Windows.Forms.FolderBrowserDialog.get_Selec tedPath()
at IfGen_Reader.Form1.openToolStripMenuItem_Click(Obj ect sender,
EventArgs e)

Any help would be appreciated!




Jun 27 '07 #3
Hi,

Go to admin. tools and select .Net Wizard, select "Adjust .net security"
Put full trust to intranet

"Chris" <Ch***@discussions.microsoft.comwrote in message
news:CD**********************************@microsof t.com...
I'm not familiar with out to set permissions in the Adm. tools. Can you
extrapolate?

"Ignacio Machin ( .NET/ C# MVP )" wrote:
>Hi,
IIRC the default install do not allow programs running from the network
to
access the filesystem. You need to modify the permission from the Adm.
tools

"Chris" <Ch***@discussions.microsoft.comwrote in message
news:D4**********************************@microso ft.com...
>I get the following exception trying to open a folder using the
FolderBrowserDialog control in Visual Studio 2005. This only happens
when
the
code is running on a mapped drive. How can I avoid this?

System.Security.SecurityException occurred
Message="Request for the permission of type
'System.Security.Permissions.FileIOPermission, mscorlib,
Version=2.0.0.0,
Culture=neutral, PublicKeyToken=b77a5c561934e089' failed."

Source="mscorlib"
StackTrace:
at System.Security.CodeAccessSecurityEngine.Check(Obj ect demand,
StackCrawlMark& stackMark, Boolean isPermSet)
at System.Security.CodeAccessPermission.Demand()
at System.Windows.Forms.FolderBrowserDialog.get_Selec tedPath()
at IfGen_Reader.Form1.openToolStripMenuItem_Click(Obj ect sender,
EventArgs e)

Any help would be appreciated!




Jun 27 '07 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: James B | last post by:
OMA (Outlook Mobile Access) under Exchange is giving me a System.Security.SecurityException error. From what I gather this is a problem with the security level under which the OMA application is...
0
by: James B | last post by:
OMA (Outlook Mobile Access) under Exchange is giving me a System.Security.SecurityException error. From what I gather this is a problem with the security level under which the OMA application is...
3
by: Chua Wen Ching | last post by:
Hi there, I had applied this security permissions in my class library based on fxcop standards. Before namespace: using System.Runtime.InteropServices; using System.Security.Permissions;
19
by: Diego F. | last post by:
I think I'll never come across that error. It happens when running code from a DLL that tries to write to disk. I added permissions in the project folder, the wwwroot and in IIS to NETWORK_SERVICE...
0
by: Carl Gilbert | last post by:
Hi I am trying to get an online gallery to work (www.ngallery.org). I have managed to get it all working on my local host but I can not get it to work on my web space. The site can be found...
5
by: CyberLotus | last post by:
Hi, I've created a web application and through this I want to import Excel data to database. Following is the code that I've written, ...
2
by: KaNos | last post by:
Hello world, I've made a webservice (c# v2) to install in a server IIS 6 on a Windows 2000 last SP. We can use the webservice in local, throw the pages wich present the methods, with a windows...
3
by: Mike | last post by:
Hi I have problem as folow: Caught Exception: System.Configuration.ConfigurationErrorsException: An error occurred loading a configuration file: Request for the permission of type...
8
by: =?Utf-8?B?TWFuanJlZSBHYXJn?= | last post by:
Hi, I created a web service and hosted it in Windows Services. It is working fine. Now I am trying to implement the X509 certificates for message layer security. But it is throwing the following...
5
by: Henry Stock | last post by:
I am trying to understand the following error: Any thing you can tell me about this is appreciated. Security Exception Description: The application attempted to perform an operation not allowed...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.