我有 wcf 服务并将其用于 ASP.net MVC 和 WCF RIA 服务。我能够将错误异常捕获到 ASP.net MVC 中,但无法捕获到 WCF RIA 服务。
以下代码适用于我使用 WCF 服务的 wcf ria 服务
public class MyService : LinqToEntitiesDomainService<MyEntities>
{
try
{
ExternalServiceProxy.SaveData();
}
catch(FaultException<ExceptionInfo> ex)
{
//Not able to catch faultexception
}
catch(Exception ex)
{
//Every time catch exception and faultexception information lost
}
}