show/hide this revision's text 9 edited title

Why does RunWithElevatedPrivileges failes fail to execute?

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,

[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();
    }
}

But the RunWithElevatedPrivileges method throw an exception, I guess it's a permission issue, the exception is the same as one appears when executing site.OpenWeb(); method without elevating privileges.

What could be the problem?

show/hide this revision's text 8 added 46 characters in body

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,

[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();
    }
}

But the RunWithElevatedPrivileges method throw an exception, I guess it's a permission issue, the exception is the same as one appears when executing site.OpenWeb(); method without elevating privileges.

What could be the problem?

show/hide this revision's text 7 Rollback to Revision 2

Hi all,

I'm trying to make a webpart web part that graps greps user comments and stores it in custom list, I wrote this code to add a list to the site once the webpart web part added to the page,

[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();
}
}

but

But the RunWithElevatedPrivileges method thow throw an exception, I guess it's a permession permission issue, the exception is the same as one appears when executing site.OpenWeb(); method without elevating previligesprivileges.

What's

What could be the problemplease??

Regards

show/hide this revision's text 6 Removal of invalid tags. Use existing tags, don't make new ones.
show/hide this revision's text 5 edited tags
show/hide this revision's text 4 edited body
show/hide this revision's text 3 added 66 characters in body
show/hide this revision's text 2 Spelling and Code Indent
show/hide this revision's text 1