我有一个 .NET 4.0 WCF 服务,它使用 Castle Windsor (v3) 通过依赖注入模式实现。该服务托管在 IIS 7 中,我在本地运行时使用 Visual Studio 开发服务器。我的开发服务器为服务分配了一个特定的端口。
现在,如果我不添加基地址,我会从 Castle Windsor 那里得到一个例外:
找不到与绑定 WebHttpBinding 的终结点的方案 http 匹配的基地址。注册的基地址方案是 []。
但是,如果我确实分配了一个与我的开发服务器具有相同端口的本地主机地址,我会遇到端口冲突。
这种情况下为什么需要基地址,端口冲突如何处理?
这是我与温莎城堡相关的代码。该容器是在 Global.asax.cs 文件中的 Application_Start() 中创建的。
public class ServiceInstaller : IWindsorInstaller
{
public void Install(IWindsorContainer container, IConfigurationStore store)
{
container.AddFacility<WcfFacility>()
.Register(Component.For<IMyService>().ImplementedBy<MyService>().AsWcfService<IMyService>().IsDefault()
);
}
}
另外,我对托管多种服务不感兴趣,只有一种。