我有一个似乎不想工作的Silverlight应用程序的WCF Web服务。
非常直接;当我同时调试silverlight应用程序和wcf时,在启动WCF后停止工作并抛出以下消息:
CommunicationException未被用户代码处理。 远程服务器返回错误:NotFound。
WCF引用另一个名为DAL的代码库,它使用SubSonic并存储我正在使用的数据库文件。
这是我的WCF web.config文件。似乎有些不对劲,因为它没有端点,但我不完全确定。
<?xml version="1.0"?>
<configuration>
<connectionStrings>
<add name="Database" connectionString='Data Source=.\SQLEXPRESS;AttachDbFilename="[FILE LOCATION OF MDF FILE]";Integrated Security=True;User Instance=True' providerName="System.Data.SqlClient" />
</connectionStrings>
<system.web>
<compilation debug="true" targetFramework="4.0" />
</system.web>
<system.serviceModel>
<behaviors>
<serviceBehaviors>
<behavior>
<!-- To avoid disclosing metadata information, set the value below to false and remove the metadata endpoint above before deployment -->
<serviceMetadata httpGetEnabled="true"/>
<!-- To receive exception details in faults for debugging purposes, set the value below to true. Set to false before deployment to avoid disclosing exception information -->
<serviceDebug includeExceptionDetailInFaults="true"/>
</behavior>
</serviceBehaviors>
</behaviors>
<serviceHostingEnvironment multipleSiteBindingsEnabled="true" />
</system.serviceModel>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true"/>
</system.webServer>
</configuration>
非常感谢任何帮助。
由于
答案 0 :(得分:2)
在调试此类问题时,我通常使用Fiddler(http://fiddler2.com/fiddler2/)来捕获来自WCF的实际响应,这可以为您提供有关该问题的更多详细信息,因为SL获取的NotFound消息隐藏了实际的异常。