Reading an Internet site.
get(url:STRING):STRING is
--
local
seite:HTTP_PROTOCOL
address:HTTP_URL
do
create address.make (url)
create seite.make (address)
seite.set_read_mode
seite.open
seite.initiate_transfer
seite.read
Result:=seite.last_packet
seite.close
end
When I now read a normal Internet Site (like
http://www.example.com/index.php), denn it functions. But when I trie to read
the Site http://www.hallenstadion.ch/event/index_middle.php3?pos=0&order=datum
the I get error_level=1 (file not found), does any one have an Idea
why I get this and how I can fix this problem?
|