C# WCF配置文件

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <system.serviceModel>
    <services>
      <!--添加服务-->
      <service name="WcfDemo.Service1" behaviorConfiguration="CalculatorServiceBehavior">
        <!--name 必须与代码中的host实例初始化的服务一样
behaviorConfiguration 行为配置 -->
        <host>
          <baseAddresses>
            <!--添加调用服务地址-->
            <add baseAddress="http://localhost:8000/"/>
          </baseAddresses>

        </host>
        <!--添加契约接口 contract="WcfDemo.IService1" WcfDemo.IService1为契约接口 binding="wsHttpBinding" wsHttpBinding为通过Http调用-->
        <endpoint address="" binding="wsHttpBinding" contract="WcfDemo.IService1"></endpoint>

        <!--浏览器访问方法:http://localhost:8000/web/AddTicket?"tgds"=2-->
        <endpoint address="web" binding="webHttpBinding" contract="WcfDemo.IService1"
                behaviorConfiguration="webBehavior">        
        </endpoint>
        <endpoint address="mex" binding="mexHttpBinding" contract="WcfDemo.IService1" />
      </service>

    </services>
    <!--定义CalculatorServiceBehavior的行为-->
    <behaviors>
      <serviceBehaviors>
        <behavior name="CalculatorServiceBehavior">
          <serviceMetadata httpGetEnabled="true"/>
          <serviceDebug includeExceptionDetailInFaults="true"/>

        </behavior>

      </serviceBehaviors>

      <endpointBehaviors>
        <behavior name="webBehavior">
          <webHttp />
        </behavior>
      </endpointBehaviors>
      
    </behaviors>
  </system.serviceModel>
</configuration>

C# WCF配置文件