That worked! Thanks for all the help. I guess if I had
made the time to actually learn Rebol I would have been able to identify
the problem and fix it myself. Well, that means I have more motivation
to do something I've been wanting do anyway.
Thanks again for all the help,
Larry
-----Original Message-----
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]
Sent: Monday, September 27, 1999 1:22
PM
To: [EMAIL PROTECTED]
Subject: [REBOL] Monitoring TCP
ports Re:(5)
OK, I thought I was smart but it seems
that testing is still a good
idea. ;) I missed the brackets... see
below and try again. Sorry for
the failed fix.
Sterling
And my _tests_ this time work for me.
> I made the recommended
change and got the following:
>
> Script: "REBOL HTTP
Proxy" (4-Aug-1999)
> ** Script Error: Invalid
argument: (missing value).
> ** Where: proxy: make
system/schemes/default/proxy
> >>
>
> Thanks for all your
help,
> Larry
Change these lines:
port-spec: make port! [
scheme: 'tcp
port-id: 80
]
to
these:
port-spec: make port! [
scheme: 'tcp
port-id: 80
proxy: make system/schemes/default/proxy []
]
