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

I kept recieving error 12029 (ERROR INTERNET CANNOT CONNECT, The attempt to connect to the server failed.) when using the the MFC wininet classes on Windows Vista. The cause of the error was due to Windows Defender. Is there a better way to get around this than completely turning off Windows Defender? I tried turning off "real time protection" to no avail, I had to completely turn WD off to stop the 12029 errors.

If there is no better solution hopefully someone else with the same issue will see this question and be able to fix thier own problem. I searched the intertubes high and low and didn't find any crossreferences between wininet error 12029 and WD.

My code for reference

::CInternetSession session;
::CHttpConnection* connection = session.GetHttpConnection(L"twitter.com",80,m_csUserName,m_csPassword);   
::CHttpFile* httpfile = connection->OpenRequest(CHttpConnection::HTTP_VERB_GET,L"/account/verify_credentials.xml");     		
httpfile->SendRequest();
share|improve this question
Well shucks, my face is red. I had everything working with WD turned off and now I am getting the error again....even with Windows Defender and Windows Firewall completely turned off and a reboot. Does anyone have any thoughts? – JohnG Aug 19 '09 at 2:09

1 Answer

up vote 1 down vote accepted

If Windows Defender displays a warning message after blocking your program, you should have the option to add your program to a list of "allowed items" which will allow it to run unencumbered while real time protection remains enabled. Admittedly, this is only a viable option if you are working with non-production/personal code (and if Defender is even displaying a warning message at all).

That said, it is possible that Defender has detected some possible risk based on the way you are using the wininet library -- would it be possible to use lower-level sockets instead? If this is the only network code you use, it would be easy to replicate it through the generic winsock library and there's a good chance that Defender would be much less inclined to block your program if you use it instead of wininet.


Edit: In addition to testing the MFC fragment separately as I suggested in the comments below, it may be worthwhile to try it the standard WinAPI way -- the idea being, if there's something wrong with the wininet library on your computer, this code should also fail to connect:

int read = 0;
char* str = "*/*", buff[1024] = {};
HINTERNET inet = InternetOpen("GRB", INTERNET_OPEN_TYPE_DIRECT, NULL, NULL, 0);
if (!(inet=InternetConnect(inet, "twitter.com", 80, "username", "password", INTERNET_SERVICE_HTTP, 0, 0))) 
	cout << "conn failed" << endl;
if (!(inet=HttpOpenRequest(inet, "GET", "/account/verify_credentials.xml", NULL, NULL, (const char**)&str, 0, 0))) 
	cout << "open failed" << endl;
if (!HttpSendRequest(inet, NULL, 0, NULL, 0)) 
	cout << "send failed" << endl;
InternetReadFile(inet, buff, 1023, (DWORD*)&read);
cout << buff << endl;
system("pause");

(designed to be a console program, be sure to include the correct headers/libraries)

share|improve this answer
I guess I should have realized that maybe WD wasnt problem because I did not recieve a warning that WD had blocked anything. (see comment on orignal question) Do you know of anything besides WD and Windows Firewall that could be blocking this? Thanks for your great response. – JohnG Aug 19 '09 at 2:11
Unless you have some antivirus program running then I doubt anything else could be interfering with your program. Knowing that, my guess is that the problem may be on Twitter's end and that their server is failing to respond within the timeout. A way to check this could be to loop some wininet InternetCheckConnection calls in a small console app and see how many times the connection to twitter fails. I tried doing this myself with ICC and the connection failed a couple times, with some coming very close to the timeout, as opposed to calling ICC on google.com which never failed. – GRB Aug 19 '09 at 3:16
Another reason why I think this is likely is that twitter has been the victim of some DDOS attacks recently, so it's possible that they are still going on or that the servers are still recovering from the additional load. – GRB Aug 19 '09 at 3:18
So I tried google.com with no success. I created a short console app that connects everytime with twitter, with no problem. I also tried increasing the timeout in my GUI app with CInternetSession::SetOption with no luck. I uninstalled McAfee the day I got the PC (1 year ago) so Windows Defender and Windows Firewall are the only suspect apps and I turned them both off. I am completely lost on this one. I thought about the DDOS but I get the error almost immediately, I would think some time would go by if the twitter servers we being crushed. – JohnG Aug 19 '09 at 23:43
Its so strange the the console app works but the GUI app doesnt. – JohnG Aug 19 '09 at 23:44
show 12 more comments

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.