Skip Ribbon Commands
Skip to main content
The Blue Monster
 

 User Groups

 
 Chicago SharePoint User Group
 Chicago .NET Users Group
 Chicago Windows User Group
 Chicago Visual Studio Team System User Group
 

 Midwest Bloggers

 
 Arbindo Chattopadhyay
 U.S. Midwest SharePoint Community
 Ram Gopinathan
 Larry Clarkin
 Kevin Hammond
 Dave Bost
 Angela Binkowski
 Andrew Ehrensing
 John West
Home
An occasional list of stuff
June 28
Office 2010 and SharePoint 2010 Service Pack 1 is out!

Get 'em here:

http://www.microsoft.com/download/en/search.aspx?q=office%202010%20service%20pack%201

 Update 6/30/2011 - If you are like me and want to clear up confusion on how all the various CUs and SPs for all the different SharePoint Editions and components inter-relate, check out this post by Jie Li:

http://blogs.msdn.com/b/opal/archive/2011/06/30/the-mystery-behind-sharepoint-2010-patching.aspx

June 16
ILTA SharePoint Symposium 2011 Recap

I am privileged to serve a vertical industry that has a vibrant organization that unites the information technology community across its members: The International Legal Technology Association.  http://www.iltanet.org/

Yesterday and today were the annual ILTA SharePoint Symposium event held in Downers Grove IL.  This was my second time attending and speaking at the event.  The emphasis on peer-to-peer presentations is a highlight for me.  It is always inspiring to see the ways that our customers are using our products to solve their business challenges.  What I especially like about ILTA is their focus on knowledge sharing across the community.

The audio of the sessions were recorded and will be posted soon. I think SharePoint practitioners across any other vertical industry will hear common threads of concerns, challenges and novel solutions. 

Update 6/24/2011 - Presentations and audio recordings are now posted HERE. (audio recordings are only available to ITLA members - login is required.)

March 20
SharePoint 2010 Capacity Planning Resources

There are some newly released documents that you should leverage as your reliance on SharePoint ramps up – especially for document management scenarios:

 
SharePoint Server 2010 performance and capacity test results and recommendations

September 23
Office Web Apps enhanced to support embedding
Today over on the Microsoft Office Blog (Office Web Apps reach 20 million: New features today + 7 more countries) a number of new features were announced.  Among the coolest are the new ability to embed PowerPoint and Excel files right into blog posts.
 
I would show you an example here, except that unfortunately, I can not.  The reason is that the embed technique relies on IFRAME tag, which the SharePoint blog post logic strips out of the blog post body for safety reasons.  This behavior has been in SharePoint since 2007 and continues in 2010.  So, what that basically means is that within SharePoint if you want to leverage the new PowerPoint and Excel embedding feature the only way you can do it is on web part pages by using a Content Editor Web Part.
 
Aw shucks.
 
 
September 16
SharePoint 2010 Performance Study

​Dell has recently published an execellent whitepaper detailing their experience with performance testing of SharePoint 2010 on various configurations of their hardware.

http://en.community.dell.com/dell-blogs/enterprise/b/tech-center/archive/2010/09/10/sharepoint-2010-medium-farm-a-performance-study.aspx

This is a good reference even if your hardware vendor of choice is another brand.  They clearly demonstrate the impact that smart hardware decisions at the database tier can have on the overall performance of the solutions.

July 23
Getting the CMIS Connector up and running in 2010-7a

With the recent release of the Content Management Interoperability Services (CMIS) connector for SharePoint Server 2010 as part of the Microsoft SharePoint 2010 Administration Toolkit v1.0 I decided that I would like to take it for a spin and see how it works and what it has to offer.  For me, since I don’t have access to any non-Microsoft CMIS Producers or Consumers (such as SAP, Alfresco and Documentum) I figured the easiest thing to do would be deploy the connector into the 2010 Information Worker Demonstration and Evaluation Virtual Machine (RTM) 2010-7a vm.

