Silverlight在添加WCF服务引用时报错
HTML 文档不包含 Web 服务发现信息。
元数据包含无法解析的引用:“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(默认为空)
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。