4 December 2011 0 Comments

SharePoint My Site Exception Your personal site cannot be created

When users click on the My Content link from within My Site they get the error: Your personal site cannot be created because the managed path "personal" has not been created for this site. Contact your site administrator for more information To fix this you need to create a managed path under the My Site Web Application as follows:  

29 September 2011 0 Comments

What I am Chattering about Lately (and REPEATEDLY) on Twitter Lately

In case you haven’t heard, I am ALL OVER social networking.  If you follow my personal account , it’s full of cooking stories and food pics, DIY and crafting advice, My Fluevog shoe obsession, cute pictures of my dog, cute pictures of OTHER people’s dogs and tech stuff.  Maybe not your cup of tea, cause you just want the tech stuff.  Well, I have another Twitter account that I occasionally allude to, and it’s strictly business. Microsoft business that is, in the Midwest (Illinois,…( read more )

28 June 2011 0 Comments

New Book: Developing Microsoft SharePoint Applications Using Windows Azure

We’re pleased to announce that Developing Microsoft SharePoint Applications Using Windows Azure (ISBN: 978-0-7356-5662-8, 336 pages) by Steve Fox is available for purchase. You can order the book now at the site of our official distributor, O’Reilly Media. Your expert guide to building Microsoft® SharePoint® applications in the cloud Deliver custom, cloud-based business solutions using SharePoint 2010 and Windows Azure™ together.

29 April 2011 0 Comments

SharePoint Diagnostic Studio (SPDiag) has shipped!

SharePoint Diagnostic Studio (SPDiag) has Shipped , and along with it SharePoint Admin Toolkit (SPAT) v2 for SharePoint 2010. This is a very exciting day for our on-premise customers managing their own SP installations.  SPAT brings a crucial set of tools for managing and pinpointing issues with SharePoint farms.  With the inclusion of SPDiag, the set of tools have become even more powerful

15 March 2011 0 Comments

【震災対応】 Windows Azure 情報提供 Web 構築・移行支援 & Online Services 無償提供

日本マイクロソフトは、東北地方太平洋沖地震に伴う支援と対応として、クラウドサービスによる支援を行います。 Windows Azure Platform 90 日間無償提供、および情報提供 Web 構築・移行支援 アクセスの集中などによる高負荷状態のWebサイトや、緊急情報提供用のWebサイトについて、Windows Azure Platform を活用したサイト構築および既存サイトの迅速な移行を支援します。 支援内容 : Windows Azure Platform を活用して、高負荷状態のWebサイトのミラーサイト構築を行うとともに、当社の開発者支援チームが技術支援や、サイト構築を簡素化する支援ツールなどをご提供します。  ご連絡先 : info311a@microsoft.com Microsoft Online Services の90日間無償提供 すぐに利用いただける情報伝達手段として、Microsoft Online Services(Exchange Online、SharePoint Online、Lync Online、Dynamics CRM Online) を 90日間無償提供いたします。 ご連絡先 Exchange Online、SharePoint Online、Lync Online : jpbpsinf@microsoft.com   Microsoft Dynamics CRM Online : kkcrmbg@microsoft.com   Microsoft Presspass : 東北地方太平洋沖地震に伴う支援と対応について

16 February 2011 0 Comments

Application Lifecycle Management in SharePoint 2010

As a developer, I never really spent a lot of time focusing on SharePoint.

30 December 2010 0 Comments

Applied Architecture Patterns on the Microsoft Platform Reviewed

I just finished reading an excellent book:  Applied Architecture Patterns on the Microsoft Platform by Seroter, Fairweather, Thomas, Sexton and Ramani. (PACKT Publishing 2010.)  IMHO this is a book that all ISVs and other developers basing their solutions on Microsoft technology should read.

23 December 2010 0 Comments

Operation requires user to be Service Application Administrator to be able to execute the code

Recently got a customer who was having a very simple code in an application page (in _layouts folder) to find the crawled properties, which are mapped to a managed property in Search Service Application (in SharePoint 2010) as given below: 1: SPServiceContext context = SPServiceContext.GetContext(SPServiceApplicationProxyGroup.Default, SPSiteSubscriptionIdentifier.Default); 2: SearchServiceApplicationProxy searchProxy = context.GetDefaultProxy( typeof (SearchServiceApplicationProxy)) as SearchServiceApplicationProxy; 3: SearchServiceApplicationInfo ssai = searchProxy.GetSearchServiceApplicationInfo(); 4: SearchServiceApplication application = Microsoft.Office.Server.Search.Administration.SearchService.Service.SearchApplications.GetValue<SearchServiceApplication>(ssai.SearchServiceApplicationId); 5: Schema sspSchema = new Schema(application); 6:   7: ManagedPropertyCollection managedProperties = sspSchema.AllManagedProperties; 8:   9: foreach (ManagedProperty managedProperty in managedProperties) 10: { 11: string managedPropertyName = managedProperty.Name; 12:   13: //check to see if the managed property is mapped to one of our crawled properties 14: foreach (CrawledProperty crawledProperty in managedProperty.GetMappedCrawledProperties(managedProperty.GetMappings().Count)) 15: { 16: if (!mappings.ContainsKey(crawledProperty.Name)) 17: { 18: //if it is and has not yet been added to the list of managed fields, add it 19: mappings.Add(crawledProperty.Name, managedPropertyName); 20:   21: } 22: } 23: } Now when we hit the line 14 ( ManagedProperty.GetMappings() .Count), it always returns 0 (zero) as Mappings count. Now I am the Farm Administrator and the Service Account but still I am not able to pull in the data. If I am logging into SharePoint Central Admin, I am able to see all the mappings from the SharePoint UI.

15 December 2010 0 Comments

Open Door Amman–streamed online RIGHT NOW

Open Door has reached Amman! Join us at the Sheraton Amman all day Wednesday & Thursday Dec 15-16 Watch it Online (ALL3 TRACKS!): http://www.ustream.tv/channel/microsoft-jordan-open-door-2010   Follow us on Twitter : http://twitter.com/#search?q=%23MSJOOpenDoor Join Facebook Group: http://www.facebook.com/#!/group.php?gid=269826597765 Community coverage of Open Door Live Album of Open Door by Mohammad Azzam Are you a REAL developer?   then join the revolution and subscribe to: MSDN Newsletter and the Jordanian User Groups at JordanRuns.NET

23 November 2010 0 Comments

SharePoint 2010 SDK – Now with more SharePoint Online!

Our fantastic documentation team released an update to the SharePoint SDK today that includes a raft of important things for prospective SharePoint Online developers. In particular is the SharePoint Online General Reference topic.

14 November 2010 0 Comments

Delete a Builtin ContentType from the list – Item, Document … SPBuiltInContentTypeId

Hi, In order to delete a out of the box content type from a list/Library  (item, document, etc..), you need to delete it from name as the associated Id in the list is a child of the site contentType . When you add a site content type to a list or library, SharePoint Foundation makes local copies of any columns that are referenced by the content type and adds them to the list’s fields So to delete for example the item content type, you will need to: SPContentTypeId ListitemContentTypeId = list.ContentTypes[web.ContentTypes[ SPBuiltInContentTypeId .item].Name].Id; list.ContentTypes.Delete(ListitemContentTypeId); Namaste!

1 November 2010 0 Comments

Meet me at DevConnections 2010

This week I’ll be presenting at DevConnections conference in Las Vegas, specifically I’ll be at the SharePoint arm of the conference called SharePoint Connections . This is a 4-day conference about how SharePoint developers, administrators and power users can take advantage of the SharePoint 2010 & Office 2010 platform. We will also have some deeper sessions on how developers can use SharePoint Online, the cloud version of the SharePoint 2010 that will be shipped with the Office 365 release.