Re: Getting data from a secure web page

2010-02-04 Thread Trevor DeVore
On Feb 3, 2010, at 9:04 PM, Sarah Reichelt wrote: Thanks for all this Trevor. I installed your custom libURL fine thanks. It now redirects but it doesn't get me where I want, instead I get: div class=errorYou must be logged in with a parent account to access this functionality./div If the

Re: Getting data from a secure web page

2010-02-04 Thread Sarah Reichelt
On Fri, Feb 5, 2010 at 12:00 AM, Trevor DeVore li...@mangomultimedia.com wrote: On Feb 3, 2010, at 9:04 PM, Sarah Reichelt wrote: Thanks for all this Trevor. I installed your custom libURL fine thanks. It now redirects but it doesn't get me where I want, instead I get: div class=errorYou

Re: Getting data from a secure web page

2010-02-03 Thread Bernard Devlin
On Wed, Feb 3, 2010 at 12:01 AM, Sarah Reichelt sarah.reich...@gmail.com wrote: revBrowser allows me to get the login page, enter my details and login, then get the html source so I can find the usage data I need, but this is only a useful technique if I have a way to submit a form

Re: Getting data from a secure web page

2010-02-03 Thread Dave Cragg
Sarah Not quite sure what you're wanting to do. Do you just want to get the html page normally returned after login from within a Rev script? If so, does this work? on mouseUp libUrlSetSSLVerification false ## SEE BELOW 1 put https://memberservices.optuszoo.com.au/login/; into tUrl put

Re: Getting data from a secure web page

2010-02-03 Thread Sarah Reichelt
On Wed, Feb 3, 2010 at 8:40 PM, Dave Cragg dave.cr...@lacscentre.co.uk wrote: Sarah Not quite sure what you're wanting to do. Do you just want to get the html page normally returned after login from within a Rev script? Yes. That way I can get the data automatically, without having to log in

Re: Getting data from a secure web page

2010-02-03 Thread Dave Cragg
On 3 Feb 2010, at 10:54, Sarah Reichelt wrote: On Wed, Feb 3, 2010 at 8:40 PM, Dave Cragg dave.cr...@lacscentre.co.uk wrote: Sarah Not quite sure what you're wanting to do. Do you just want to get the html page normally returned after login from within a Rev script? Yes. That way I

Re: Getting data from a secure web page

2010-02-03 Thread Trevor DeVore
On Feb 3, 2010, at 6:04 AM, Dave Cragg wrote: What happens if you try get instead of post get url https://memberservices.optuszoo.com.au/login/?Action=loginusername=abcpassword=abc (Not sure about that final forward slash.) libUrl will follow redirects (the 302 response) when using get

Re: Getting data from a secure web page

2010-02-03 Thread Dave Cragg
On 3 Feb 2010, at 15:23, Trevor DeVore wrote: I added support for following 302 with POST, DELETE and PUT requests in the version of libURL that comes with the GLX App Framework. But then it isn't standards compliant. :-) From rfc2616 If the 302 status code is received in response to a

Re: Getting data from a secure web page

2010-02-03 Thread Trevor DeVore
On Feb 3, 2010, at 10:40 AM, Dave Cragg wrote: On 3 Feb 2010, at 15:23, Trevor DeVore wrote: I added support for following 302 with POST, DELETE and PUT requests in the version of libURL that comes with the GLX App Framework. But then it isn't standards compliant. :-) From rfc2616 If

Re: Getting data from a secure web page

2010-02-03 Thread Dave Cragg
On 3 Feb 2010, at 15:58, Trevor DeVore wrote: That is why I installed a callback when I implemented it :-) I should have known you'd have taken care of things like that. Cheers Dave ___ use-revolution mailing list use-revolution@lists.runrev.com

Re: Getting data from a secure web page

2010-02-03 Thread Sarah Reichelt
OK, I think I'm going round in every decreasing circles but I thought I would describe the steps I am taking, in case anyone else found it useful. Using Firefox and Firebug to check what is going on, I see the following: I connect to

Re: Getting data from a secure web page

2010-02-03 Thread Trevor DeVore
On Feb 3, 2010, at 7:40 PM, Sarah Reichelt wrote: Trevor, I downloaded your framework and got the modified libURL, but the stack won't open - it says it is corrupt. I wonder is this due to the multi-dimensional arrays stored as custom properties bug? I opened the stack in a text editor and

Re: Getting data from a secure web page

2010-02-03 Thread Sarah Reichelt
The custom version of libURL is actually a plain text document. Here are the instructions for installing it: http://revolution.screenstepslive.com/spaces/revolution/manuals/glxapp/lessons/5615-How-Do-I-Install-the-Custom-Version-of-libURL- This version of libURL will also handle cookies for

Getting data from a secure web page

2010-02-02 Thread Sarah Reichelt
Hi All, I need the ability to download a secure web page (I have the login details) and get data from it. This is so I can allow everyone to monitor internet usage, so we don't go over in a month and get speed-capped to dial-up to speeds. On my browser, I go to

Re: Getting data from a secure web page

2010-02-02 Thread Jim Ault
Quick suggestion: more later when I have time Look at the LiveHeaders in Firefox and see what the Authorization header says when you do the direct login Then add the custom header in Rev before sending. Basic Authorization is just the name and password in base64. This was part of a question I

Re: Getting data from a secure web page

2010-02-02 Thread Terry Judd
Hi Sarah - I'd really like to see a solution to this as well, so if you come up with anything can you post it to the list? Best regards, Terry... On 3/02/10 11:01 AM, Sarah Reichelt sarah.reich...@gmail.com wrote: Hi All, I need the ability to download a secure web page (I have the login