View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
ddm ddm is offline
external usenet poster
 
Posts: 5
Default msxml6 update in Window Security KB954459

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 ?