码迷,mamicode.com
首页 > 其他好文 > 详细

IIS部署WCF服务

时间:2014-12-24 17:59:54      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:

1.在站点下新建.svc文件。

<%@ ServiceHost Language="C#" Debug="true" Service="IPP_PCL_Web.WCF.Services.PCLServerService" %>

2.修改web.config文件

  <system.serviceModel>
    <behaviors>
      <serviceBehaviors>
        <behavior name="metaDataBehavior">
          <serviceMetadata httpGetEnabled="true"/>
        </behavior>
      </serviceBehaviors>
    </behaviors>
    
    <services>
      <service name="IPP_PCL_Web.WCF.Services.PCLServerService" behaviorConfiguration="metaDataBehavior">
        <endpoint binding="basicHttpBinding" contract="IPP_PCL_Web.WCF.Contracts.IPCLServerService"></endpoint>
      </service>
    </services>
  </system.serviceModel>

 

IIS部署WCF服务

标签:

原文地址:http://www.cnblogs.com/JustYong/p/4182871.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!