I am using the Wcf Facility, (windsor 2.5.2) latest version from github repo as of last week.
how ever it is not working throwing the following error (when the service starts up)
Could not find a base address that matches scheme http for the endpoint with binding WSHttpBinding. Registered base address schemes are [].
here is the setup
var container = new WindsorContainer();
container.AddFacility<WcfFacility>()
.Register(
Component.For<IUnitOfWork>().ImplementedBy<UnitOfWork>().LifeStyle.PerWcfOperation(),
Component.For<Session>().ImplementedBy<Session>().LifeStyle.PerWcfOperation(),
Component.For<IService1>().ImplementedBy<Service1>().AsWcfService(new DefaultServiceModel()).LifeStyle.PerWcfOperation());
removing all the windsor stuff back to a vanilla service it works fine.
the error is thrown in "Castle.Facilities.WcfIntegration.DefaultServiceHost" on line 32
this.model = model;
thanks
bones