> Where can I get this list? Thanks.
hmmm...
I don't know what a netError of 2 would be. that said here is a handler that
I include in all my network operations objects that returns the verbose info
on the errors that I know about. if you do find out what an error of 2 is,
or any others that are not in this listing please post them back to the list
so that others can benefit.
HTH,
Al Hospers
CamberSoft, Inc.
al<at>cambersoft<dot>com
http://www.cambersoft.com
A famous linguist once said:
"There is no language wherein a double
positive can form a negative."
YEAH, RIGHT
======== LINGO FOLLOWS =======
on getNetErrorString me, errorCode
case (errorCode) of
"OK": return "OK"
0: return "OK"
4: return "Bad MOA Class."
5: return "Bad MOA Interface."
6: return "Bad URL or Bad MOA class."
20: return "Internal error"
905: return "Bad URL"
4144: return "Failed network operation."
4145: return "Failed network operation."
4146: return "Connection could not be established with the remote host"
4147: return "Failed network operation."
4148: return "Failed network operation."
4149: return "Data supplied by the server was in an unexpected format"
4150: return "Unexpected early closing of connection"
4151: return "Failed network operation."
4152: return "Failed network operation."
4153: return "Failed network operation."
4154: return "Operation could not be completed due to timeout"
4155: return "Not enough memory available to complete the transaction"
4156: return "Protocol reply to request indicates an error in the reply"
4157: return "Transaction failed to be authenticated"
4159: return "Invalid URL"
4160: return "Failed network operation."
4161: return "Failed network operation."
4162: return "Failed network operation."
4163: return "Failed network operation."
4164: return "Could not create a socket"
4165: return"Requested Object could not be found (URL may be incorrect)"
4166: return "Generic proxy failure"
4167 : return "Transfer was intentionally interrupted by client"
4168: return "Failed network operation."
4242: return "Download stopped by netAbort(url)"
4836: return "Download stopped for an unknown reason."
otherwise
return "unknown error"
end case
end
[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi To post messages to the list,
email [EMAIL PROTECTED] (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo. Thanks!]