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

[ALLY] [REBOL] Can't connect to REBOL site with VIEW Re:

From: gord:raboud:home at: 24-Aug-2000 21:12

Hello Julian; Thanks for answering my question. Sorry it took so long to try this out and answer. What you suggested seems to work okay and that 'probe proxy' command has returned some interesting information. The 'User:' function and the 'Pass:' function have queries for a username and password that don't get asked! Carl had me try running a rebol script from the console and that provided a couple answers which I have included in another e-mail.
>Try typing this at the console, 'trace/net on', then try and access a >site ('read http://www.rebol.com'), and see what happens.
Here is the result which is normal, (I think). URL Parse: none none www.rebol.com none none none Net-log: ["Opening tcp for" HTTP] Net-log: {GET http://www.rebol.com/ HTTP/1.0 Accept: */* Connection: close User-Agent: REBOL 0.10.18.1.1 Host: www.rebol.com } Net-log: "HTTP/1.0 200 OK" Net-log: ["low level read of " 10824 "bytes"] == {<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN"> <HTML> <HEAD> <META HTTP-EQUIV="Content-Type" CONTENT="text/html;CHARSET=iso-...
>Also, what is the output of this? > >probe system/schemes/default/proxy >
Here is the result: make object! [ host: 24.64.2.34 port-id: 8080 user: func [][ system/schemes/default/proxy/user: ask "Enter proxy authentication username: "] pass: func [][ system/schemes/default/proxy/pass: ask/hide "Enter proxy authentication password: "] type: 'generic bypass: [] ] -- Yours Truly Gordon Raboud [raboudgo--home--com]