Beware of Default Solution Deployments for Custom Claims Providers in SharePoint 2010

Hey folks, one of my good friends Tom W (who authored the magnificent SharePoint 2010 Kerberos whitepaper at https://go.microsoft.com/fwlink/?LinkID=196600) brought up a good point the other day about limitations with solution deployment and the impact on custom claims providers the other day.  It's important to remember that when you develop a custom claims provider, it can be used in a number of places besides just the end user web applications.  For example, when you are trying to create web application policies in central admin, it will be used there.  When you are trying to configure user rights in My Sites it will be invoked there.  If you using the Secure Store Service it is called in there. 

The problem manifests itself as you build out bigger farms.  Since those services are calling into the custom claims provider framework, each custom claims provider needs to have its assembly put in the global assembly cache (GAC) on each of those servers.  However, by default the SharePoint solution deployment framework only deploys solutions to web front end servers.  When you look at the schema in fact for solution deployment, your only options for the DeploymentServerType is ApplicationServer or WebFrontEnd; what you really need is both.  That's because in these bigger farms you may not be running the web application service on  your app servers.  If you aren't, then your custom claims providers will  be missing from the GAC on those servers and if you try to use any of those features that call into the custom claims provider framework you will end up generating a whole bunch of errors since the assembly is missing.

Unfortunately the only work-arounds right now are to a) run the web app service on all servers in the farm, b) write a custom deployment job or event receiver or timer job or whatever to get it out to all the app servers or c) do it manually.  None of those options are particularly appealing, although I suppose I would pick a) if I had to pick one and just keep those servers out of the end user load balancing pool.

For now we just wanted to raise the issue so you are aware of it and can plan accordingly when needed for your farm.  Thanks again to Tom for pointing this out.