11

我有一个 WCF 服务合同,它基本上是发布订阅者模式。

WCF 服务托管在我要从中发布的 Windows 服务中。客户端订阅消息,当 Windows 服务执行某些操作时,它会发布给所有客户端。

为了托管服务,我声明了一个 ServiceHost 类,并且 Contract 类有一个方法,该方法未在接口中标记,但在要发布的类中实现。

我希望能够在本地调用此方法(不通过 WCF),然后通过回调发布消息。

我似乎无法从 ServiceHost 到 Contract Class 的实例。

这可能吗?如果可以,怎么办?我知道解决方法是在服务中也内置一个客户端,但是创建一个连接到自身的客户端似乎有点奇怪。

提前致谢

DJIDave

应用程序配置

<system.serviceModel>
    <services>
      <service behaviorConfiguration="Processor.Wcf.ServiceBehavior"
        name="Processor.Wcf.ProcessorService">
        <endpoint address="net.tcp://localhost:9000/processor/service"
              binding="netTcpBinding" name="procService"
              bindingConfiguration="netTcpBindingConfig"
              contract="Processor.Wcf.IProcessorService"/>
        <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
          <host>
            <baseAddresses>
              <add baseAddress="http://localhost:8732/Design_Time_Addresses/Processor.Wcf/Service1/" />
            </baseAddresses>
          </host>
      </service>
    </services>
    <behaviors>
      <serviceBehaviors>
        <behavior name="Processor.Wcf.ServiceBehavior">
          <!-- To avoid disclosing metadata information, 
          set the value below to false and remove the metadata endpoint above before deployment -->
          <serviceMetadata httpGetEnabled="True"/>
          <!-- To receive exception details in faults for debugging purposes, 
          set the value below to true.  Set to false before deployment 
          to avoid disclosing exception information -->
          <serviceDebug includeExceptionDetailInFaults="False" />
        </behavior>
      </serviceBehaviors>
    </behaviors>
    <bindings>
      <netTcpBinding>
        <binding name="netTcpBindingConfig"
                 closeTimeout="00:01:00"
                 openTimeout="00:01:00"
                 receiveTimeout="00:10:00"
                 sendTimeout="00:01:00"
                 transactionFlow="false"
                 transferMode="Buffered"
                 transactionProtocol="OleTransactions"
                 hostNameComparisonMode="StrongWildcard"
                 listenBacklog="10"
                 maxBufferPoolSize="524288"
                 maxBufferSize="65536"
                 maxConnections="10"
                 maxReceivedMessageSize="65536">
          <readerQuotas maxDepth="32"
                        maxStringContentLength="8192"
                        maxArrayLength="16384"
                        maxBytesPerRead="4096"
                        maxNameTableCharCount="16384" />
          <reliableSession ordered="true"
                           inactivityTimeout="00:10:00"
                           enabled="false" />
          <security mode="Transport">
            <transport clientCredentialType="Windows" protectionLevel="EncryptAndSign" />
          </security>
        </binding>
      </netTcpBinding>
    </bindings>

  </system.serviceModel>
4

4 回答 4

8

除非您将 ServiceHost 的服务实例引用作为构造函数参数提供,否则无法让 ServiceHost 为您提供服务实例引用。如果您确实提供了该实例引用,那么您正在创建一个单例服务,这通常不是一个好主意。

为了保持服务的配置,您必须通过客户端调用它。这实际上比您想象的要容易。由于您的主机代码可以访问服务合同,因此您可以将它与ChannelFactory 类一起使用来获取服务的代理。除了服务契约之外,您只需提供端点名称,其余的由 ChannelFactory 完成。以下是如何执行此操作的示例:

private IMyServiceContract GetLocalClient(string serviceEndpointName)
{
    var factory = new ChannelFactory<IMyServiceContract>(serviceEndpointName);
    return factory.CreateChannel();
}

更新:与这种方法一起,您应该考虑让您的服务公开一个NetNamedPipeBinding 端点以提高性能。这种绑定几乎可以完成内存中的所有操作,并且是同一机器服务调用的最快绑定。

于 2011-05-20T11:00:00.920 回答
3

对于多次实例化的 WCF 服务(非单例),您可以维护一个包含每个实例的相应回调函数的列表,如下所示:mdsn。您可以直接从托管代码调用方法CallClients()(来自此 MSDN 示例),因为它是服务类的静态成员。这是我找到的唯一其他方法..

于 2012-04-19T13:37:43.700 回答
2

除非您提供对 ServiceHost 的服务实例引用作为构造函数参数,否则

Sixto 解决方案中的这一行为我解决了问题。也感谢这篇文章

我目前正在使用双面装订。


关键概念是您可以将一个Type 或一个实例传递给ServiceHost构造函数。

所以我之前有的是:

 ServiceHost host = new ServiceHost(typeof(MyService), myUri);

我需要的是:

 MyService service = new MyService(foo);  // Can now pass a parameter
 ServiceHost host = new ServiceHost(service, myUri);

另外,我需要MyService

[ServiceBehavior(InstanceContextMode = InstanceContextMode.Single)] 

...现在我可以从服务内部调用主机的方法。

但是,请记住,OperationContext如果您直接调用其方法,您创建的实例将不会有:https ://stackoverflow.com/a/15270541/385273

祝你好运!

于 2018-03-01T21:36:49.743 回答
2

老问题,但这另一种调用方式Singleton WCF Service hosted on a Windows Service

按照@Ben 的要求,Service将需要强制为Singleton

[ServiceBehavior(InstanceContextMode = InstanceContextMode.Single)] 

然后:

var host = new ServiceHost(typeof(MyService), myUri);
var instance = (MyService)host.SingletonInstance;

就是这样。基本上,主机已经有一个需要“强制转换”的属性才能访问Service.

于 2019-04-04T16:41:24.713 回答