zoukankan      html  css  js  c++  java
  • wcf 给net.tcp 加mex

    <?xml version="1.0" encoding="utf-8" ?>
    <configuration>
      <system.serviceModel>
        <bindings>
          <netTcpBinding>
            <binding name="reliableSessionBinding">
              <reliableSession enabled="true"/>
            </binding>
          </netTcpBinding>
        </bindings>
        <behaviors>
          <serviceBehaviors>
            <behavior name="exposeExceptionDetail">
              <serviceDebug includeExceptionDetailInFaults="true"/>
              <serviceMetadata httpGetEnabled="true"
                                         httpGetUrl="http://127.0.0.1:9999/filereaderservice/mex" />
            </behavior>
          </serviceBehaviors>
        </behaviors>
        <services>
          <service name="Artech.WcfServices.Service.CalculatorService"
                   behaviorConfiguration="exposeExceptionDetail">
            <endpoint address="net.tcp://127.0.0.1:3721/calculatorservice"
                      binding="netTcpBinding"
                      bindingConfiguration="reliableSessionBinding"
                      contract="Artech.WcfServices.Service.Interface.ICalculator"/>
          </service>
        </services>
      </system.serviceModel>
    </configuration>

     using (ServiceHost host = new ServiceHost(typeof(CalculatorService)))
                {
                    host.Open();
                    Console.WriteLine("OK");
                    Console.Read();
                }

  • 相关阅读:
    内联模板 C++快速入门46
    delphi演示程序
    delphi演示程序
    容器和算法 C++快速入门47
    Delphi7_Lite_Fullv7.3优化精简全功能版
    Delphi7_Lite_Fullv7.3优化精简全功能版
    容器和算法 C++快速入门47
    [转载 js]alt美化效果
    “谁动了我的奶酪?”的故事
    谁动了我的奶酪[续] 讨论
  • 原文地址:https://www.cnblogs.com/lijiu/p/3823079.html
Copyright © 2011-2022 走看看