0
votes
Python sockets suddenly timing out?
The first thing I would check is whether you need to connect via an HTTP proxy (in which case direct connections bypassing the proxy will likely time out). Run Wireshark and see what happens.
…
0
votes
.NET’s SslStream is always negotiating to the least secure cipher I have. How can I change this?
In Java you can order the various algorithms/ciphers according to your needs and preferences. May be there is a similar API in .NET...
…
2
votes
“SocketException: Unconnected sockets not implemented” with self-signed SSL certificate
This is a hint rather than a proper answer: A cursory glance at Google results seems to suggest that the exception is usually caused by the code forcing the use of a default SSL socket factory that …
1
vote
What is the best way of handling non-validating SSL certificates in C#
What about the certsender argument? Does it contain anything sensible so that you can tell what connection the callback is happening for? I checked the .NET API but it doesn't say what …
0
votes
Webservices client and ssl
Are you sure you are connecting your HTTPS client to the server port that talks over HTTPS (TLS/SSL) rather than HTTP?
…
1
vote
OpenID Over SSL with self signed certificate
(Disclaimer: I'm new to OpenID, so I might be wrong here.) The communication between the Open ID Consumer (e.g., StackOverflow) and the Open ID Provider (your server) does not require HTTPS -- it w …
2
votes
AIX: IBM Java: java.net.SocketException: Connection timed out:could be due to invalid address
"java.net.SocketException: Socket closed" means that your side closed the socket. You say that this happens when you attempt to make an SSL connection to your server. However, the stack trace sugge …
