[Synalist] RE : Https error: network subsystem is unusable
Pascal TCP/IP Library
Brought to you by:
geby
|
From: Ludo B. <lud...@fr...> - 2011-08-14 07:43:20
|
I have this simple multi-thread program that makes https requests.
Unfortunately the requests are returning this error message: "network
subsystem is unusable"
I can't find the cause or explanation.
I tried to force the ssl type to v2 and v3, but this error keeps showing up.
I also have tried with dlls from both 0.98h and 1.0d.
I also have tried to run it on different computers, 32bit Seven and 32bit
xp.
No luky so far.
Some advice?
WSASYSNOTREADY ("network subsystem is unusable") is the error returned when
SSL.Connect fails. You can get more error info from
THTTPSend.Sock.SSL.LastError; and THTTPSend.Sock.SSL.LastErrorDesc; .
If the error occurs for one site in particular you can get more info from
running "openssl s_client -connect host:port" from the command line.
If all https requests fail, check that THTTPSend.Sock.SSL.LibVersion returns
the openssl version. If not, the application couldn't load the openssl
library.
Ludo
|