From e1a35e3980a525a2e1161525c8d3469b7c3809b1 Mon Sep 17 00:00:00 2001 From: Brian P Becker Date: Fri, 12 Oct 2018 14:39:42 -0400 Subject: [PATCH] Cookie names are case sensitive --- Core/HTTPRequest.dyalog | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Core/HTTPRequest.dyalog b/Core/HTTPRequest.dyalog index 0fa1b967..9793cec7 100644 --- a/Core/HTTPRequest.dyalog +++ b/Core/HTTPRequest.dyalog @@ -47,7 +47,7 @@ ⍝ Headers: HTTP Headers as 2 column matrix or name/value pairs ⍝ Page: Requested page ⍝ Arguments: Arguments to the command (cmd?arg1=value1&arg2=value2) as 2 column matrix of name/value pairs - + Response←⎕NS'' Response.(Status StatusText Headers File HTML HTMLHead PeerAddr NoWrap Bytes)←200 'OK'(0 2⍴⊂'')0 '' '' '' 0(0 0) Response.Request←cmd,data @@ -241,7 +241,7 @@ ∇ r←GetCookie name :Access Public Instance - r←name GetFromTable Cookies + r←name GetFromTableCS Cookies ∇ ∇ SetCookie ctl;name;value;path;date;z;keep