July 2015

  • PowerShell Command List used in SharePoint 2010

    .

    PowerShell Command which are common in use for a SharePoint Developer.   BackupBackup-SPSite http://oldsite -Path C:backupsitename.bak RestoreRestore-SPSite http://newsite -Path C:backupsitename.bak Add WSPAdd-SPsolution “C:File1.wsp” Update WSPUpdate-SpSolution -Identity File1.wsp -LiteralPath “C:File1.wsp” -GACDeployment Install WSPInstall-SPSolution -Identity “File.wsp”  -WebApplication “http://siteurl” EnableFeatureEnable-SPFeature -identity “MyFeature” -URL…

  • How to create a secure webservice in asp.net

    .

    Web service is a way to communicate between 2 machines via HTTP, those 2 machines can be on the different platform.See more about web service at this URL: http://www.sharepointcafe.net/2015/05/all-about-web-service-soap-rest.htmlAs you know web service is a way to communicate over HTTP,…

  • Throttling and Indexing in SharePoint List

    .

    What is Throttling and Indexing in SharePoint List? In SharePoint, List is like a table with rows and columns. Similar to SQL tables SharePoint List need indexing if contains heavy amount of data else it will degrade the performance of…

  • Resource Throttling Setting unable to open, Error message is Updates are currently disallowed on GET requests.

    .

    Updates are currently disallowed on GET requests. To allow updates on a GET, set the ‘AllowUnsafeUpdates’ property on SPWeb. I searched on google and found the solution.You need to update webapplication throttle setting through powershell command $w = get-spwebapplication http://mysite:2015$w.HttpThrottleSettings$w.Update()…

  • What is QueryThrottleMode in SPQuery Class?

    .

    As per MSDN definition, QueryThrottleMode is a property of SPQuery class which gets or sets value that indicate the throttling mode to be applied to the query. As we know that List Throttling is a new option available in SharePoint 2010. List Throttling limits…

  • Logging to ULS in SharePoint 2010.

    .

    ULS stands for Unified Logging ServiceULS helps developer to avoid debugging code again and again to find out bugs.ULS clearly specifies the error in details.Generally SharePoint logs can be found at hive folder i.e. 14LOGSBut this log file is not…

  • What is delegate control in SharePoint? Why to use it?

    .

    Delegate control in SharePoint allows developers to manage control on a master page without touching or editing master page. Actually, delegate control is associated with a feature. Whenever that feature is active delegate control will be visible and if an…

  • ,

    The method “GetItems” of the type “List” with id “{Guid}” is blocked by the administrator on the server.

    .

    I was working on SharePoint Client Context, and i was writing a piece of code to fetch items from SharePoint list. I got this error at this line:objContext.ExecuteQuery(); I solved this issue by executing powershell command.Open SharePoint Powershell  and type below…

  • Powershell Command to add a file to root of SharePoint

    .

    This blog will explain about adding a file to SharePoint root.Generally sharepoint structure is http://server/pages/page1.htmlSuppose you need to add a file in root which should access by http://server/page1.html This can be done by powershell command. Write-Host “Powershell started…..”Add-PSSnapIn Microsoft.SharePoint.PowerShell$fileBytes =…

  • Create SharePoint List with Code and CAML

    .

    CAML is an XML based language used for access SharePoint objects like List, Library, Content-Type, Site Columns. To know more about CAML Query, please visit my another blog post Learn CAML Query step by StepCAML comes under declarative and the…

  • Linq in C# Programming

    .

    Before using LINQ in C#, please read my earlier blog to get some basic idea about what is LINQ? LINQ can be used in C# in different ways : One way is to use with Lambda ExpressionAnother way is to use…


RSS
YouTube
YouTube
Instagram