[EMAIL PROTECTED] writes:
> > Error 500 Can't connect to cnn.com:80 (operation now in
> > progress)
>
> I get a similar error myself on a new IIS server where it reports something
> like:
>
> Error 500 Can't connect to some.com:80 (bad protocol 'tcp')
If you read the IO::Socket::INET source you will see that this means
that the getprotobyname('tcp') call fails. You can test it directly
with a perl one-liner like this:
$ perl -le '$, = " "; print getprotobyname("tcp")'
tcp TCP 6
On Unix systems getprotobyname() is normally a lookup in the file
/etc/protocols, where you should find a entry for 'tcp'. I have no
idea how this database is mantained under NT.
Regards,
Gisle
> Since my system support has no idea what is going on, what would a guy want
> to look at to correct this error under NT and activestate perl?