ASP.Net Medium Trust setup - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T13:57:32Z http://stackoverflow.com/feeds/question/133109 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/133109/asp-net-medium-trust-setup 2 ASP.Net Medium Trust setup rams 2008-09-25T12:47:36Z 2009-10-30T11:09:59Z <p>I am trying to configure the IPermission node as part of medium trust. However I am unable to find the valid values list for the PathDiscovery attribute on the node</p> <pre><code>&lt;IPermission class="FileIOPermission" version="1" Read="$AppDir$" Write="$AppDir$" Append="$AppDir$" PathDiscovery="$AppDir$"/&gt; </code></pre> <p>I need to set the permission so that the account will be able to access all subdirectories under the main path. currently a .svc (WCF service file) throws a 404 error because the ASP.Net account is not able to get it from a sub-folder couple of levels deep. I am trying to avoid changing the node to</p> <pre><code>&lt;IPermission class="FileIOPermission" version="1" Unrestricted="true"/&gt; </code></pre> <p>Any ideas?</p> <p>TIA</p> http://stackoverflow.com/questions/133109/asp-net-medium-trust-setup/134475#134475 2 Answer by Grank for ASP.Net Medium Trust setup Grank 2008-09-25T16:49:03Z 2008-09-25T16:49:03Z <p>I certainly agree that you shouldn't change the node to Unrestricted, as that would pretty much defeat the purpose of partial trust.</p> <p>According to the <a href="http://msdn.microsoft.com/en-us/library/system.security.permissions.fileiopermission.aspx" rel="nofollow">System.Security.Permissions.FileIOPermission documentation on MSDN</a>, FileIOPermission is supposed to imply permissions to everything below that path as well. From that doc:</p> <blockquote> <p>Access to a folder implies access to all the files it contains, as well as access to all the files and folders in its subfolders. For example, Read access to C:\folder1\ implies Read access to C:\folder1\file1.txt, C:\folder1\folder2\, C:\folder1\folder2\file2.txt, and so on.</p> </blockquote> <p>Of course, building custom trust .config files is woefully poorly documented by Microsoft, so it's possible that the .config markup for FileIOPermission behaves differently than the code class... That would be surprising to me though.</p> <p>Is it possible some other problem is causing the 404? Double-check that the service is executing under the credentials you'd expect, and that the path is being evaluated correctly...</p>