Generally speaking the experience was pretty smooth, but I did encounter some small bumps along the way.  With the help of my colleagues I got through it, and I’ll share the details here.
The first obstacle I encountered was that as of right now (July 2010) there’s virtually no documentation for the connector.  I’m told that is being addressed, and in the interim hopefully this blog post will temporarily bridge the gap.
 
Step 1 – Run the Administration Toolkit installer.  This is a quick and painless exercise.  I accepted all the defaults, and the final result as far as the CMIS connector goes is that a web solution package will have been deposited onto your server: “C:\Program Files\Microsoft\SharePoint 2010 Administration Toolkit\Content Management Interoperability Services (CMIS) Connectors\spcmis.wsp”  This one package contains both the Producer and Consumer features.
 
Step 2 – Add the solution to the farm solution gallery.  This is done via the PowerShell command line: (don't forget that Tab path completion is your friend here, so you don't have to tediously type all of this)
add solution
 
Step 3 – Deploy the solution.  This can be done either at the PowerShell command line or in the Central Admin UI.  I chose the latter.  Go to Central Administration -> System Settings -> Manage farm solutions, click on the spcmis.wsp name, and then Deploy Solution.  In my case I chose to deploy it to all web apps.  You could be more selective if you like, but keep in mind which will be your Producer; you’ll need to know that for the next step.
When deployment is complete, the Solution Properties will look similar to this:
solution properties
 
Step 4 – Make sure the web app that will host the Producer only has 1 host header.  If you don’t you’ll run into an error down at Step 7 stating that the service could not be activated (like I did initially).  The explanation of the cause and solution to this problem is described here.  So, since in my case I wanted http://intranet.contoso.com to host the Producer sites, I went into IIS Manager, selected the Intranet site (a.k.a web app in SharePoint) clicked on Bindings… and removed the entry for http intranet host header (of course, this means you can’t browse to http://intranet anymore, but oh well).
IIS edit bindings to remove second host header
 
Step 5 – Activate the Producer Feature on the site that holds the content that you want to consume.  I did this on the root site at http://intranet.contoso.com/ .  Site Settings -> Manage site features, and click “Activate”.  The result will look like this:
producer site feature
 
Step 6 – Activate the Consumer Feature on the web app where you will want to be able to use the CMIS Consumer web part.  I did this on the site collection at the root of http://itweb.contoso.com . Site Settings -> Manage site collection features, and click “Activate”.  The result will look like this:
consumer site collection feature
 
Step 7 – Insert the CMIS Consumer web part onto a page.  This is all standard stuff: Pick any page in the consumer site collection, put the page into edit mode, go to the Insert ribbon and pick the CMIS Consumer web part:
consumer web part insert
 
Then edit its properties and then this is where things were mysterious for me.  What the heck goes into the “Specify WSDL Address ” property?  I suppose if I were more familiar with the CMIS spec and/or had spent more time dissecting the spcmis.wsp I might have eventually figured this out, but rather I asked around and luckily I was able to find someone smarter than me to tell me. 
 
The correct URL will be of the form <protocol>://<ProducerSite>/_vti_bin/cmissoapwsdl.aspx . 
 
Once you plug that in, you can press the “Get Repository List” button, which will call the RepositoryService.svc behind the scenes (you’ll be prompted in the UI to enter credentials that have access there…) and finally the “Select Repository” dropdown list will be populated with all of the libraries and lists found on the Producer site.
consumer web part properties 
At this point you’re basically done.  Click “OK” to save the property changes, and “Stop Editing” to finish you page editing, and then you should be looking at documents from the Producer site being displayed in the Consumer web part:
All done!

Thanks to Volkhard, Paul and Ryan for their assistance!
June 30
Announcing the release of patterns & practices Developing Applications for SharePoint 2010
The Developing Applications for SharePoint 2010 guide is out.
 
Head on over to http://www.microsoft.com/spg and check it out.  Anyone doing or planning to do any serious custom application development on the SharePoint 2010 platform will benefit from it's content.
 
