tags:

views:

27

answers:

1

I am not sure if this fits better on StackOverflow, but here goes:

I want to programmatically log on to:
http://wrds-web.wharton.upenn.edu/wrds/index.cfm?true

I tried capturing the log on url using fiddler2 and HttpFox, but to no avail.
Is this a server side script that I cannot capture? If so how can I do the log on?

+4  A: 

You won't see a "login URL" because the form uses the POST method. The method you will need to use depends on the language. In Python, you could use urllib for example.

John T
Thanks. So if I want to do this using C# I need to search SO?
Shaihi
There is already a related question on SO: http://stackoverflow.com/questions/524525/how-to-login-to-html-form-using-post-vars-in-c-net
John T
Thanks. I'll read through and ask more on SO if I don{t get it.
Shaihi