Thursday, July 18, 2013

Update() VS System.Update()

 

1 using (SPSite siteObj = new SPSite("http://hydpc1129:9999/ITS/"))
2         {
3            using (SPWeb webObj = siteObj.OpenWeb())
4           {
5              SPList empListObj = web.GetList("LegalContracts");
6          SPListItem empItem = empListObj.Items.Add();
7           empItem["Title"] = "Emp1";
8       empItem["Department"] = "Finance";
9       empItem.Update();
10       //empItem.SystemUpdate();
11      //empItem.SystemUpdate(true);
12      //empItem.SystemUpdate(false);
         }
       }

 

Update

In the above code, Line 9 empItem.Update() will update the “EmpList” data. This will also update the built in columns “Modified” and “Modified By”.

SystemUpdate

If we are using Line 10 empItem.SystemUpdate(); this will update the “EmpList” data but not the built in columns “Modified” and “Modified By”.
If we are using Line 11 empItem.SystemUpdate(true);this will update the “EmpList” data but not the built in columns “Modified” and “Modified By”. But it will increment the item version
If we are using Line 12 empItem.SystemUpdate(false);this will update the “EmpList” data but not the built in columns “Modified” and “Modified By”. Also, does not increment the item verision

SystemUpdate will trigger all the list events if any and also the changes can be observed in Audit logs. Only alerts will not be triggered that are configured on the list.
Note:
If we are using SharePoint model, we are flexible to use any of the methods as per our requirement.
But, if we are using client object model only Update method will be available, SystemUpdate method will not be available. Its obvious that SystemUpdate method is not available because, clients are updating the database data and server should be aware of this(though logs are still updated).
I think that is good reason why client object model does not expose SystemUpdate method

Tuesday, June 4, 2013

The security validation for this page is invalid. Click Back in your Web browser, refresh the page, and try your operation again.

The security validation for this page is invalid. Click Back in your Web browser, refresh the page, and try your operation again.

The above error will be thrown at the time of updating Library or Lists items due to authentication problem, or We didn’t have the rights to update the items.
By using the following code, We can overcome this issue,

Web.AllowUnsafeUpdates = true;
item["Title"]=”ConfigList”;
item.Update();


or we can also use the following code to overcome the above error, this will affect the WebApplication. This will change the Security settings of a Web Application to allow the anonymous user to update item.

web.Site.WebApplication.FormDigestSettings.Enabled = false;
item["Title"]=”
ConfigList”;
item.Update();
web.Site.WebApplication.FormDigestSettings.Enabled = true;


or we can change the settings in Central Administration to anonymously update the items. But this method will be dangerous.

  • Central Administration > Application Management > Web Application General Settings
  • Choose the WebApplication to overwrite the settings
  • Select the option Off in Web Page Security Validation as follows,
securitysettings1

Other possible ways you can try:

1. Set AllowUnsafeUpdates property of SPWeb / SPSite to true
2. Set web.Site.WebApplication.FormDigestSettings.Enabled to false
3. writing code inside SPSecurity.RunWithElevatedPrivileges()
4. using WindowsImpersonationContext wic = WindowsIdentity.GetCurrent().Impersonate()
5. Changing authentication provider in Central Administration
Central Administration > Application Management > Authentication Providers
 Select “Zone”
 Check “Enable Anonymous Access”
6. Turn off Web Page Security Validation in Central Administration
Central Administration > Application Management > Web Application General Settings
 Select the option Off in Web Page Security Validation

But turn off the security validation from Central Administration is not the safe way to do it.

Monday, June 3, 2013

The security validation for this page is invalid" error when updating objects through SharePoint object model

This error is often encountered when SharePoint OM is used to update site/web/list objects from within a web context.  Some thing so basic as the code below could fail:

using (SPSite site = new SPSite("http://hydpc1129"))
{
    using (SPWeb web = site.OpenWeb())
    {
        SPList list = web.Lists["ConfigList"];
        list.Title = "Admin";
        list.Update();
        web.Update();
    }
}

