Request for the permission of type 'System.Net.Web
hi
We are using some class in .NET like
System.Net
System.Net.Sockets
in our page. We used these classes to get the file from another ftp server, but we are getting an error regarding security.
like
Security Exception
Description: The application attempted to perform an operation not allowed by the security policy. To grant this application the required permission please contact your system administrator or change the application's trust level in the configuration file.
Exception Details: System.Security.SecurityException: Request for the permission of type 'System.Net.WebPermission, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' failed.
We also tried to solve this security issue by adding some permission tags in web.config file like
<location allowOverride="true">
<system.web>
<trust level="Full"/>
Server Error in '/' Application.
--------------------------------------------------------------------------------
Configuration Error
Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately.
Parser Error Message: This configuration section cannot be used at this path. This happens when the site administrator has locked access to this section using <location allowOverride="false"> from an inherited configuration file.
Source Error:
Line 4: <system.web>
Line 5:
Line 6: <trust level="Full"/>
Line 7:
Line 8: <!-- DYNAMIC DEBUG COMPILATION
Even this didn't help us it gives some other error like "Administrator has locked the access". Please
any one can suggest me
--------------------------------------------------------------------------------
Paranthaman R
|