I cannot tell you how happy and proud I am to see our guidance materials coming to market in such a timely fashion.  Those of you who rode the MOSS 2007 wave know well that this level of prescriptive guidance was not widely available until 12-18 months after that release's general availability.  Kudos to the p&p team and the SharePoint product groups.
May 27
New Query Tool for FAST Search Server 2010 now available on CodePlex
If you ever used the old SharePoint Search Service Tool that was part of the Search Community Toolkit over on CodePlex, or going even further back its predecessor the MOSSQueryTool which used to live out on the old GotDotNet site, you will be pleased to know that a new generation of this concept has come to life.
 
 
My friend Ben Novak took advantage of his vast SharePoint search experience, his role as a participant in the SharePoint 2010 TAP program, and combined that with his desire to learn and apply WPF and channeled that energy into a the latest incarnation of this toolset.
 
If you are developing any sort of search application that will query the SharePoint Search APIs this tool will help you learn the ins and outs of the query syntax through experimentation.  Check it out and give "MOSSMan" your feedback via the Discussions and Issue Tracker areas over on the CodePlex project!
May 26
SharePoint 2010 Virtual Labs now available
Want to get your hands on SharePoint 2010 but are lacking the time and/or hardware to setup a lab environment?  Problem solved!
 
The first wave of SharePoint 2010 Virtual Labs are now available:
 
IT Pro Labs on TechNet:
 
Developer Labs on MSDN:
 
All of these labs run on Hyper-V servers hosted by Microsoft - you connect remotely via a lightweight browser add-in - system requirements and setup details are here: http://technet.microsoft.com/en-us/bb509309.aspx
April 24
Office 2010 Third-Party Software Application Compatibility List
With the release Office 2010 customers wishing to deploy this new version are going to have questions about its compatibility with Add-ins and other applications that interact with Office client applications.
 
The TechNet Office 2010 Compatibility Resource Center should be your first point of reference.  It features links to all of the Office deployment planning tools and documentation as well as the Office 2010 Third-Party Software Application Compatibility List
http://technet.microsoft.com/en-us/office/ff460851.aspx#Compat
 
Right now the compatibility list is in it’s infancy.  Independent Software Vendors (ISVs) will find it beneficial to publish their products' application compatibility status information here to get this information out to their current and prospective customers.
ISVs can submit their application compatibility information for inclusion on this list via the https://www.isvappcompat.com/ web site (you must be a registered Microsoft Partner to be able to register products for inclusion on the list.  Partner registration at the base level is free.)
1 - 10Next
 

 Archive

 
  
expand Year Month : 2011 06 ‎(2)
expand Year Month : 2011 03 ‎(1)
expand Year Month : 2010 09 ‎(2)
expand Year Month : 2010 07 ‎(1)
expand Year Month : 2010 06 ‎(1)
expand Year Month : 2010 05 ‎(2)
expand Year Month : 2010 04 ‎(2)
expand Year Month : 2010 03 ‎(1)
expand Year Month : 2010 02 ‎(2)
expand Year Month : 2009 11 ‎(1)
expand Year Month : 2009 09 ‎(1)
expand Year Month : 2009 06 ‎(3)
expand Year Month : 2009 05 ‎(2)
expand Year Month : 2009 04 ‎(3)
expand Year Month : 2009 01 ‎(3)
expand Year Month : 2008 12 ‎(4)
expand Year Month : 2008 11 ‎(2)
expand Year Month : 2008 08 ‎(6)
expand Year Month : 2008 05 ‎(5)
expand Year Month : 2008 04 ‎(3)
expand Year Month : 2008 03 ‎(1)
expand Year Month : 2008 02 ‎(6)
expand Year Month : 2007 11 ‎(3)
expand Year Month : 2007 10 ‎(5)
expand Year Month : 2007 09 ‎(3)
expand Year Month : 2007 07 ‎(1)
expand Year Month : 2007 06 ‎(5)
expand Year Month : 2007 05 ‎(3)
expand Year Month : 2007 04 ‎(11)
expand Year Month : 2007 03 ‎(19)
 

 SharePoint Internet Sites (from WSSDemo.com)

 
Unable to display this Web Part. To troubleshoot the problem, open this Web page in a Microsoft SharePoint Foundation-compatible HTML editor such as Microsoft SharePoint Designer. If the problem persists, contact your Web server administrator.