Установка куки.
Заголовки на запрос приходят следующие
Цитата:
Transfer-Encoding: chunked
Connection: keep-alive
Pragma: no-cache
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Content-Type: text/html; charset=UTF-8
Date: Thu, 25 Mar 2010 08:57:01 GMT
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Set-Cookie: PHPSESSID=val1; path=/,wassup=val2; expires=Thu, 25-Mar-2010 09:47:01 GMT; path=/
Server: nginx/0.8.29
X-Powered-By: PHP/5.2.12
X-Pingback: http://abc.ru/xmlrpc.php
Connection: keep-alive
Pragma: no-cache
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Content-Type: text/html; charset=UTF-8
Date: Thu, 25 Mar 2010 08:57:01 GMT
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Set-Cookie: PHPSESSID=val1; path=/,wassup=val2; expires=Thu, 25-Mar-2010 09:47:01 GMT; path=/
Server: nginx/0.8.29
X-Powered-By: PHP/5.2.12
X-Pingback: http://abc.ru/xmlrpc.php
Пишу код
Код:
HttpWebRequest httpWr1 = (HttpWebRequest)WebRequest.Create("http://abc.ru");
string cookie = "Name=Value";
httpWr1.Headers.Add(HttpRequestHeader.Cookie, cookie);
HttpWebResponse webres = (HttpWebResponse)httpWr1.GetResponse();
webres.Close();
string cookie = "Name=Value";
httpWr1.Headers.Add(HttpRequestHeader.Cookie, cookie);
HttpWebResponse webres = (HttpWebResponse)httpWr1.GetResponse();
webres.Close();
Иду на "http://abc.ru", а никаких новых куков там нет, и в webres они тоже не приходят.
Подскажите пожалуйста что может быть не так.