Setting the "AllowUnsafeUpdates" properties of both the SPSite and SPWeb objects to "true", mostly will resolve this issue out if you are using a code similar to above within a webpart or an ASP.NET web application.  When you are running from the context of a separate web application make sure the application pool identity running your ASP.NET web application is the same as the one that's running SharePoint's site.  Below is a code that fixes the "security validation for this page is invalid" error.

using (SPSite site = new SPSite("http://hydpc1129"))
{
    site.AllowUnsafeUpdates = true;
    using (SPWeb web = site.OpenWeb())
    {
        web.AllowUnsafeUpdates = true;
        SPList list = web.Lists["ConfigList"];
        list.Title = "Admin";
        list.Update();
        web.Update();
    }
}

Adding Authenticated Users to Sharepoint Group


SPWeb grpWeb = properties.Parent as SPWeb;
string strPermissionLevel = "Read";
grpWeb .SiteGroups.Add("PMOGroup", owner, owner, "PMOUsers");
SPRoleAssignment roleAssignment = new SPRoleAssignment(grpWeb .SiteGroups["PMOGroup"]);
roleAssignment.RoleDefinitionBindings.Add(grpWeb .RoleDefinitions[strPermissionLevel]);
grpWeb .RoleAssignments.Add(roleAssignment);
grpWeb .Update();

// "c:0(.s|true" = All authenticated users

grpWeb .SiteGroups["PMOGroup"].AddUser("c:0(.s|true", string.Empty, string.Empty, string.Empty)

Friday, May 24, 2013

Error occurred in deployment step ‘Activate Features’: 0×80070002

Sol1:The target List was incorrect and the solution was to simply include the correct ListUrl in the receivers element in element.xml as <Receivers ListUrl=”/Lists/myList”

Sol2: A quick way is to set the value of the active deployment configuration from Default to No Activation (in the properties of the project). That way you need to manually activate your features and you can directly see what goes wrong

Thursday, February 7, 2013

The security validation for this page is invalid. Click Back in your Web browser, refresh the page, and try your operation again.



If we get the above error in SharePoint, you need to add one tag in the aspx page,
 using Microsoft.SharePoint.Utilities;
<SharePoint:FormDigest ID="FormDigest1" runat="server" />

protected override void OnInit(EventArgs e)
        {
            if (Page.IsPostBack)
                SPUtility.ValidateFormDigest();
            base.OnInit(e);
        }

Wednesday, July 25, 2012

PeoplePicker Visual Webpart

<table>
<tr>
<td>
<SharePoint:PeopleEditor ID="PeoplePicker" runat="server" Width="300" MultiSelect="false"  BorderStyle="Solid" BorderColor="Black" BorderWidth="1" />
</td>
</tr>
<tr>
<td>
<SharePoint:PeopleEditor ID="PeopleEditor1" runat="server" Width="300" MultiSelect="True"  BorderStyle="Solid" BorderColor="Black" BorderWidth="1" />
</td>
</tr>
<tr>
<td>
<asp:Button ID="btnDisplay" runat="server" Text="Display" OnClick="btnDisplay_Click"/>
</td>
</tr>
<tr>
<td>
<asp:Label ID="lbltext" runat="server"></asp:Label>
</td>
</tr>
</table>

protected void btnDisplay_Click(object sender, EventArgs e)
        {
            string str = string.Empty;
            for (int index = 0; index <= PeopleEditor1.ResolvedEntities.Count - 1; ++index)
            {

                PickerEntity objEntity = (PickerEntity)PeopleEditor1.ResolvedEntities[index];

                str += "SPUser" + objEntity.EntityData["SPUserID"] + " SPKEy" + objEntity.Key + "\n";

            }
            lbltext.Text = str;
            //Response.Write(str);


        }