我正在尝试缓存从 WCF 中的 SQL Server 检索到的动态列表,到目前为止,检索过程工作正常,并且我已经对其进行了测试,并且完全没有问题,问题是当我尝试缓存时检索列表,发生错误,我无法找出其背后的原因。
这是我的方法:
public List<ErrorEntities> GetALL()
{
List<ErrorEntities> res = null;
if (HttpContext.Current.Cache["GetALL"] == null)
{
SqlCommand com = Global.GetCommand("select * from [BlockingList]");
com.Connection.Open();
SqlDataReader reader = com.ExecuteReader();
res = Fill(reader);
HttpContext.Current.Cache.Add("GetALL", res, null, DateTime.Now.Add(new TimeSpan(0, 0, 15)), Cache.NoSlidingExpiration, CacheItemPriority.Normal, null);
com.Connection.Close();
return res;
}
else
{
res = HttpRuntime.Cache["GetALL"] as List<ErrorEntities>;
return res;
}
}
我尝试通过添加以下代码行来启用 web.config 文件上的缓存,但问题也没有解决:
<scriptResourceHandler enableCompression="true" enableCaching="true" />
这是我在编译解决方案时遇到的错误:
由于内部错误,服务器无法处理请求。有关错误的更多信息,请在服务器上打开 IncludeExceptionDetailInFaults(来自 ServiceBehaviorAttribute 或来自配置行为)以便将异常信息发送回客户端,或根据 Microsoft .NET Framework 3.0 SDK 文档打开跟踪并检查服务器跟踪日志。
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more
有关错误的信息以及它在代码中的来源。
Exception Details: System.ServiceModel.FaultException: The server was unable to process the request due to an internal error. For more
有关错误的信息,请在服务器上打开 IncludeExceptionDetailInFaults(来自 ServiceBehaviorAttribute 或来自配置行为)以便将异常信息发送回客户端,或根据 Microsoft .NET Framework 3.0 SDK 文档打开跟踪并检查服务器跟踪日志。
Source Error: Line 113: Line 114: public ServiceReference1.ErrorEntities[] GetALL() { Line 115: return base.Channel.GetALL(); Line 116: } Line 117: