This post is to help my my strained memory, the following post contains a list of all SharePoint 2010 feature GUIDs
Posts Tagged ‘SharePoint 2010’
SP2010 Features – Reference
Posted in Software Development, tagged SharePoint 2010 on February 16, 2010 | Leave a Comment »
Configuring RBS for SP2010
Posted in Applications, tagged SharePoint 2010 on January 17, 2010 | 2 Comments »
Following on from my previous post about list scaling and performance. The following posts details configuration of Remote Blob Storage for SharePoint 2010 and SQL Server 2008 R2.
First download the RBS provider for SQL Server 2008 (don’t install it yet):
http://go.microsoft.com/fwlink/?LinkId=177388
Configure file stream for the SQL Server Service using the Configuration Manager:
Execute the following SQL [...]
List Scaling and Performance in SP2010
Posted in Applications, tagged SharePoint 2010 on January 17, 2010 | Leave a Comment »
It it a well known fact that MOSS 2007 caused some rising opinions on the subject of list scalability and performance. Many developers operated under the misconception that SharePoint lists only allowed 2000 list items before croaking out with bad performance. Nothing could be further from the truth.
The following article talks about this issue of [...]
SP2010 ListData.svc give 404
Posted in Software Development, tagged SharePoint 2010 on January 5, 2010 | Leave a Comment »
If you see an HTTP 404 when accessing the /_vti_bin/ListData.svc WCF service in SharePoint 2010 then be sure to install the ADO.NET Data Services 1.5 CTP2
Link
SP2010 Sandbox Development Tip
Posted in Software Development, tagged SharePoint 2010 on December 13, 2009 | Leave a Comment »
If you want to make sure that you aren’t using any of the restricted APIs before you deploy your solution to a sandbox environment, manually reference your project against:
[SharePoint Root]\UserCode\assemblies\Microsoft.SharePoint.dll
If your code compiles, then you’re pretty safe!
NEVER DEPLOY code with this Microsoft.SharePoint.dll reference, instead reference the Microsoft.SharePoint.dll in
[SharePoint Root]\ISAPI folder.
From the [...]
Debugging SP2010 Sandbox Code – Short and Sweet
Posted in Software Development, tagged SharePoint 2010 on December 13, 2009 | 1 Comment »
If you find yourself in a situation when you need to attach to a process from VS 2010, to debug, and you’re code is running in a “sandbox”. You need to attach to the process SPUserCodeService.exe, not w3wp.exe.
SharePoint 2010 hosts sandbox code in a secure service – the user code service – so it can [...]
SP2010 Blogging Open
Posted in Applications, tagged SharePoint 2010 on October 19, 2009 | Leave a Comment »
Just in case you missed it, public blogging of SharePoint 2010 is now permitted – let the flood gates open ;)
SP2010 Developer Dashboard
Posted in Applications, tagged SharePoint 2010 on October 19, 2009 | Leave a Comment »
The SP2010 Developer Dashboard allows developers to review object model calls, database queries, web part events – and the timings for these various happenings.
The following code enables the dashboard:
SPPerformanceMonitor SPPerfMon;
SPPerfMon = SPFarm.Local.PerformanceMonitor;
SPPerfMon.DeveloperDashboardLevel = SPPerformanceMonitoringLevel.On;
SPPerfMon.Update();
The following code turns it off again:
SPPerformanceMonitor SPPerfMon;
SPPerfMon = SPFarm.Local.PerformanceMonitor;
SPPerfMon.DeveloperDashboardLevel = SPPerformanceMonitoringLevel.Off;
SPPerfMon.Update();
Development Setup for SP2010
Posted in Applications, Software Development, tagged SharePoint 2010 on October 19, 2009 | Leave a Comment »
Some important points to remember when developing against SP2010:
Make sure your Visual Studio project is set up for .NET 3.5, not .NET 4.0
Run Visual Studio as an Administrator to load debugging symbols
Make sure your project is set to compile for Any CPU or x64 (not x86 by default), otherwise your code will throw [...]
Provision 2010 Farm without the Mess
Posted in Applications, tagged SharePoint 2010 on October 19, 2009 | Leave a Comment »
Anyone who has created a new SP2010 Farm using the SharePoint Technologies Configuration Wizard will know that it makes a huge mess of SQL server, littering new databases with GUID extensions.
Those of you who have anal tendencies, like me, can sleep at night with nice clean database names with a script as follows:
Note: I am [...]