|
|
|
|
|
by sid-
4380 days ago
|
|
In java to be able to crawl a https url you have to do the following -
http://www.coderanch.com/t/134619/Security/JDK-trust-Certifi...
Its easier in other languages but its not that hard in java.
Just export certificate via IE and save to disk and from the jre/lib/security folder and issue one command
keytool -import -alias mycert -keystore cacerts -file d:\mycert.cer.
(default password is changeit)
Done. |
|