Tag: #SharePoint2010

SP2010: Creating a mixed mode login page for claims based authentication

In SharePoint 2010, claims based authentication provides us with a way of dealing with multiple sorts of authentication in one site. Where in the older SharePoint versions you needed to create a new site for each authentication method (Windows, Forms), you can now use both at the same time. This means all users are visiting

Read more

Creating secured BCS objects with BCS Meta Man

We started using BCS in SP2010 to create External Content Types. This is really a powerfull system, and a huge improvement on the ‘old’ BDC approach. For a project, I needed something more then just a BCS layer to get all the data. Data is being fetched from a 3rd party backend system in which

Read more

The big 2010 launch event is near!

Although I won’t be attending (neither in reallife nor online) due to a wedding, I thought I’d just remind you all of the upcoming show from Microsoft. Next week, the 12th of may, Microsoft will be launching Office 2010, SharePoint 2010, Project 2010 and Visio 2010 out into the open. I’m very excited, cause I’ve

Read more

SP2010: Error activating SharePoint Server Publishing Infrastructure

Today I ran into an error when trying to enable the “SharePoint Server Publishing Infrastructure” feature on an existing SharePoint site. The logs told me: “Feature Activation: Failed to ensure feature dependencies for feature ‘PublishingSite’ (id: ‘f6924d36-2fa8-4f0b-b16d-06b7250180fa’), exception thrown: Microsoft.SharePoint.SPException: Provisioning did not succeed. Details: Failed to create the ‘Site Collection Documents’ library. OriginalException: A

Read more

SP2010: BDC Metadata Store is Currently Unavailable

I was really impressed by the new BCS stuff which I saw @ SPC2010. Offcourse, after installing the beta on my laptop, I wanted to test it out myself. So I downloaded SharePoint designer (which is pretty damn nice compared to the old one), connected to my newly created SharePoint site and clicked “External Content

Read more

SP2010: SharePoint not supported with .NET framework version

Today I received two errors when developing a new project for SharePoint 2010. The first one was the FileNotFoundException on the SPSite constructor. Turns out that VS2010 defaults to a x86 setting for for instance console apps. This needs to be x64 since SharePoint 2010 is x64 only; switch it. The second one was “microsoft sharepoint

Read more

SharePoint 2010: GetAvailableWebTemplates CollectionNotInitializedException

The new client object model is something which required some getting used to. Most of the data in the objects isn’t loaded untill you request it, even when calling methods. For instance, the method GetAvailableWebTemplates returns an object of type WebTemplateCollection. You would probably expect that object to contain all the available web templates on

Read more

SharePoint 2010: could not resolve type in class library

Today I was working on one of my first SP2010 projects. I started off with creating a class library which would host some classes providing logic which interacted with the new SharePoint 2010 object model. I also created a console application to test the methods as defined in the class library. When I tried to

Read more

SharePoint 2010: Specified value is not supported for the parameter part 2

It seems the error mentioned in the previous post (“Specified value is not supported for the parameter”) doesn’t only appear on installing SharePoint 2010. Today, I tried adding a new site collection into my newly installed environment, and there it was again! So the solution will probably match the previous one: connecting to the corporate

Read more