Cookies in MFC?
-
I've written a program that interfaces to a web page (basically a POST followed by reading the response). I would have thought that if the web page sends a cookie, and then requests it back later, this would all be handled automatically. But it doesn't seem to work. Can someone point me in the direction of some code that might do what I want? Neil
-
I've written a program that interfaces to a web page (basically a POST followed by reading the response). I would have thought that if the web page sends a cookie, and then requests it back later, this would all be handled automatically. But it doesn't seem to work. Can someone point me in the direction of some code that might do what I want? Neil
Is MSDN article Q168864 of any help?
"Opinions are neither right nor wrong. I cannot change your opinion. I can, however, change what influences your opinion." - David Crow
-
Is MSDN article Q168864 of any help?
"Opinions are neither right nor wrong. I cannot change your opinion. I can, however, change what influences your opinion." - David Crow
Not really. It covers ISAPI, and I'm writing a client (in MFC). WHenever I read from the server I only get the data, not the headers. I presume there is a way to also get the headers and I can do cookie management myself, but I would have thought it would be automatic (or at least optionally automatic).