How do I bypass invalid SSL certificate errors with Apache HttpClient 4.0?
|
|
You need to create a SSLContext with your own TrustManager and create HTTPS scheme using this context. Here is the code,
|
|||||||||||||||||||
|
|
Just for the record, there is a much simpler way to accomplish the same with HttpClient 4.1
|
||||
|
|||
|
|
|
This is how I did it -
Initialising DefaultHTTPClient -
Mock SSL Factory -
If behind a proxy, need to do this -
|
|||||||
|
|
If all you want to do is get rid of invalid hostname errors you can just do:
|
|||||
|
|
In extension to ZZ Coder's answer it will be nice to override the hostnameverifier.
|
|||||||
|
|
The answer posted on this comment helped me! |
|||
|
|
|
a full working version for Apache HttpClient 4.1.3 (based on oleg's code above, but it still needed an allow_all_hostname_verifier on my system):
Note I'm re-throwing all exceptions because really, there's not much I can do if any of this fails in a real system! |
|||
|
|
An example in ScalaZZ Coder's answer gives most of what you need, but I still had to figure out the rest of the pieces. Here's a more complete example in three separate files. Remember that the intention is to suppress the error (and not to actually fix the certificate problem). Sometimes this is what you need to get past the error and build your application's logic. I hope this provides a little more context to pair with other answers on this topic. In
In
And a usage example:
|
|||||
|
|
If you encountered this problem when using AmazonS3Client, which embeds Apache HttpClient 4.1, you simply need to define a system property like this so that the SSL cert checker is relaxed: -Dcom.amazonaws.sdk.disableCertChecking=true Mischief managed |
|||
|
|