From: Gunter on
Hello All,
I need help: how can I call an URL from insite a VO-Application and if
applicable resume a ( certain part of a) content of the site?

regards,
Gunter

From: Geoff Schaller on
Have a look at the HTTP classes. With these you can contact a website,
log in to secure pages, grab a session cookie, download a page (or file
- it is universally called a 'document') and post information back.

It was first documented in the 2.5 Update manual and is in the current
help file. This should do what you want. Support examples are very
limited though.

Geoff


"Gunter" <g.huebner(a)dsh-anklam.de> wrote in message
news:38d5999a-3d54-41a2-95c5-22470264e508(a)z30g2000yqz.googlegroups.com:

> Hello All,
> I need help: how can I call an URL from insite a VO-Application and if
> applicable resume a ( certain part of a) content of the site?
>
> regards,
> Gunter

From: Tom Szabo on
It is actuall quite simple:

=================================
method Any(....
local oHttp as cHttp
local cPage....

oHttp := cHttp{"Any String"}

cPage := oHttp:GetDocumentByURL("http://rdplus.com.au")
===================================
cPage now contains the content of the given page in html format

I hope it helps

Regards,

Tom

"Gunter" <g.huebner(a)dsh-anklam.de> wrote in message
news:38d5999a-3d54-41a2-95c5-22470264e508(a)z30g2000yqz.googlegroups.com...
> Hello All,
> I need help: how can I call an URL from insite a VO-Application and if
> applicable resume a ( certain part of a) content of the site?
>
> regards,
> Gunter
>


From: Gunter on
Hello Geoff, hello Szabo,
Thanks for your message.
It is truly very easy - if you know it.

best regards
Gunter