Andrew Connell [MVP SharePoint]
1741 Posts |  46 Articles |  5310 Comments
.NET  |  MCMS  |  SharePoint  |  Office System
Andrew Connell's RSS Feed    
AC's Blog Quick Links
SharePoint Quick Links
Article Categories
Archives
May, 2012 (3)
April, 2012 (4)
March, 2012 (4)
February, 2012 (4)
January, 2012 (12)
December, 2011 (6)
November, 2011 (3)
October, 2011 (17)
September, 2011 (8)
August, 2011 (6)
July, 2011 (7)
June, 2011 (13)
May, 2011 (9)
April, 2011 (15)
March, 2011 (1)
February, 2011 (6)
January, 2011 (5)
December, 2010 (11)
November, 2010 (6)
October, 2010 (12)
September, 2010 (5)
August, 2010 (4)
July, 2010 (5)
June, 2010 (6)
May, 2010 (11)
April, 2010 (11)
March, 2010 (9)
February, 2010 (9)
January, 2010 (3)
December, 2009 (10)
November, 2009 (15)
October, 2009 (15)
September, 2009 (7)
August, 2009 (4)
July, 2009 (10)
June, 2009 (8)
May, 2009 (2)
April, 2009 (9)
March, 2009 (6)
February, 2009 (16)
January, 2009 (6)
December, 2008 (12)
November, 2008 (12)
October, 2008 (27)
September, 2008 (13)
August, 2008 (14)
July, 2008 (14)
June, 2008 (12)
May, 2008 (23)
April, 2008 (12)
March, 2008 (15)
February, 2008 (13)
January, 2008 (12)
December, 2007 (10)
November, 2007 (8)
October, 2007 (15)
September, 2007 (20)
August, 2007 (21)
July, 2007 (16)
June, 2007 (8)
May, 2007 (25)
April, 2007 (16)
March, 2007 (18)
February, 2007 (18)
January, 2007 (12)
December, 2006 (16)
November, 2006 (13)
October, 2006 (18)
September, 2006 (22)
August, 2006 (27)
July, 2006 (23)
June, 2006 (23)
May, 2006 (23)
April, 2006 (9)
March, 2006 (17)
February, 2006 (15)
January, 2006 (23)
December, 2005 (31)
November, 2005 (32)
October, 2005 (38)
September, 2005 (53)
August, 2005 (30)
July, 2005 (63)
June, 2005 (30)
May, 2005 (59)
April, 2005 (29)
March, 2005 (74)
February, 2005 (27)
January, 2005 (22)
December, 2004 (32)
November, 2004 (42)
October, 2004 (39)
September, 2004 (20)
August, 2004 (14)
July, 2004 (27)
June, 2004 (40)
May, 2004 (5)
April, 2004 (6)
March, 2004 (16)
February, 2004 (26)
January, 2004 (23)
December, 2003 (7)
November, 2003 (14)
October, 2003 (20)
September, 2003 (4)
Post Categories



Managed Windows Shared Hosting

One of the most interesting and powerful new things in SharePoint 2010 is the shift away from shared service providers (SSP’s) and the move to service applications. This area is of great interest to me as I see this as having huge potential for SharePoint to have it’s own internal cloud!

Later this week, Thursday, October 22 @ 12p specifically, I’m presenting a session at the SharePoint Conference on creating custom service applications (session SPC406). This is a HUGE topic… definitely not for the light hearted developer. Unfortunately when I present that session I won’t have time to cover all the ins and outs of what the service architecture is and how it works… but I’ll do a very quick rundown.. spending most of my time on how to create custom ones. In this post I want to provide a bit more back story and point you to some other really good resources regarding custom service applications.

If you’re planning to attend SharePoint Connections in a few weeks in Vegas I’ll have a breakout session there on creating custom service applications as well.

Why the shift away from Shared Service Providers (SSP’s)?

SSPs were pretty handy in Office SharePoint Server 2007. They allowed us to create a configuration of profiles, audiences, Excel Services, BDC and search that we could share between two Web applications. But what if we wanted one Web application to simply use the same search configuration in one SSP but have a totally different profile / BDC configuration? The only option was to create a new SSP and dupe the search config… but these two SSPs were totally independent.

Another trick was the scalability of SSPs. We couldn’t just say “here are four new servers that just do SSPs” very easily. Nor was it easy to share an SSP across SharePoint farms.

Enter the new Service Application Architecture in SharePoint 2010

Simply put: Microsoft took a sledge hammer to the SSP architecture and broke it into pieces. Think of service applications as little programs, but don’t think in terms of an individual EXE or DLL. Instead, think of it more like a complete application that may be comprised of multiple assemblies, databases, timer jobs, Win32 services, external systems, etc.

