我正在使用Visual Studio Ultimat 2013,当我尝试在我的Silverlight项目中加载WCF服务时遇到了严重的问题,它向我显示这个错误抱歉它在法语中意味着他无法加载服务。
![在此处输入图片说明] [1] 听我的web.config
<?xml version="1.0" encoding="utf-8"?>
<!--
Pour plus d'informations sur la configuration de votre application ASP.NET, consultez
http://go.microsoft.com/fwlink/?LinkId=169433
-->
<configuration>
<system.web>
<compilation debug="true" targetFramework="4.0" />
</system.web>
<system.serviceModel>
<bindings>
<customBinding>
<binding name="ServiceWebProject.Web.Servicecom.customBinding0">
<binaryMessageEncoding />
<httpTransport />
</binding>
</customBinding>
</bindings>
<services>
<service name="ServiceWebProject.Web.Servicecom">
<endpoint address="" binding="customBinding" bindingConfiguration="ServiceWebProject.Web.Servicecom.customBinding0"
contract="ServiceWebProject.Web.Servicecom" />
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior name="">
<serviceMetadata httpGetEnabled="true" />
<serviceDebug includeExceptionDetailInFaults="false" />
</behavior>
</serviceBehaviors>
</behaviors>
<serviceHostingEnvironment aspNetCompatibilityEnabled="true"
multipleSiteBindingsEnabled="true" />
</system.serviceModel>
</configuration>
希望你能帮助我。
答案 0 :(得分:0)
在评论部分写的消息不是它只是说的错误&#34;有关应用配置的更多信息,请参阅URL&#34; .. 我认为如果生成服务的代理文件有任何问题,您应该在输出窗口中查看结果并报告实际错误。