首页 > Web开发 > 详细

Silverlight在添加WCF服务引用时报错

时间:2014-04-16 18:27:40      阅读:417      评论:0      收藏:0      [点我收藏+]

元数据包含无法解析的引用:“http://localhost:1399/WCF-Service/Service.svc”。
服务 http://localhost:1399/WCF-Service/Service.svc 不支持内容类型 application/soap+xml; charset=utf-8。客户端和服务绑定可能不匹配。
远程服务器返回错误: (415) Unsupported Media Type。
如果该服务已在当前解决方案中定义,请尝试生成该解决方案,然后再次添加服务引用。

===========================

解决办法

Web.config文件中要有如下配置:

<system.serviceModel>
        <behaviors>
            <serviceBehaviors>
                <behavior name="ServiceBehavior">
                    <serviceMetadata httpGetEnabled="true" />
                    <serviceDebug includeExceptionDetailInFaults="false" />
                </behavior>
            </serviceBehaviors>
        </behaviors>
        <serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
      <!-- WCF服务新增节点-->
        <services>
          <service behaviorConfiguration="ServiceBehavior" name="Service">
            <endpoint address="" binding="basicHttpBinding" contract="IService">
              <identity>
                <dns value="localhost"/>
              </identity>
            </endpoint>
            <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange"/>
          </service>
        </services>
    </system.serviceModel>

在service节点中增加behaviorConfiguration属性,并命名ServiceBehavior,然后在behavior节点中指定name为ServiceBehavior(默认为空)

Silverlight在添加WCF服务引用时报错,布布扣,bubuko.com

Silverlight在添加WCF服务引用时报错

原文:http://www.cnblogs.com/schyu/p/3666248.html

(0)
(0)
   
举报
评论 一句话评论(0
分享档案
最新文章
教程昨日排行
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!