2

我已经搜索并浪费了一整天的时间来尝试我能想到或找到的一切来解决这个问题:我构建了我的第一个 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);
    [...]
4

5 回答 5

3

这是一个老问题,但如果有人遇到同样的问题,这对我有用:尝试关闭 Visual Studio 并删除与解决方案文件 (.sln) 位于同一目录的 .suo 文件。这会重置编辑器缓存。在将服务合同文件移动到不同的程序集并且缓存仍然引用旧位置后,我遇到了同样的问题。

于 2015-03-29T16:33:10.970 回答
1

自托管应用程序将需要<host>标签内的<service>标签:

<system.serviceModel>
<services>
  <service name="WcfFoldingService.FoldingUpdaterService" behaviorConfiguration="httpServiceBehavior">
        <host>
          <baseAddresses>
            <add baseAddress="http://localhost:8080/Services/"/>
          </baseAddresses>
        </host>
    <endpoint address="" binding="wsDualHttpBinding" bindingConfiguration="ServiceBindingConfiguration" contract="WcfFoldingService.IFoldingUpdaterServiceBehavior"/>
    <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
  </service>
</services>
于 2013-04-07T16:20:49.457 回答
0

我不知道这对您来说是否仍然是一个问题,但最近偶然发现了同样的问题,它可能会有所帮助。

指定您的服务名称时,您还必须使用您的命名空间。因此,假设您的命名空间将是myhost正确的条目将是...

<service name="myhost.WcfFoldingService.FoldingUpdaterService"...>

这同样适用于合同。

于 2013-08-20T07:26:01.013 回答
0

我使用 VS2012 创建的解决方案包含多个 .NET 4.0 项目。我切换到 VS2013,当我添加一个新的 WCF 库项目时,它是使用 .NET 4.5 创建的。将新项目重置为 .NET 4.0 解决了我的问题。

于 2015-07-28T19:46:11.497 回答
-1

确保您在主机中对服务应用程序进行了引用

于 2013-08-10T11:23:48.380 回答