[REBOL] http server... Re:(6)

1999-01-02 Thread giesse
[EMAIL PROTECTED] wrote: port: open/binary tcp://localhost:80 insert port make string! [ "GET /Books/Dictionary/A-dct.txt HTTP/1.0" CRLF CRLF ] wait port buffer: make string! 1024 read-io port buffer 1024 close port print mold buffer Rebol waited, the server

[REBOL] http server... Re:(6)

1999-01-02 Thread giesse
[EMAIL PROTECTED] wrote: http-port: open tcp://localhost:80 insert http-port "GET /dctfiles_new\AA.htm HTTP/1.0^m^j^m^j" while [data: copy http-port] [prin data] html h1A's/h1 bsylablesA's/sylables/b br /html == none That sounds like an HTTP 0.9 server. Perhaps REBOL doesn't