vote up -2 vote down star

I am attempting to get some information from a website, the info that I need is located on the missouri.edu site (so it's publicly available). Here is the process that I need to accomplish: - Navigate to https://webapps.missouri.edu/ODDSearchEngine/oddsearch - search for a department name like "business" - Click any of the department names, like "Business College, Advancement" - I need to be able to programatically view the source of the page that is output after clicking "Business College, Advancement".

I would like to be able to get the source of each page for each department under business (or whatever department I put in, like "Accounting").

Is this possible with a Windows program? It looks like the "ODDSearchEngine" that runs this is a Java applet. I'm not sure how to interface with it to get the pages.

For reference, if you put the address into my existing program that is output by the ODDSearchEngine it returns the source code of the Search page with 2 "java.lang.NullPointerException" errors.

Is there an easy way to get this information through .Net?

flag

For reference again, I already have a program that gets the source of websites that I put into it and gets the information I need, it's just this site that doesn't work with my program because of the errors it throws up if you don't go through the process manually. – Pselus Oct 20 at 1:39
I don't see any applets? – leonm Oct 20 at 6:58
@leonm - What's your point? I said that it might be a Java applet, as in, I don't know. Your post is pointless and doesn't help answer the question so why did you make it? – Pselus Oct 20 at 15:27

1 Answer

vote up 1 vote down check

I recently used Watin for a similar task (but it required logging into and tracking a cookie). Watin basically simulates a user visiting a web site. It's probably overkill (and slow) for what you need.

Another alternative I played around with was HttpWebRequest/Response. This seems like it should satisfy your needs. You can also use HTML Agility Pack to work with the HTML you receive.

link|flag
Those all look like they might do the trick, thanks very much. I'm leaning toward HttpWebRequest/Response. – Pselus Oct 20 at 15:30
Actually, none of them worked. I got the HttpWebRequest/Response stuff to get to the point of clicking the "Go" button for me, but from there if I try to get the sub-page ("Business College, Advancement") it still gives the same errors about java.lang.NullPointerException. WatiN might work, except I can't see how to get the source once I've gone through the "click" process. Not to mention that the page is so poorly formatted that there is no defining characteristic about the links to click other than that the address they point to has a different "ggid" at the end. – Pselus Oct 20 at 16:29

Your Answer

Get an OpenID
or

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