Posts

SharePoint 2013 Interview Questions – Administrator And IT Pro

1) What are the three user authentication methods that SharePoint 2013 supports? Windows claims Security Assertion Markup Language (SAML)-based claims Forms-based authentication claims 2) Out of the available authentication methods, which one would is considered the recommend according to Microsoft? Claims-based authentication methods are recommended. 3)   What protocol   does server-to-server authentication extend? SharePoint 2013 extends OAuth.   4) SharePoint Store and App Catalog Access SharePoint resources on behalf of a user using?  OAuth 2.0.   5) What Business Data Connectivity (BDC) connections types are supported in SharePoint 2013? WCF SQL Server NET assemblies Open Data Protocol   6) What are some examples of technology that OData leverages? HTTP Atom Publishing Protocol (AtomPub)  JavaScript Object Notation (JSON) 7) What types of authentication does Business Connectivity Services support? Anonymous Basic Windows Custom authenticat

SharePoint 2013 Interview Questions – Developer

1) Describe the Cloud App Model. The Cloud App Model that enables you to create apps. Apps for SharePoint are self-contained pieces of functionality that extend the capabilities of a SharePoint website. 2) Why build Apps? Enables you to build apps for SharePoint by using familiar tools and a rich set of features. Familiar programming model and access to SharePoint data and services, Multiple options for hosting, Familiar user experience for end users, Integration with apps for Office, and SharePoint Store and App Catalog. 3) What as an App in its most basic form? A web application that is registered with SharePoint using an app manifest 4) What is an app manifest? An app manifest is an XML file that declares the basic properties of the app along with where the app will run and what to do when the app is started. 5) Where can the code for an app run? SharePoint-hosted apps, Provider-hosted and auto hosted apps, Apps that have a mix of components in SharePoint and in

Custom Action with Custom Code

Here is a great example of Custom Action with custom code. You can link your custom action button (ECB menu item) with your custom code. http://www.thorntontechnical.com/tech/sharepoint/sharepoint-2010-context-menu-item-with-custom-code#.UG_K1k3Miz4

SharePoint Interview Questions and Answers

How does Client object model works Q. How does Client object model works? Ans. When we use SharePoint client API’s to perform a specific task, the SharePoint Foundation 2010 managed client object model bundles up these uses of the API into XML and sends it to the server that runs SharePoint Foundation. The server receives this request, and makes appropriate calls into the object model on the server, collects the responses, forms them into JavaScript Object Notation (JSON), and sends that JSON back to the SharePoint Foundation 2010 managed client object model. The client object model parses the JSON and presents the results to the application as .NET Framework objects (or ECMAScript objects for ECMAScript). Q. How many types of Client Object model extension are available in 2010 and when would you use one or the other. Ans. To develop rich client side solutions, three set of client-side APIs has been introduced in the Microsoft.SharePoint.Client namespace. The three

SharePoint 2010 101 Code Samples

SharePoint 2010 Code Samples for Beginners.  Each code sample is part of the SharePoint 2010 101 code samples project. These samples are provided so that you can incorporate them directly in your code. Each code sample consists of a standalone project created in Microsoft Visual Studio 2010

How to call server side function from client side javascript in ASP.Net?

Image
How to call serverside function from client side javascript in ASP.Net? Call ASP.Net/C# function using Javscript Usually in ASP.net platform, server side functions (all codes written in asp.net,C#) are executing from the server side and all client side funtions (javascript,jquery,ajax) are executing from the client side. Obviously client side functions are too faster than the server side because there is no need to go upto server, will running from the browser itself. But we are unable to written all functions in client side to get good performance. But for this technique, there is some tips can be used. What we are going to do is, we are writing a server side code in ASP.Net,C# and call these functions from client side using javascript and ajax. Steps to Calling ServerSide method from javscript Create a aspx page with three textboxes and a button control. User enter two numbers in first two textboxes and press calculate button. We are fetching entered values and ca