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

[REBOL] Re: Rugby

From: ammon:rcslv at: 1-Jul-2002 22:50

Hi, I think that I spoke a little too soon. ;-( I failed to notice one slight detail, as the following cut'n'paste from the console will reveal it attempts to connect to 127.0.0.1 to execute the command, which is fine if the I am actually trying to use the local machine, but it really doesn't serve much of a purpose if i want to do it accross a network...
>> do %/usr/rugby/rugby.r
Script: "Rugby" (1-Jul-2002/22:35:56-7:00) HTTPR protocol loaded
>> do get-rugby-service http://172.30.8.12:8002
connecting to: 172.30.8.12
>> triple 3
connecting to: 127.0.0.1 == 9 Hmm... What could be the trouble, let's see, the docs say something about using the /with refinement to use something other than local host, let's see...
>> serve/with [triple] http://172.30.8.12:8002
** Access Error: Network timeout ** Where: continue-post ** Near: open/no-wait dest Network Timeout, and I am trying to start a server? Maybe I used the wrong syntax, let's try something closer to what the docs suggest:
>> serve/with [triple] http://:8001
** Access Error: Cannot connect to mail.ucglink.net ** Where: open-proto ** Near: open/no-wait dest What the heck does it care about my mail server for?
>> serve [triple]
** Access Error: Error opening socket listen port ** Where: init-server-port ** Near: open/no-wait dest Wait a minute! Now it won't even serve on the the local host?!? I think I will sit back and relax while the great minds explain! ;-) Thanks!! Ammon A short time ago, Maarten Koopmans, sent an email stating: