D
ddm
hi there,
i has coded some VBA to get the cookies from web, and i found out that
encounter issue after applying the Widow Security Update KB954459.
Below is my code;
XMLHTTP.Open "POST", Trim(baseURL)
XMLHTTP.setRequestHeader "Content-Type",
"application/x-www-form-urlencoded"
XMLHTTP.send
While XMLHTTP.readyState <> 4
XMLHTTP.waitForResponse 1000
Wend
strHeaders = XMLHTTP.getAllResponseHeaders()
And get empty Cookies string after apply the security update. anyone know
workaround ?
i has coded some VBA to get the cookies from web, and i found out that
encounter issue after applying the Widow Security Update KB954459.
Below is my code;
XMLHTTP.Open "POST", Trim(baseURL)
XMLHTTP.setRequestHeader "Content-Type",
"application/x-www-form-urlencoded"
XMLHTTP.send
While XMLHTTP.readyState <> 4
XMLHTTP.waitForResponse 1000
Wend
strHeaders = XMLHTTP.getAllResponseHeaders()
And get empty Cookies string after apply the security update. anyone know
workaround ?