我已经搜索并浪费了一整天的时间来尝试我能想到或找到的一切来解决这个问题:我构建了我的第一个 WCF 服务,并认为将它托管在 IIS 中会很酷。这是一项长期运行的服务,所以这是不行的。从那以后,我在我的解决方案中添加了另一个项目来托管 WCF 服务,引用了 WCF 项目,并且在尝试从代码托管时遇到了不断的困难。我主要遵循http://msdn.microsoft.com/en-us/library/ms733069.aspx以获得有关实施主机的指导,并针对我的具体情况进行了微调。
当前的挑战只是获取托管项目的 App.config 中定义的服务端点。它无法将“端点”的“合同”属性解析为我的 WCF 服务合同。
WCF 大会
namespace WcfFoldingService
{
[ServiceContract(SessionMode=SessionMode.Required, CallbackContract=typeof(IFoldingUpdaterClientContract))]
public interface IFoldingUpdaterServiceBehavior
{
[OperationContract(IsOneWay = false, IsInitiating = true)]
void Subscribe();
[OperationContract(IsOneWay = false, IsTerminating = true)]
void Unsubscribe();
[OperationContract(IsOneWay = true)]
void PublishSomeOperation();
}
public interface IFoldingUpdaterClientContract
{
[OperationContract(IsOneWay = true)]
void SomeOperation();
}
[ServiceBehavior(InstanceContextMode=InstanceContextMode.PerSession, ConcurrencyMode=ConcurrencyMode.Single)]
public class FoldingUpdaterService : IFoldingUpdaterServiceBehavior
{
// Omitted for brevity, but complete implementation exists.
}
}
/WCF 程序集
主机组装
App.config
<system.serviceModel>
<services>
<service name="WcfFoldingService.FoldingUpdaterService" behaviorConfiguration="httpServiceBehavior">
<endpoint address="" binding="wsDualHttpBinding" bindingConfiguration="ServiceBindingConfiguration" contract="WcfFoldingService.IFoldingUpdaterServiceBehavior"/>
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
</service>
</services>
<protocolMapping>
<add scheme="http" binding="wsDualHttpBinding" bindingConfiguration="ServiceBindingConfiguration"/>
</protocolMapping>
<bindings>
<wsDualHttpBinding>
<binding name="ServiceBindingConfiguration">
<reliableSession ordered="true"/>
<security mode="None"/>
</binding>
</wsDualHttpBinding>
</bindings>
<behaviors>
<serviceBehaviors>
<behavior name="httpServiceBehavior">
<serviceMetadata httpGetEnabled="True"/>
<serviceDebug includeExceptionDetailInFaults="False"/>
<serviceThrottling maxConcurrentCalls="1000" maxConcurrentInstances="100" maxConcurrentSessions="100"/>
<sendMessageChannelCache allowUnsafeCaching="false"/>
</behavior>
</serviceBehaviors>
</behaviors>
</system.serviceModel>
/主机组装
Message:
The 'contract' attribute is invalid - The value 'WcfFoldingService.IFoldingUpdaterServiceBehavior' is invalid according to its datatype 'serviceContractType' - The Enumeration constraint failed.
我难住了。Google 提供的相关链接很少,它们主要与我没有遇到的其他配置问题有关。引用了 WCF 程序集,我使用的是完全限定名称,我什至尝试使用 ConfigurationName 属性以防出现命名空间冲突。我是 WCF 的新手,所以我希望这是一个明显的问题!
编辑:我现在使用的是编程配置而不是 App.config XML。最重要的声明是ContractDescription.GetContract(serviceType)
, 甚至new ContractDescription("FullNamespace.IContract")
与 XML 配置一样失败了。serviceType 的 FullName 属性的 Type 对象与我的“FullNamespace.IContract”完全相同。我怀疑如果没有在代码中硬引用它就无法加载程序集的问题,但我现在不能确定。目前,这种方法可以正常工作:
using (var host = new ServiceHost(typeof(FoldingUpdaterService), baseAddress))
{
var serviceType = typeof (IFoldingUpdaterServiceBehavior);
var serviceContract = ContractDescription.GetContract(serviceType);
var foldingEndpoint = new ServiceEndpoint(serviceContract)
{
Binding = new WSDualHttpBinding()
Address = new EndpointAddress(new Properties.Settings().WcfUpdaterServiceAddress)
};
host.Description.Endpoints.Add(foldingEndpoint);
[...]