Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've created a simple framework to send asynchronous HTTP requests via WinInet, and while it runs OK on some computers, the requests return empty on the computer in my university computer lab, and I would appreciate any advice on what could possibly cause that.

This is the the most important code: http://pastebin.com/SHUjpSnx. In an outer loop, I basically create a new HttpRequest when I need one, and I continously call update() on it until it receives the data back.

It works OK on my computer and on another one I've tried as well, but the requests return empty in the university lab. I receive the INTERNET_STATUS_REQUEST_COMPLETE callback, but then when I call InternetReadFileEx, it says that it has read zero bytes.

I've then added a HTTP status code check, and while that shows 200 on the machines where the app works, it shows 0 on the one in the lab. Which I am not sure how to interpret, because I am under the impression that 0 does not even mean anything, in terms of HTTP status codes.

Do you have any ideas what could possibly cause this?

I have two basic hypothesis, which are that either it's the university network, or possibly the Windows/WinInet libraries could be somewhat different on different machines?

It is true that I have issues to connect to some stuff at the university network - some videostreams do not work, and I cannot connect to Steam/battle.net, so there surely is some kind of filter going on. On the other hand, my app does work on my laptop when I connect it into the uni network. It's just the PC in the lab that does not work. Unfortunately, I cannot plug my laptop into the ethernet used in the lab to examine this further.

In any case, I thought that when I send a HTTP request with WinInet on the standard HTTP port, this would be treated just as any other HTTP request, meaning it shouldn't get blocked?

In terms of Windows, both computers run on Windows 7 with a rather new IE, and the app runs fine on a Vista PC, too.

If anybody would be interested, this is where you can download the app and see if it works on your network/machine. When it asks you at the start to press F1 to authenticate, it should show you a rock-paper-scissors screen when you press the key. If it doesn't, it probably means that there was no response either. (You can lookup 'received' in the created output.txt, and there's 'dwBufferLength: ' line that says how many bytes were received. The problem is that this is zero on the computer in the lab.)

Thanks in advance for any suggestions.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.