博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
响应http报文中的Date属性与cookie过期时间的关系
阅读量:6015 次
发布时间:2019-06-20

本文共 1511 字,大约阅读时间需要 5 分钟。

今天在測试.net时,发现一个莫名其妙的问题:cookie老是保存不到浏览器端;

经过细致的比对成功与不成功的报文,居然无意中发现好像Date与它有关系,这太让我意想不到了,从来不知道cookie保存还要考虑报文中的date

而不是cookie的过期日期设置就可以,居然它的过期时间基点是date,而非浏览器边的客户机器时间优先?

关于报文的date时间是cookie过期时间起算点的验证代码例如以下,php的

header('Date: Mon, 17 Mar 2015 05:34:54 GMT');//强制改动响应时间为当天的后一天,正常的时间点应该是当前

setcookie('a',rand(),time() + 3600);//cookie一个小时后才过期

这个代码会发现cookie没有被保存在浏览器中,由于浏览器觉得cookie相对date而言,已经过期了,所以没有保存,

可是依照我的理解,cookie起算点应该是客户机的时间为准呀?

所以,确实不知http 属性的date还有这种作用.

经过同事的努力,居然发现这是iis的一个bug"上去了后,俺不想下来了";

来自http://serverfault.com/questions/217343/date-header-returned-by-iis7-is-wrong

This appears to be a known issue and frequently found on virtual machine due to time sync feature. You may need to restart HTTP service on IIS6 to recover the behavior. Please refer to the content below:

Problem Description

W3SVC logs show incorrect time - stuck on the same time 2007-11-04 04:56:06

REPRO STEPS

  1. Changed the system time to a future time (e.g. 11th May 2020)
  2. Browsed any site - verified the log file created in the new date/time
  3. Changed the system time to be correct (today's date and time)
  4. Now, browsed any website and saw that the time on the log files is now stuck on 11th May 2020's time

RESOLUTION

  • net stop http
  • net start w3svc

OR

  • net stop http
  • net start http
  • iisreset

You must restart the http service whenever you change the date in the server.

Verified in the code and confirmed that this is by design and you need to follow the above steps to make IIS logging the correct time.

I hope the information helps.

Source: 

转载地址:http://isyqx.baihongyu.com/

你可能感兴趣的文章
JVM自定义类加载器加载指定classPath下的所有class及jar
查看>>
DNA Sequence POJ - 2778
查看>>
const,readonly,static
查看>>
关于C#中精确计时的问题
查看>>
『算法』Dinic求最大流
查看>>
小组项目工作分配,任务确认
查看>>
小程序入门学习Demo
查看>>
关于DDL DML
查看>>
测试功夫不负有心人
查看>>
mysql 执行sql文本文件
查看>>
Hash问题----Hash数组绕过
查看>>
C++标准库函数
查看>>
Android屏幕计量单位详解
查看>>
c# 第一个实例 通哥
查看>>
20161027学习笔记
查看>>
使用BigDecimal进行精确运算
查看>>
弹筐里同一个按钮判断是从哪里点击过来的form
查看>>
java基础教程-流IO(五)
查看>>
PHPstrom常用快捷键
查看>>
用WP SMTP插件实现邮件发送功能
查看>>