vote up 1 vote down star

I have built a webcrawler in C++. I am using an API called URLdownloadToFile().

  1. Is there any other API that can be used?
  2. The API URLdownloadToFile() is working well for some URLs and it is not working well for some other URLs? Please suggest some ways I can overcome this problem?

Thanks, Dnyaneshwari C.

flag
We need a lot more detail - which URLs is it not working on, and what is the issue you're seeing with those URLs? – Paul Jan 2 '09 at 9:05
There is absolutely no way anyone can help you without either (a) you providing more information, or (b) reading your mind to extract said information. Please be more specific. – Mihai Limbasan Jan 2 '09 at 9:05

3 Answers

vote up 2 vote down

You might want to look into libcurl which should allow you to pull content using a variety of protocols. This should also support proxies etc which might be what is giving you problems with specific urls. See also; http://curl.haxx.se/

link|flag
vote up 0 vote down

You might want to look at WinINet which is a simple C API for high-level interface with the HTTP network stack. Another option is WinHttp which is somewhat more compilcated and requires you do deal with COM.

link|flag
vote up 0 vote down

Unless there is a particular reason for sticking with c++ you could well be better off switching to Python and using BeautifulSoup. I've used curl, and it is nice, but all my web stuff is done in Python now

link|flag

Your Answer

Get an OpenID
or

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