Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
304 views

Fastest way to scrape web pages all within one web site

I have a C# app that needs to scrape many many pages within a certain domain as fast as possible. I have a Parallel.Foreach that loops through all of the urls (multi-threaded) and scrapes them using ...
3
votes
4answers
2k views

Using Ruby And Ubuntu With Optical Character Recognition

I am a university student and it's time to buy textbooks again. This quarter there are over 20 books I need for classes. Normally this wouldn't be such a big deal, as I would just copy and paste the ...
2
votes
4answers
276 views

Java Framework - Using screen scraping to mesh heterogenous server environments

OK. So I have a CMS written in Java that satisfies the needs of several hundred clients. But periodically, a client will need a specialized application: for example, a class registration database ...
2
votes
5answers
2k views

C# library similar to HtmlUnit

I need to write standalone application which will "browse" external resource. Is there lib in C# which automatically handles cookies and supports JavaScript (through JS is not required I believe)? The ...
2
votes
4answers
648 views

How Many Java HttpURLConnections Should I Be Able to Open Concurrently?

I'm writing a multi-threaded Java web crawler. From what I understand of the web, when a user loads a web page the browser requests the first document (eg, index.html) and as it receives the HTML it ...
1
vote
2answers
167 views

SQL UPDATE isn't updating the database, is there something wrong with my SQL statement?

This is my first attempt at a 'real' C# program. It takes a specified directory, extracts the file name (without extension) and writes them to an SQL database. This data is then read back into an ...
1
vote
1answer
495 views

Screen scraper application (not HTML)

I need screen scraper application which will recognize text from the screen (and not use winapi to do this so source could be in image file). I found a lot of commercial solutions, but I need ...
0
votes
1answer
128 views

PHP html scraping

Its my first post on the site so bear with me Ok so i'm a complete beginner with PHP and I have a specific need for it for my project. I'm hoping some of you guys could help! Basically, I want to ...
0
votes
0answers
22 views

Using Session Integrator with MS HIS 2004

This is a very high level feasibility question: Would like to know whether Session Integrator is available as part of Microsoft Host Integration Server 2004, and whether it can be used to talk with a ...
0
votes
0answers
71 views

How to extract html from source of website in Ruby

i have been working on some practice programs since I have begun working with Ruby. My friend who has 4 years of Ruby experience could not figure out how to obtain the full HTML of a specific portion ...
0
votes
0answers
44 views

Mobile site acting as a proxy to the real site

I have a client that has a pretty large website. Due to the way it was implemented, it is somewhat difficult to extend. The site is basically built on top of a CMS (WebForms). It can be extended, ...
0
votes
3answers
248 views

Screen scrape an ASP.NET Page not working

I am trying to bring back the calendar events on the page at the following site: http://www.wphospital.org/News-Events/Calendar-of-Events.aspx Notice that this site has a link called "Month" - I need ...
0
votes
0answers
129 views

youtube comment box c#

how would i go about submitting a comment through my application onto a random video. I am making a program similar to stumbleupon where a random video is viewed, once the video has been watched, it ...
0
votes
0answers
219 views

Bitmap Screen scraper problem VB.NET

Here is what I got exactly but it fails after one pass. Something about the array being out of bounds probably something with the y*bmd.Stride (but i don't understand why a out of bounds error occurs ...
0
votes
3answers
255 views

How can I write an automated script to log into, navigate, and save a website from a headless server?

Currently, I have a script that calls Firefox and runs a macro, but this is very buggy and rarely works the way I want it to.
0
votes
1answer
643 views

Convert a (nested)HTML unordered list of links to PHP array of links

I have a regular, nested HTML unordered list of links, and I'd like to scrape it with PHP and convert it to an array. The original list looks something like this: <ul> <li><a ...
0
votes
3answers
288 views

How can I get java's parser to be forgiving with badly formed html?

I'm attempting to do some screen scraping however the html being returned is causing an error as there is no header (i think). Below is the code public class xpath { private Document doc = null; ...
0
votes
2answers
396 views

How to get specific content with PHP and DOM Document?

I have a url I want to grab. I only want a short piece of content from it. The content in question is in a div that has a ID of sample. <div id="sample"> Content </div> I can grab ...
0
votes
1answer
598 views

C# Screen Scraper - Handle long uri's

I'm building a html screen scraper, which parses urls, and then compare those with a set of other urls. The comparison is done with Uri.AbsoluteUri or Uri.Host. My problem is that when i'm creating ...
-6
votes
2answers
519 views

Screen scrape a website that blocks ips [closed]

Hello I want to screen scrape a site like yelp to get phone numbers of italian restaurants.. I created a simple program to do just what I wanted but they blocked my servers ip I am using php to do ...