I was working on SharePoint Client Context, and i was writing a piece of code to fetch items from SharePoint list.
Open SharePoint Powershell and type below command one by one.Now run your code, you can now access SharePoint List Data.
I got this error at this line:
objContext.ExecuteQuery();
I solved this issue by executing powershell command.
Open SharePoint Powershell and type below command one by one.
- $webapp = Get-SPWebApplication "http://spserver"
- $webapp.ClientCallableSettings.AnonymousRestrictedTypes.Remove([microsoft.sharepoint.splist], "GetItems")
- $webapp.Update()
Open SharePoint Powershell and type below command one by one.Now run your code, you can now access SharePoint List Data.
I was stuck in my project due to this error. Thank you for writing this blog.
Nice blog- sharepoint cafe
it saves a lot of time for me.
Thank you very much.