http in Dolphin

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
3 messages Options
Reply | Threaded
Open this post in threaded view
|

http in Dolphin

Germán S. Arduino
Hello:

I'm trying to learn Dolphin, and inside a test program I wants to execute
something like this:

http://www.myurl.com/cgi-bin/program.cgi?param1,param2,param3

Someone can suggest me some simple way to make that?

TIA and Best Regards.

---
Germán Arduino.
RVAit
http://www.rva.com.ar/indexe.htm


Reply | Threaded
Open this post in threaded view
|

Re: http in Dolphin

Christopher J. Demers
Germán S. Arduino <[hidden email]> wrote in message
news:adb7vm$uve04$[hidden email]...
> I'm trying to learn Dolphin, and inside a test program I wants to execute
> something like this:
> http://www.myurl.com/cgi-bin/program.cgi?param1,param2,param3
> Someone can suggest me some simple way to make that?

Try something like this,

 (FileStream on: (IStream onURL: 'http://www.yahoo.com') text: true)
contents.

It is a simplified version of what's going on in LiveUpdate
class<<urlContents: .

Chris


Reply | Threaded
Open this post in threaded view
|

RE: http in Dolphin

Germán S. Arduino
Seem to works.

Thanks Christopher.

---
Germán Arduino.


Christopher J. Demers <[hidden email]> escribió en el
mensaje de noticias adbtma$vdnqq$[hidden email]...
> Germán S. Arduino <[hidden email]> wrote in message
> news:adb7vm$uve04$[hidden email]...
> > I'm trying to learn Dolphin, and inside a test program I wants to
execute

> > something like this:
> > http://www.myurl.com/cgi-bin/program.cgi?param1,param2,param3
> > Someone can suggest me some simple way to make that?
>
> Try something like this,
>
>  (FileStream on: (IStream onURL: 'http://www.yahoo.com') text: true)
> contents.
>
> It is a simplified version of what's going on in LiveUpdate
> class<<urlContents: .
>
> Chris
>
>
>