Why does RunWithElevatedPrivileges fail to execute? - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T11:30:01Zhttp://stackoverflow.com/feeds/question/638314http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/638314/why-does-runwithelevatedprivileges-fail-to-execute1Why does RunWithElevatedPrivileges fail to execute?netseng2009-03-12T12:00:56Z2009-03-13T00:28:18Z
<p>I'm trying to make a web part that greps user comments and stores it in custom list, I wrote this code to add a list to the site once the web part added to the page,</p>
<pre><code>[Guid("c314a0e8-0210-4064-b79e-bfd3594c6083")]
public class CommentWriteSpace : System.Web.UI.WebControls.WebParts.WebPart
{
SPSite site = null;
SPWeb web = null;
public CommentWriteSpace()
{
SPSecurity.CodeToRunElevated foo = new SPSecurity.CodeToRunElevated(doit);
SPSecurity.RunWithElevatedPrivileges(foo);
SPListCollection listCollection = web.Lists;
Guid listGuid = listCollection.Add("Comments List", "A list of user comments", SPListTemplateType.GenericList);
listCollection[listGuid].Fields.Add("User", SPFieldType.User, true);
listCollection[listGuid].Fields.Add("Comment", SPFieldType.Text, true);
listCollection[listGuid].OnQuickLaunch = true;
listCollection[listGuid].Update();
//this.Page.Request.Url.ToString()
}
public void doit()
{
site = SPContext.Current.Site;
web = site.OpenWeb();
}
}
</code></pre>
<p>But the <code>RunWithElevatedPrivileges</code> method throw an exception, I guess it's a permission issue, the exception is the same as one appears when executing <code>site.OpenWeb();</code> method without elevating privileges.</p>
<p>What could be the problem?</p>
http://stackoverflow.com/questions/638314/why-does-runwithelevatedprivileges-fail-to-execute/639696#6396962Answer by Lars Fastrup for Why does RunWithElevatedPrivileges fail to execute?Lars Fastrup2009-03-12T17:38:53Z2009-03-12T17:38:53Z<p>There is no need for you to run SPContext.Current.Site with elevated privileges. In fact, I think this is why you get the exception. Furthermore, you could also use SPContext.Current.Web instead of site.OpenWeb(). The latter creates a new SPWeb object that you will be responsible of disposing again. SPSite and SPWeb objects from SPContext are automatically disposed when the HTTP request has completed. </p>
http://stackoverflow.com/questions/638314/why-does-runwithelevatedprivileges-fail-to-execute/639745#6397450Answer by Andy Burns for Why does RunWithElevatedPrivileges fail to execute?Andy Burns2009-03-12T17:49:41Z2009-03-12T17:49:41Z<p>Hmm. Would it maybe be easier to just run the bulk of your code in an anonymous delegate?</p>
<pre><code>SPSecurity.RunWithElevatedPrivileges(delegate()
{
// Your code here
}
</code></pre>
<p>It's probably also better to create an SPList object, rather than accessing the collection repeatedly. Some those collections behave a little strangely - I think it's the SPViewCollection create a new object each time you access it via a guid/index!</p>
<p>All of that askice, I agree with Lars - use SPContext.Current.Web</p>
http://stackoverflow.com/questions/638314/why-does-runwithelevatedprivileges-fail-to-execute/639868#6398680Answer by Daniel McPherson for Why does RunWithElevatedPrivileges fail to execute?Daniel McPherson2009-03-12T18:20:55Z2009-03-12T18:20:55Z<p>I would suggest avoiding using RunWithElevatedPrivileges when interacting with SharePoint objects (wherever possible, like in your example). You should restrict its use to when you need to access resources that are outside SharePoint (for example a database, file share, etc.)</p>
<p>Here is an excellent article that provides a very elegant approach to getting elevated privileges within a SharePoint context:
<a href="http://solutionizing.net/2009/01/06/elegant-spsite-elevation/" rel="nofollow">http://solutionizing.net/2009/01/06/elegant-spsite-elevation/</a></p>
http://stackoverflow.com/questions/638314/why-does-runwithelevatedprivileges-fail-to-execute/640787#6407871Answer by dahlbyk for Why does RunWithElevatedPrivileges fail to execute?dahlbyk2009-03-12T22:45:17Z2009-03-12T22:45:17Z<p>You're seeing a number of problems:</p>
<ol>
<li><code>SPSite</code> object permissions are determined when they are created, so <code>SPContext.Current.Site</code> will already have the permissions of the current user even if you get the reference within <code>RWEP</code>.</li>
<li>Passing SP objects out of a <code>RWEP</code> block is unsupported and generally dangerous. If you do need to use RWEP, all <code>SPSite</code> and <code>SPWeb</code> objects (and their children) created within that context should be used and disposed in the <code>CodeToRunElevated</code>.</li>
<li>Each call to <code>listCollection[listGuid]</code> will create a new <code>SPList</code> object, which may cause unexpected behavior.</li>
</ol>
<p>As Dan suggests, RWEP is not the preferred method to do what you're trying to accomplish. Using an extension from the <a href="http://solutionizing.net/2009/01/06/elegant-spsite-elevation/" rel="nofollow">link</a> he references, I would rewrite to look something like this:</p>
<pre><code>[Guid("c314a0e8-0210-4064-b79e-bfd3594c6083")]
public class CommentWriteSpace : System.Web.UI.WebControls.WebParts.WebPart
{
public CommentWriteSpace()
{
SPContext.Current.Site.RunAsSystem(UpdateSite);
//this.Page.Request.Url.ToString()
}
public void UpdateSite(SPSite site)
{
SPWeb web = site.RootWeb;
SPListCollection listCollection = web.Lists;
Guid listGuid = listCollection.Add("Comments List", "A list of user comments", SPListTemplateType.GenericList);
SPList list = listCollection[listGuid];
list.Fields.Add("User", SPFieldType.User, true);
list.Fields.Add("Comment", SPFieldType.Text, true);
list.OnQuickLaunch = true;
list.Update();
}
}
</code></pre>