Wrox Programmer Forums
|
ASP.NET 2.0 Basics If you are new to ASP or ASP.NET programming with version 2.0, this is the forum to begin asking questions. Please also see the Visual Web Developer 2005 forum.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the ASP.NET 2.0 Basics section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old August 4th, 2008, 10:00 AM
Registered User
 
Join Date: Aug 2007
Posts: 4
Thanks: 0
Thanked 0 Times in 0 Posts
Default security problem asp net 2

 hi everyone! i am trying to upload asp net web site to goddady ...the site works good locally but than i upload it and try to brows i get :

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.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' failed.



after i searched the web i understand that goddady runs on medium level of security and for my site running good i need to set in AssemblyInfo.cs for my dll's with [assembly:AllowPartiallyTrustedCallers]..

i tried to add manually AssemblyInfo.cs with content of :

using System.Reflection;
using System.Runtime.CompilerServices;
using System.Security;



[assembly: AssemblyTitle("xxx")]
[assembly: AssemblyDescription("xxx")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("xxx")]
[assembly: AssemblyProduct("dal")]
[assembly: AssemblyCopyright("xxxx")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
[assembly:AllowPartiallyTrustedCallers]


[assembly: AssemblyVersion("1.0.0.0")]


but it still does not works and i get the same exception of security...

what i need to do that my site will run on medium security level on asp net and that is the right way to do it?

thank you !!!!

 
Old August 4th, 2008, 10:21 AM
planoie's Avatar
Friend of Wrox
 
Join Date: Aug 2003
Posts: 5,407
Thanks: 0
Thanked 16 Times in 16 Posts
Default

From the error message, this appears to be a problem with writing files. What are you doing in your application that writes files?

-Peter
compiledthoughts.com





Similar Threads
Thread Thread Starter Forum Replies Last Post
PageWise security in asp.net balesh.mind ASP.NET 2.0 Professional 1 February 29th, 2008 01:37 PM
Security In Asp.net 2.0 mallikalapati ASP.NET 2.0 Professional 2 February 11th, 2008 10:15 AM
Integrating Security with ASP and ASP.NET thenoseknows ASP.NET 2.0 Professional 1 July 25th, 2007 05:11 PM
ASP.NET Forms Auth security problem englere BOOK: ASP.NET Website Programming Problem-Design-Solution 0 October 6th, 2004 03:49 PM
ASP.NET Security unclehughie Wrox Book Feedback 0 July 16th, 2003 03:45 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.