Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Newbie needs help with Services

From: kpeters-vu::ware::com at: 10-Nov-2005 15:30

Rebolers ~ I run a client & a server script both on the same XP machine in two instances of the current VIEW release: ;server script REBOL [Title: "Example Server"] do http://www.rebol.net/rebservices/server.r service: start-service tcp://:8000 ask "PRESS ENTER TO QUIT" stop-service service ;and the client script REBOL [TITLE: "Example client"] do http://www.rebol.net/rebservices/client.r result: do-service tcp://127.0.0.1:8000 [time] print result Whether I try localhost/127.0.0.1/real IP: The client just hangs and (after some timeout?) claims it cannot connect...??? Any help would be appreciated TIA, Kai