Solution to stop unecessary calls to SharePoint Server from Microsoft Office applications

Published Links are the addresses of SharePoint sites/libraries which are available to user as a destination to save the document from Office Application. User can add additional sites/libraries by clicking on Connect To Office button on SharePoint Document Library ribbon. Microsoft Office Applications e.g. Word and Excel try to sync information for all Published Links of SharePoint … Read more

Share

What is a SharePoint Farm?

It is a common question asked by many users that what exactly we mean by SharePoint Farm? The answer is A SharePoint Farm is a collection of all those SharePoint servers that share the same SharePoint configuration database. By Default, configuration database name is SharePoint_Config. As per Microsoft TechNet article here, configuration database is the fundamental … Read more

Share

Step-by-Step SharePoint Online Authentiaction Process via HTTP Protocol

Here is the step-by-step, behind the scene, authentication process of SharePoint Online. You can use it to connect to SharePoint Online from any Microsoft or Non-Microsoft technology.  It gives you an idea of how things work at the very basic level of HTTP protocol, while authenticating a user in SharePoint Online. Assumption: User is trying … Read more

Share

Exam 70-489 Developing Microsoft SharePoint Server 2013 Advanced Solutions Format

If you are preparing for the SharePoint 2013 certification 70-489 i.e. “Developing Microsoft SharePoint Server 2013 Advanced Solutions” then following will be helpful for you with regards to exam format: Exam will consist of total 46 questions Minimum passing score is 700 Exam questions will be either multiple choice or scenario based drag and drop … Read more

Share

SharePoint 2013 beta announced

Microsoft has announced the new version of SharePoint  i.e. SharePoint 2013. It is in beta version right now and can be downloaded from SharePoint site http://sharepoint.microsoft.com/en-us/preview/sharepoint.aspx To get the better idea of what is coming in next version of SharePoint, please check the Microsoft presentations at http://www.microsoft.com/en-us/download/details.aspx?id=30361 For developers, there are training videos available at http://msdn.microsoft.com/en-US/office/apps/fp123626 One of … Read more

Share

How to detect if the given webpage is generated by SharePoint?

If you want to find out whether the given web page is generated by SharePoint or not then the most authentic way of verification is to check Response Headers. SharePoint adds an specific response header (along with others) called MicrosoftSharePointTeamServices The presence of this header is a proof that the given web page is served … Read more

Share

Difference between Security Context of Workflow Code in SharePoint 2007 and 2010

In SharePoint 2010, any code which executes because of the changes made by the workflow process will run in context of the user who either started the workflow or responsible for changes which caused the code to be executed. But … In SharePoint 2007,  any code which executes because of the changes made by the workflow process … Read more

Share

Ideal list of tools you need for SharePoint Development

After working with several clients, I have compiled a list of tools, addons, plugins and technologies which are needed for development, customization or administration at any point in the journey to learn to use Sharepoint. This list is not a “Mandatory Tools List” but in fact, it is a compilation of tools and technologies which … Read more

Share

Correct way of generating Source parameter value in your SharePoint Link

As you may already know that SharePoint uses Source parameter in query string to take you back to the page from where you came. The value of the Source paramter must be properly encoded. Don’t worry, you do not need to write your own Javascript function to do this. Just use already provided function called … Read more

Share

Useful Javascript Functions and objects in SharePoint – Part 2

In my last article “Useful Javascript Functions and objects in SharePoint – Part 1”  I listed some useful javascript objects in SharePoint. Today I will continue exploring useful functions. DOM Management byid(id) = Return element for the given id newE(tag) = Create a new dom element of the given tag e.g. div etc. wpf() = … Read more

Share