I am having trouble getting URLStream to return anything in its buffer. I have traced through the source and it is resolving the address correctly, and sending a valid GET line. However, the request does not appear on the webserver (and has no response, obviously). Everything succeeds until the Readline which returns nothing.
Has anyone has similar problems or know what might be the problem?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Anonymous
-
2001-05-31
check my reply under urlstream vs readline(), your are right it is not functionnal under win32.
I am right know working on a new version of urlstream(my project) which will handle persistent connection, basic and digest authentication. I will probably give it to common c++ as a patch. Next week. And It will be functionnal.
bye
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I did not know that Readline() does not behave correctly in win32. It's based on some commonly accepted ideas in posix systems. I would love to see and would be happy to incorporate a patch/alt. implimentation for URLStream that does work correctly on/for win32.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I am having trouble getting URLStream to return anything in its buffer. I have traced through the source and it is resolving the address correctly, and sending a valid GET line. However, the request does not appear on the webserver (and has no response, obviously). Everything succeeds until the Readline which returns nothing.
Has anyone has similar problems or know what might be the problem?
I am calling it as below using VS6.0 SP5:
URLStream url;
url.Get("http://www.sourceforge.net/index.php");
check my reply under urlstream vs readline(), your are right it is not functionnal under win32.
I am right know working on a new version of urlstream(my project) which will handle persistent connection, basic and digest authentication. I will probably give it to common c++ as a patch. Next week. And It will be functionnal.
bye
I did not know that Readline() does not behave correctly in win32. It's based on some commonly accepted ideas in posix systems. I would love to see and would be happy to incorporate a patch/alt. implimentation for URLStream that does work correctly on/for win32.