Inet1.Execute "http://localhost/debug/index.php", "GET", "", "Content-Type: application/x-www-form-urlencoded" & Chr(13) & "Cookie: test=123"
На сервере получаю:
GET /debug/index.php HTTP/1.1
Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, */*
Content-Type: application/x-www-form-urlencoded
User-Agent: Microsoft URL Control - 6.01.9782
Host: localhost
Cache-Control: no-cache
Видно что cookie не был добавлен в хэдер. Что интересно, если я заменяю словое cookie на что нибуть другое, то оно замечательно добавляется.
Пример:
Inet1.Execute "http://localhost/debug/index.php", "GET", "", "Content-Type: application/x-www-form-urlencoded" & Chr(13) & "CookieXXX: test=123"
GET /debug/index.php HTTP/1.1
Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, */*
Content-Type: application/x-www-form-urlencoded
CookieXXX: test=123
User-Agent: Microsoft URL Control - 6.01.9782
Host: localhost
Cache-Control: no-cache
Создается впечатление что оно специально убирает cookie из хэдера. При попытке указать в InputHdrs хэдер полность получаю ошибку Cannot Coerce Type. Помогите разобратся в чём дело. Заранее спасибо.