I was very exiting that Microsoft released Express edition of TFS. For small development team it’s a great tool, which can be very useful. The interface looks like new metro application and it seems that new products will follow this path. Unfortunately there’s a bug...
Development
BreakRoleInheritance in SharePoint 2010
Do you remember my post about problems with BreakRoleInheritance in SharePoint 2007 (here)? There were errors messages that I didn’t dispose SPSite and SPWeb objects after usage. Partially I was able to solve it with some changes in my code, but there’re still...
Cannot connect to the configuration database.
Today I’ve faced strange problem and I spent a few hours to solve it. I’ve installed my new SharePoint 2010 sever for development – nothing special. But when I created first top level site and try to display it http://ServerName I get error: ”Cannot connect to the...
Web Service and InfoPath form browser enabled.
I faced a new problem with Web Service and InfoPath form browser-enabled. When I was creating the form all seems to be ok. But when I uploaded my form to SharePoint server and try to get any data from the Web service I get an error. In the SharePoint log I’ve found...
Problem with SendEmail in SharePoint workflow.
Recently I had strange problem. I’ve created workflow with Visual studio 2008 which and I would like to use Workflow component: “SendEmail” for some cases. And if I enter directly into component email address for field: “TO” the message will be delivered. But if I use...
BreakRoleInheritance and Dispose
I've wrote some piece of code which was used to clear security setting on item level in the library: private void UsunDziedziczenieUprawnien_ExecuteCode(object sender, EventArgs e) { using (SPSite site = new SPSite (workflowProperties.SiteId)) { using (SPWeb web =...