Microsoft MVP성태의 닷넷 이야기
웹: 38. HTTP Cookie의 expires 시간 형식(RFC7231) [링크 복사], [링크+제목 복사],
조회: 12286
글쓴 사람
정성태 (techsharer at outlook.com)
홈페이지
첨부 파일
 

HTTP Cookie의 expires 시간 형식(RFC7231)

고객사에서 이전 제품의 환경에서는 HTTP Cookie의 expires 날짜가 다음과 같이 들어왔는데,

test=1; expires=Fri 10-May-2019 02:00:00 GMT; path=/

새로운 제품 환경에서는 다음과 같이 "콤마(,)"가 있다고 합니다.

test=1; expires=Fri, 10-May-2019 02:00:00 GMT; path=/

희한한 현상이군요. ^^; 간단한 예제 웹 프로그램을 만들어 HttpCookie를 생성해 보면,

using System;
using System.Web;
using System.Web.UI;

namespace WebApplication1
{
    public partial class _Default : Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
            HttpCookie cookie = new HttpCookie("test", "1");
            cookie.Expires = DateTime.UtcNow + TimeSpan.FromSeconds(5);
            cookie.Path = "/";

            this.Response.Cookies.Add(cookie);
        }
    }
}

다음과 같이 시간 포맷에 콤마가 들어간 것을 볼 수 있습니다.

Cache-Control: private
Content-Length: 5035
Content-Type: text/html; charset=utf-8
Date: Fri, 10 May 2019 01:59:55 GMT
Server: Microsoft-IIS/10.0
Set-Cookie: test=1; expires=Fri, 10-May-2019 02:00:00 GMT; path=/
X-AspNet-Version: 4.0.30319
X-Powered-By: ASP.NET
X-SourceFiles: =?UTF-8?B?RTpcY2xvdWRfZHJpdmVcRHJvcGJveFxhcnRpY2xlc1xXZWJBcHBsaWNhdGlvbjFcV2ViQXBwbGljYXRpb24xXERlZmF1bHQ=?=

그뿐만 아니라 "Date" 헤더에도 약간 형식은 다르지만 콤마가 적용된 것을 볼 수 있습니다. 검색해 보면, 이에 대해 RFC7231 문서가 언급됩니다.

Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content - 7.1.1.1. Date/Time Formats
; https://tools.ietf.org/html/rfc7231#section-7.1.1.1

내용인즉 2가지 포맷이 있는데,

HTTP-date    = IMF-fixdate / obs-date

IMF-fixdate 포맷이 바로 위에서 보았던 "Date" 헤더의 시간 형식입니다.

Preferred format:
 IMF-fixdate  = day-name "," SP date1 SP time-of-day SP GMT

An example of the preferred format is
 Sun, 06 Nov 1994 08:49:37 GMT    ; IMF-fixdate

반면 (obsolete로 취급되고 있는) obs-date 포맷은 2가지로 나뉘는데,

obs-date     = rfc850-date / asctime-date

rfc850-date 형식도 역시 콤마를 포함하며 Cookie의 "expires"에 사용된 시간 형식입니다.

rfc850-date  = day-name-l "," SP date2 SP time-of-day SP GMT

Examples of the two rfc850-date format is
  Sunday, 06-Nov-94 08:49:37 GMT   ; obsolete RFC 850 format

유일하게 asctime-date의 경우에만 콤마가 없는데요,

asctime-date = day-name SP date3 SP time-of-day SP year

Examples of the two rfc850-date format is
  Sun Nov  6 08:49:37 1994   ; ANSI C's asctime() format

이건 아예 형식 자체가 다릅니다. 따라서 고객사 측에서 제기한 "Sunday 06-Nov-94 08:49:37 GMT" 문자열이 어떻게 나온 것인지 잘 모르겠습니다. 덕분에 RFC 문서도 보며 정리하긴 했지만... ^^ 혹시 아시는 분 계시면 덧글 부탁드립니다.




[이 글에 대해서 여러분들과 의견을 공유하고 싶습니다. 틀리거나 미흡한 부분 또는 의문 사항이 있으시면 언제든 댓글 남겨주십시오.]







[최초 등록일: ]
[최종 수정일: 5/10/2019]

