[REBOL] Re: problems with url...
From: ingo:2b1 at: 19-Jun-2002 8:11
Hi Cyphre,
Cyphre wrote:
> I have this problem, how to 'read following url from rebol?
>
> http://slovnik.nettown.cz/?co=naslepo&kde=A-%C8
There is a bug in the url! handling. Percent-escaped characters are
unescaped at two different places. So one possible solution is to
percent-escape the percent ...
>> read http://slovnik.nettown.cz/?co=naslepo&kde=A-%25C8
[Accept Connection User-Agent Host]
["*/*" "close" "REBOL 1.2.5.4.2" "slovnik.nettown.cz"]
*/*
close
REBOL 1.2.5.4.2
slovnik.nettown.cz
** User Error: Error. Target url:
http://slovnik.nettown.cz/?co=naslepo&kde=A-%C8 could not be retrieved.
Server response: HTTP/1.0 404 WWWOFFLE Will Get
** Near: read http://slovnik.nettown.cz/?co=naslepo&kde=A-%C8
I hope that helps,
Ingo