Click here to Skip to main content
15,884,472 members
Articles / Operating Systems / Windows
Technical Blog

SharePoint: Getting "This collection already contains an address with scheme HTTP" Error When Creating a Custom WCF Service

Rate me:
Please Sign up or sign in to vote.
5.00/5 (1 vote)
4 Dec 2013CPOL 5.1K  
How to fix this error.

Problem:

The problem is caused by the fact that IIS supports specifying multiple IIS bindings per site (which results in multiple base addresses per scheme, in our case HTTP), but a WCF service hosted under a site allows binding to only one base address per scheme.

Multiple addresses example (in our case two):

clip_image002

Solution:

Create a custom service factory to intercept and remove the additional unwanted base addresses that IIS was providing.

  1. Add the custom service factory to your Custom.svc file
  2. ASP.NET
    <%@ServiceHost language=c# Debug="true" 
      Service="MySolution.Services.CustomService, $SharePoint.Project.AssemblyFullName$"
      Factory="MySolution.Core.CustomHostFactory", $SharePoint.Project.AssemblyFullName$ %>

    * Don’t forget to add the assembly full name: $SharePoint.Project.AssemblyFullName$ or you’ll get “The CLR Type ‘typeName’ could not be loaded during service compilation” error.

  3. Create a custom factory by inheriting from ServiceHostFactory and overriding the CreateServiceHost method.
  4. By using the current request host name you can check which base address to use, and if no host name found, use the first one.

    C#
    public class CustomServiceHostFactory : ServiceHostFactory
    {
        protected override ServiceHost CreateServiceHost(Type serviceType, Uri[] baseAddresses)
        {
            string hostName = HttpContext.Current.Request.Url.Host;
            foreach (Uri uri in baseAddresses)
            {
                if (uri.Host == hostName)
                    return new ServiceHost(serviceType, uri);
            }
            return new ServiceHost(serviceType, baseAddresses[0]);
        }
    }
    public class CustomHost : ServiceHost
        {
            public CustomHost(Type serviceType, params Uri[] baseAddresses)
                : base(serviceType, baseAddresses)
            { }
            protected override void ApplyConfiguration()
            {
                base.ApplyConfiguration();
            }
        }
    }

Hope you’ll find this post helpful.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) E4D
Israel Israel
Alex Choroshin is working as a Consultant/Web Developer at LogoUi company , he has a vast experience developing client side solutions and single page application using the latest web technologies: HTML5, CSS3 , AngularJS, JQuery, SignalR, ASP.NET MVC4, Web API, NodeJS etc.

Also experience with the SharePoint 2010 & SharePoint 2013 platform encompassing all the aspects of SharePoint architecture and development.

Comments and Discussions

 
-- There are no messages in this forum --