Skip to main content

Posts

Showing posts with the label Videos

CRUD Operation with SharePoint REST Service using ADO.NET DATA Services

Today I am going to implement the SharePoint 2010 REST Services using ADO.NET Data Services. In this example i will show you how to applying the CRUD Operation to the SharePoint List. In this example I will create the Window Application and consuming the ListData.svc service and perform the basic list Operations. I will provide you a video link so you can easily understand and do it your self.  Overview  Prerequisite General error while using SharePoint Rest Services. Fix Errors Implementation CRUD Operation with SharePoint REST Service using ADO.NET DATA Services Video Source Code Prerequisite Visual Studio 2010  ADO.NET Data Services v1.5 CTP2 Installed on your machine Full Access to the SharePoint 2010 Rest Service URL. Ex http://<<servername:port>>/_vti_bin/Listdata.svc  General error while using SharePoint Rest Services. “System.Data.Services.Providers.IDataServiceUpdateProvider’ from assembly ‘System.Data.Services, ...

Custom Claim base Authentication with Example & Source Code

Claim-based Identity This new type of authentication and authorization in way in SharePoint 2010. A trusted authority (Issuer) issues a signed security token containing a set claims (credentials) which is given to the application for validation. The application will authenticate the user if the security token is valid and signed by a trusted issuer. Applications using this type of authentication do not have to verify all the credentials. Example Claim Based Authentication Someone who determines your company's security policy can make those rules and buy or build the issuer. Your application simply receives the equivalent of a boarding pass. No matter what authentication protocol was used, Kerberos, SSL, forms authentication, or something more exotic, the application gets a signed set of claims that has information it needs about the user. This information is in a simple format that the application can use right away. Geneva framework Microsoft has created a framewor...