Recently, when working on an integration API written in ASP.Net which communicates with a web-services developed using PHP, the tech support requested to force all the secure communication (over HTTPS) to use only the SSL v3 version. This can be controlled in PHP CURL via single line of code as shown blow: 1 curl_setopt($curl, CURLOPT_SSLVERSION,3);curl_setopt($curl, […]
Posts Tagged ‘SSL’
Android HTTPS and Not trusted server certificate Error
When working on a Android REST based web-service client on Android platform, I was getting following error when calling the API over the HTTPS: javax.net.ssl.SSLException: Not trusted server certificate The reason for this problem is quite obvious and that’s, on the development server, I was using the self signed certificate and it was causing this […]
SSL Certificate Validation Error in .Net
When working on a .Net project (in Frame 2.0), I was having a hard time connecting with the local secure server using the self signed SSL certificate. When connecting to that server using the HttpWebRequest object, it was throwing the following error: “The remote certificate is invalid according to the validation procedure” Looking for the […]
HTTPS Connection Partially Encrprypted Warning on Firefox
One of our client reported a problem that on some of their site secure pages FireFox displays the “connection partially encrprypted warning” (by showing a small “i” on secure lock icon). When I first started looking at that problem, I thought it would be something as simple as some page being hosted on the HTTP […]