Getting a web page
I'm a newbie to Smalltalk, but not to programming. I'm trying to get a web page using an example from Squeak and Pharo (which I have loaded on my machine): " Â HTTPSocket httpShowPage: 'http://www.altavista.digital.com/ index.html' Â Â Â " When I select this and do it - I get nothing. When I select this and print it - I get nil What am I doing wrong? Thanks, Steve
Hi and welcome. Maybe this screencast help you: http://pharocasts.blogspot.com/2010/02/rest-xml-parsing-and-photos.html Look for some classes/messages that Laurent uses there. Cheers Mariano On Fri, Feb 26, 2010 at 11:35 AM, Steve Graham <jsgrahamus@yahoo.com> wrote:
I'm a newbie to Smalltalk, but not to programming.
I'm trying to get a web page using an example from Squeak and Pharo (which I have loaded on my machine):
" HTTPSocket httpShowPage: 'http://www.altavista.digital.com/<http://www.google.com/url?sa=D&q=http://www.altavista.digital.com/&usg=AFQjCNEfNz7zuDpk0GGTtSHZKklP3cg4rg> index.html' "
When I select this and do it - I get nothing.
When I select this and print it - I get nil
What am I doing wrong?
Thanks, Steve
_______________________________________________ Pharo-users mailing list Pharo-users@lists.gforge.inria.fr http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-users
On Feb 26, 2010, at 4:22 PM, Mariano Martinez Peck wrote:
On Fri, Feb 26, 2010 at 11:35 AM, Steve Graham <jsgrahamus@yahoo.com> wrote: I'm a newbie to Smalltalk, but not to programming.
I'm trying to get a web page using an example from Squeak and Pharo (which I have loaded on my machine):
" HTTPSocket httpShowPage: 'http://www.altavista.digital.com/ index.html' "
use another server :-) the digital is dead :-) HTTPSocket httpShowPage: 'heise.de' Works here. But: this method is kind of useless, as it just dispays the html by doing: (StringHolder new contents: doc) openLabel: url. We should remove that method. Marcus -- Marcus Denker -- http://www.marcusdenker.de INRIA Lille -- Nord Europe. Team RMoD.
participants (3)
-
Marcus Denker -
Mariano Martinez Peck -
Steve Graham