WCF中的ServiceHost初始化两种方式

Posted wtfly

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WCF中的ServiceHost初始化两种方式相关的知识,希望对你有一定的参考价值。

1 代码方式 

1
2
3
4
5
6
7
8
9
10
using(ServiceHost host=new ServiceHost(typeof(HelloWordService))) 
    host.AddServiceEndpoint(typeof(IHelloWordService), 
        new BasicHttpBinding(), new Uri("http://localhost:10000/HelloWorldService")); 
    host.AddServiceEndpoint(typeof(IHelloWordService), 
        new NetTcpBinding(), new Uri("net.tcp://localhost:10001/HelloWorldService")); 
   
    if (host.State != CommunicationState.Opening) 
        host.Open(); 

 

2 配置文件方式

技术图片
<services>
  <service behaviorConfiguration="serverBehavior" name="HelloWordService">
    <endpoint address="http://localhost:10000/HelloWorldService" 
              binding="basicHttpBinding" contract="IHelloWordService"></endpoint>
    <endpoint address="net.tcp://localhost:10001/HelloWorldService" 
              binding="netTcpBinding" contract="IHelloWorldService"></endpoint>
  </service>
</services>
技术图片

当然也可以使用基地址的方式来配置

技术图片
<services>
  <service behaviorConfiguration="serverBehavior" name="HelloWordService">
    <endpoint address="HelloWorldService" 
              binding="basicHttpBinding" contract="IHelloWordService"></endpoint>
    <endpoint address="HelloWorldService" 
              binding="netTcpBinding" contract="IHelloWorldService"></endpoint>
    <host>
      <baseAddresses>
        <add baseAddress="http://localhost:10000/"/>
        <add baseAddress="net.tcp://localhost:10001/"/>
      </baseAddresses>
    </host>
  </service>
</services>
技术图片

配置好配置文件后就宿主程序中就很简单了,如下:

using(ServiceHost host=new ServiceHost(typeof(HelloWordService)))
{
    if (host.State != CommunicationState.Opening)
        host.Open();
}

以上是关于WCF中的ServiceHost初始化两种方式的主要内容,如果未能解决你的问题,请参考以下文章

WCF,找不到 ServiceHost 指令中的服务属性值

wcf 服务中 ServiceHost 指令中的服务类型问题

WCF ServiceHost.Close() 延迟

WCF:啥是 ServiceHost?

WCF:如何从 ServiceHost 获取端点列表?

找不到 WCF 数据服务类型