Creative Commons License
이 저작물은 크리에이티브 커먼즈 코리아 저작자표시-비영리-변경금지 2.0 대한민국 라이센스에 따라 이용하실 수 있습니다.
by SeongTae Jeong, mailto:techsharer at outlook.com

비밀번호

댓글 작성자
 




... 61  62  63  64  65  66  67  [68]  69  70  71  72  73  74  75  ...
NoWriterDateCnt.TitleFile(s)
11927정성태6/5/201911554스크립트: 15. PowerShell ISE의 스크립트를 복사 후 PPT/Word에 붙여 넣으면 한글이 깨지는 문제 [1]
11926정성태6/4/201913043오류 유형: 542. Visual Studio - pointer to incomplete class type is not allowed
11925정성태6/4/201911805VC++: 131. Visual C++ - uuid 확장 속성과 __uuidof 확장 연산자파일 다운로드1
11924정성태5/30/201913594Math: 57. C# - 해석학적 방법을 이용한 최소 자승법 [1]파일 다운로드1
11923정성태5/30/201913222Math: 56. C# - 그래프 그리기로 알아보는 경사 하강법의 최소/최댓값 구하기파일 다운로드1
11922정성태5/29/201911327.NET Framework: 840. ML.NET 데이터 정규화파일 다운로드1
11921정성태5/28/201916218Math: 55. C# - 다항식을 위한 최소 자승법(Least Squares Method)파일 다운로드1
11920정성태5/28/20199906.NET Framework: 839. C# - PLplot 색상 제어
11919정성태5/27/201912979Math: 54. C# - 최소 자승법의 1차 함수에 대한 매개변수를 단순 for 문으로 구하는 방법 [1]파일 다운로드1
11918정성태5/25/201914141Math: 53. C# - 행렬식을 이용한 최소 자승법(LSM: Least Square Method)파일 다운로드1
11917정성태5/24/201914195Math: 52. MathNet을 이용한 간단한 통계 정보 처리 - 분산/표준편차파일 다운로드1
11916정성태5/24/201912223Math: 51. MathNET + OxyPlot을 이용한 간단한 통계 정보 처리 - Histogram파일 다운로드1
11915정성태5/24/201914534Linux: 11. 리눅스의 환경 변수 관련 함수 정리 - putenv, setenv, unsetenv
11914정성태5/24/201914240Linux: 10. 윈도우의 GetTickCount와 리눅스의 clock_gettime파일 다운로드1
11913정성태5/23/201911872.NET Framework: 838. C# - 숫자형 타입의 bit(2진) 문자열, 16진수 문자열 구하는 방법파일 다운로드1
11912정성태5/23/201911591VS.NET IDE: 137. Visual Studio 2019 버전 16.1부터 리눅스 C/C++ 프로젝트에 추가된 WSL 지원
11911정성태5/23/201910648VS.NET IDE: 136. Visual Studio 2019 - 리눅스 C/C++ 프로젝트에 인텔리센스가 동작하지 않는 경우
11910정성태5/23/201919239Math: 50. C# - MathNet.Numerics의 Matrix(행렬) 연산 [1]파일 다운로드1
11909정성태5/22/201913733.NET Framework: 837. C# - PLplot 사용 예제 [1]파일 다운로드1
11908정성태5/22/201912061.NET Framework: 836. C# - Python range 함수 구현파일 다운로드1
11907정성태5/22/20199866오류 유형: 541. msbuild - MSB4024 The imported project file "...targets" could not be loaded
11906정성태5/21/20199832.NET Framework: 835. .NET Core/C# - 리눅스 syslog에 로그 남기는 방법
11905정성태5/21/201910475.NET Framework: 834. C# - 폴더 경로 문자열에서 "..", "." 표기를 고려한 최종 문자열을 얻는 방법 - 두 번째 이야기
11904정성태5/21/201916559.NET Framework: 833. C# - Open Hardware Monitor를 이용한 CPU 온도 정보 [1]파일 다운로드1
11903정성태5/21/201911659오류 유형: 540. .NET Core - System.PlatformNotSupportedException: The named version of this synchronization primitive is not supported on this platform.
11902정성태5/21/201910805오류 유형: 539. mstest 실행 시 "The directory name is invalid." 오류 발생
... 61  62  63  64  65  66  67  [68]  69  70  71  72  73  74  75  ...