silverlight 调用WCF的时候有时会出现“远程服务器返回了错误: NotFound。”的错误
我上网查了下说可以用以下方法解决
在WCF服务的类中加上
[ServiceBehavior(IncludeExceptionDetailInFaults = true)]
然后在调用此服务的silverlight的初始化方法中加上
bool registerResult = WebRequest.RegisterPrefix("http://", WebRequestCreator.ClientHttp);
bool httpsResult = WebRequest.RegisterPrefix("https://", WebRequestCreator.ClientHttp);
bool httpsResult = WebRequest.RegisterPrefix("https://", WebRequestCreator.ClientHttp);
我以前也试过这个问题,这个方法在有此情况是可以的
但我今天出现这个问题就不行了,同样提示“远程服务器返回了错误: NotFound。”
因为我改过 LINQ TO SQL类,增加一个实体
解决方案http://www.cnblogs.com/akiing/archive/2009/10/27/1590983.html