You take this service application, and deploy it to a SharePoint App Server. Now… a service offering is almost worthless unless you can consume it, right? The consumption piece, in SharePoint, happens on the SharePoint Web Front End (WFE') level. So you need to connect your service applications to the WFE’s. This is done using a proxy (don’t think WCF/ASMX proxy… think of it in the more generic term for now).

This proxy knows how to talk to your service application, exposed on the app server by a custom WCF service. Now, you can have a consumer, such as a Web Part, that talks to the proxy to communicate with the service. One of the coolest parts of this is that the consumer doesn’t have a clue where the service is running.

One major advantage to this new architecture is the flexibility in scaling service applications up and out. Let’s say your service application is in high demand at specific times of the year, such as tax season. All you’d do is deploy your service application to additional app servers and fire up a new instance on that box. When the proxy on the WFE polls the farm asking “where is the WCF service of the service app I’m need to talk to", the service architecture’s internal round-robin load balancer will pick the next server where that contains an instance of the service application and hand the URI of it’s specific WCF service back to the proxy which it will then use to communicate with the service application where the real fun happens.

Another cool thing is that you can publish your service application to other farms. To do this you simply install the service application’s proxy in the other farm and point it to a specific URI provided by Central Administration when you publish the service application. This enables enterprises to have dedicated service farms that can be specially configured based on the services that are provided (search, taxonomies, analytics, data aggregation, etc). They could then share these service offerings with other SharePoint farms in the enterprise or with customer farms!

If you’re at the SharePoint Conference this week, make sure you see (or watch the recordings) the following sessions that cover the new service architecture… they aren’t exactly developer topics, but they will help you understand what this architecture is all about:

  • Introduction to Service Applications & Topology – Tuesday @ 9a
  • Scaling SharePoint 2010 Topologies for your Organization – Tuesday @ 1030a
posted on Monday, October 19, 2009 12:08 PM

Feedback

# re: The New Service Application Architecture in SharePoint Server 2010 10/19/2009 1:42 PM Misty Mays
Gravatar SSP is always a hassel if u want different config's.


# re: The New Service Application Architecture in SharePoint Server 2010 10/19/2009 10:30 PM Mohamed Saleh
Gravatar Seems Promising... thanks for the valuable information...

# re: The New Service Application Architecture in SharePoint Server 2010 10/22/2009 7:09 PM Tony Bierman
Gravatar AC,

If you or your readers are interested, here's a 3-part series of articles I've written on building a simple SharePoint Service Application skeleton. The complete Visual Studio 2010 source code solution is included.

sharepointsolutions.com/.../building-a-sharepoi...

- Tony


# re: The New Service Application Architecture in SharePoint Server 2010 10/22/2009 9:21 PM Aswath
Gravatar thanks for sharing information. looking forward detail architecture

# re: The New Service Application Architecture in SharePoint Server 2010 4/20/2011 8:48 AM sandeep
Gravatar sir

i want to shift my sharepoint 2007 application to sharepoint 2010 ;

so how i could shift


# re: The New Service Application Architecture in SharePoint Server 2010 2/9/2012 11:15 AM Linda Bains
Gravatar Were is the service application info reside? In the Configuration database?

Post Feedback

Title:
Name:
Email:
(email will not be displayed)
Url:
Comments: 
Please add 6 and 1 and type the answer here:    
All Comments Are Filtered & Moderated
Unfortunately comment spammers are just too effecient and are constantly dirtying up blogs with irrelevant and unwanted comments trying to improve their standing on search engines. All comments on this blog are moderated. I do not censor comments, but I don't approve comments with vulger language or those soliciting products. Most of the time comments are approved within a few hours of being submitted with the only exception when I'm traveling.

Why are you asking for my email address?
The only reason I'm asking for your email address, which isn't required to submit a comment, is to provide a gravatar if you've created an account for yourself and associated your email address with a small image. If you have a gravatar created for the email address you submit, it will appear next to your comment. Otherwise nothing will appear.

What is a gravatar?
A gravatar is a "globally recognized avatar." You can get more information about gravatars, as well as create your own for free, at www.gravatar.com. You can also view my gravatar here.


Copyright © 2003 - 2012 Andrew Connell
Creative Commons License 
This work is licensed under a Creative Commons License

 
SharePoint Training
Looking for SharePoint 2010 training for developers, administrators, power users, information workers, end users & web designers? Look no further! My company, Critical Path Training offers the best SharePoint training around! We offer public & private classes both as in-person instructor-loed hands-on classes and online classes. Check out our schedule and course catalog for all the ways we can get you going on your SharePoint path!