I am currently working on a program that scrapes through sourceforge.com and retrieves links of tarballs from the repositories of open source projects written in java.
I initially fire an empty search command in the home page, this lists down projects in sourceforge.net with filters in the left side. I then filter by "java" programming language and then browse through each category (total 10 categories of projects) and retrieve links of the first 25 projects in each category. Thus, now i have a Hashmap having 250 project names and its web address. Moving further, I go into each of these links and get the "Browse Code" link in each of its pages. This page has the link for the "Download TARball".
While I am trying to connect to different pages and move deeper from the home page, I get the following error at runtime (the error occurs randomly during execution time)
Exception in thread "main" java.net.SocketTimeoutException: Read timed out at java.net.SocketInputStream.socketRead0(Native Method)
I tried to give a 3minute wait time between each "Jsoup.connect" request. But still the error persists. I am not sure why this occurs and how to solve this. Any suggestions, ideas are most welcome.
A sample flow of links is provided below : 1. HomePage 2. Empty Search fired 3. Filter by Java and Mobile category 4. First project after filtering 5. Browse Link in the Project : http://wurfl.cvs.sourceforge.net/wurfl/ 6. Final Tarball Link : http://wurfl.cvs.sourceforge.net/viewvc/wurfl/?view=tar