ASP.NET 2.0中出现的一个bug就是不能改变max-age头。当max-age设置为0时,ASP.NET 2.0会设置Cache-control为私有,因为max-age= 0意味着不需要缓存。因此,没有办法能够使得ASP.NET 2.0返回缓存响应的头。这是由于ASP.NET AJAX框架对Web服务调用进行了拦截并在执行一个请求之前,错误地将max-age设置为0作为默认值。
反编译HttpCachePolicy类的代码 (Context.Response.Cache对象的类),我发现了如下的代码:
this._maxAge 设置为0,然后检查"if(!this._isMaxAgeSet || (delta < this._maxAge))"以阻止被设置为更大的值。由于这个问题,我们需要传递SetMaxAge 函数并使用反射直接设置_maxAge字段的值。
[WebMethod][ScriptMethod(UseHttpGet=true)]
public string CachedGet2()
{
TimeSpan cacheDuration = TimeSpan.FromMinutes(1);
FieldInfo maxAge = Context.Response.Cache.GetType().GetField("_maxAge",
BindingFlags.Instance|BindingFlags.NonPublic);
maxAge.SetValue(Context.Response.Cache, cacheDuration);
Context.Response.Cache.SetCacheability(HttpCacheability.Public);
Context.Response.Cache.SetExpires(DateTime.Now.Add(cacheDuration));
Context.Response.Cache.AppendCacheExtension(
"must-revalidate, proxy-revalidate");
return DateTime.Now.ToString();
}
public string CachedGet2()
{
TimeSpan cacheDuration = TimeSpan.FromMinutes(1);
FieldInfo maxAge = Context.Response.Cache.GetType().GetField("_maxAge",
BindingFlags.Instance|BindingFlags.NonPublic);
maxAge.SetValue(Context.Response.Cache, cacheDuration);
Context.Response.Cache.SetCacheability(HttpCacheability.Public);
Context.Response.Cache.SetExpires(DateTime.Now.Add(cacheDuration));
Context.Response.Cache.AppendCacheExtension(
"must-revalidate, proxy-revalidate");
return DateTime.Now.ToString();
}
将会返回下面的头:
现在max-age设置成了60,因此浏览器将缓存响应60秒。如果你在60秒内进行相同的再次调用,则会返回相同的响应。这里的测试输出展示了从服务器上返回的时间:
一分钟以后,缓存期满同时浏览器再次向服务器发送请求调用。其客户端代码如下:
function testCache()
{
TestService.CachedGet(function(result)
{
debug.trace(result);
});
}
{
TestService.CachedGet(function(result)
{
debug.trace(result);
});
}
另外一个问题解决了。在web.config文件中,你会看到ASP.NET Ajax添加了如下节点值:
<system.web>
<trust level="Medium"/>
<trust level="Medium"/>
这可以阻止我们设置Response对象的_maxAge字段,因为它需要反射。因此,你不得不删除这一信任级别或者将其放置为Full。
<system.web>
<trust level="Full"/>
<trust level="Full"/>