Re: URL exists?

2003-11-10 Thread FlexibleLearning
Has anyone figured out a way ever to check if there's an internet connection in MetaCard? Low-tech: Try to download a small but known url. Trap error. $0.02 please. /H ___ metacard mailing list [EMAIL PROTECTED]

Re: URL exists?

2003-11-10 Thread FlexibleLearning
Has anyone figured out a way ever to check if there's an internet connection in MetaCard? Low-tech: Try to download a small but known url. Trap error. $0.02 please. /H ___ metacard mailing list [EMAIL PROTECTED]

Re: URL exists?

2003-11-08 Thread Karl Becker
On Friday, November 7, 2003, at 03:09 PM, Richard Gaskin wrote: Shari wrote: My fella keeps trying to talk me into getting DSL, but we're in disagreement on who spends the extra to get it ;-) It'll change your life. I'd give up cable TV in a heartbeat if it were a tradeoff between that and

Re: URL exists?

2003-11-07 Thread Scott Rossi
On 11/6/03 10:23 PM, Shari [EMAIL PROTECTED] wrote: What's the fastest way to check if an URL exists? I tried: if URL http://www.whatever.com/something/else.html; is empty then blah blah blah end if Very very slow. Is there a faster way? How do you define very very slow? When I

Re: URL exists?

2003-11-07 Thread xbury . cs
it -=- Xavier Bury TNS NT LAN Server ext 6465 Scott Rossi [EMAIL PROTECTED] Sent by: [EMAIL PROTECTED] 07/11/03 08:00 Please respond to Discussions on Metacard To: Metacard List [EMAIL PROTECTED] cc: Subject:Re: URL exists? . On 11/6/03 10:23 PM

Re: URL exists?

2003-11-07 Thread Brian Yennie
I think the only way that will be technically faster than this would be to use sockets, and make a HEAD request, rather than a GET for the url in question. You'd have to look up http protocol, but basically what it does it let you get just the http headers for a page rather than the contents.

Re: URL exists?

2003-11-07 Thread Scott Rossi
remember that getting a URL is a threaded event Do you mean blocking? When I put a large url, the script doesn't progress until the url data has been completely retrieved. Also, I believe Dave Cragg has confirmed that get url is a blocking call, which is why he developed the

Re: URL exists?

2003-11-07 Thread xbury . cs
PROTECTED] 07/11/03 08:42 Please respond to Discussions on Metacard To:Metacard List [EMAIL PROTECTED] cc: Subject:Re: URL exists? . remember that getting a URL is a threaded event Do you mean blocking? When I put a large url, the script doesn't progress until

Re: URL exists?

2003-11-07 Thread Dave Cragg
At 1:23 am -0500 7/11/03, Shari wrote: What's the fastest way to check if an URL exists? I tried: if URL http://www.whatever.com/something/else.html; is empty then blah blah blah end if Very very slow. Is there a faster way? You'll get different results, depending on whether the host server

Re: URL exists?

2003-11-07 Thread Shari
I think the only way that will be technically faster than this would be to use sockets, and make a HEAD request, rather than a GET for the url in question. You'd have to look up http protocol, but basically what it does it let you get just the http headers for a page rather than the contents.

Re: URL exists?

2003-11-07 Thread Shari
How do you define very very slow? When I use: get url http://www.blablabla.com/index.html; answer it ...on a DSL connection, the answer is near instantaneous, especially with a bogus domain/address. If you think about it, how else can you determine if a url exists without actually trying it?

Re: URL exists?

2003-11-07 Thread Shari
Dave, I will try your handler. Thanks! My fella keeps trying to talk me into getting DSL, but we're in disagreement on who spends the extra to get it ;-) Shari -- --Shareware Games for the Mac-- http://www.gypsyware.com ___ metacard mailing list

Re: URL exists?

2003-11-07 Thread Richard Gaskin
Shari wrote: My fella keeps trying to talk me into getting DSL, but we're in disagreement on who spends the extra to get it ;-) It'll change your life. I'd give up cable TV in a heartbeat if it were a tradeoff between that and broadband. As a software professional the time save uploading and

Re: URL exists

2000-12-28 Thread Sjoerd Op 't Land
Sivakatirswami wrote/ schreef: I tried: exists (URL "http://www.gurudeva.org/index.html") but it doesn't work even if the file is on the web site. ??Did I do something wrong? Try: if url "http://www.gurudeva.org/index.html" is empty then answer "The page doesn't exist." end