[REBOL] [rugby-core release]
From: pat665:ifrance at: 9-Feb-2002 14:58
Hi Maarten,
I have started testing rugby-core (as I call it).
1. Get-rugby-service needs the :8002 port explicitely, otherwise connection
fails.
>> do get-rugby-service http://192.168.1.51
** Access Error: Cannot connect to 192.168.1.51
** Where: open-proto
** Near: return to-result read/custom proxy reduce
>> do get-rugby-service http://192.168.1.51:8002
>>
2. Rexec needs the :8002 port explicitely, otherwise connection fails.
>> rexec/with [triple 15] http://192.168.1.51
** Access Error: Cannot connect to 192.168.1.51
** Where: open-proto
** Near: return to-result read/custom proxy reduce
>> rexec/with [triple 15] http://192.168.1.51:8002
== 45
>>
3. As pekr had already mentioned tcp:// is a little bit confusing in
serve/with [now] tcp://:9002
In my opinion, it would be more logical to use
serve/with [now] 9002
Patrick