Stream

BlitzMax Forums/BlitzMax Beginners Area/Stream

patmaba(Posted 2007) [#1]
Hi,

I'm learning how-to use stream class with bmax.

I have executed the following code
in = ReadStream("http::blitzbasic.com")

If Not in RuntimeError "Failed to open stream"

While Not Eof(in)
	Print ReadLine(in)
Wend

CloseStream in


when i run the code, i receive the following error message

Unhandled Exception:Failed to open stream


Where i failed ?

Can you help me please ?

thanks


tonyg(Posted 2007) [#2]
here


patmaba(Posted 2007) [#3]
I'm using a proxy