博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

Can not reference WCF service

Posted on 2007-03-27 18:10  Snapping  阅读(343)  评论(1编辑  收藏  举报

Error info:
WS-Metadata Exchange Error
    URI: http://localhost:8080/WCFTest/Service.svc
HTTP GET Error
    URI: http://localhost:8080/WCFTest/Service.svc

在service的web.config中添加
 <behaviors>
      <serviceBehaviors>
        <behavior name="returnFaults" >
          <serviceMetadata httpGetEnabled="true" />
    <serviceMetadata httpGetEnabled="true" />
</behavior>
 </serviceBehaviors>
</behaviors>

即可。