1

I'm required to write a SSL connection, but It requires a signed certificate. There is a way to disable the checking so that I can only test my application. Regards,

Isaaac_Perlman
  • 322
  • 5
  • 19
  • Hi please check http://stackoverflow.com/questions/2a694281/ignore-certificate-errors-when-requesting-a-url-in-java/2694367#2694367 – ring bearer Apr 30 '10 at 17:38
  • 1
    @ring bearer- that page yields a not-found error. Did you mean http://stackoverflow.com/questions/2694281/ignore-certificate-errors-when-requesting-a-url-in-java/2694367#2694367 ? – dash-tom-bang Apr 30 '10 at 17:43
  • Yes! copy paste gone wrong. But a developer should be able to figure that out regardless :) – ring bearer May 02 '10 at 14:23

2 Answers2

2

Just create a self-signed certificate: http://novosial.org/openssl/self-signed/

Peter N. Steinmetz
  • 1,252
  • 1
  • 15
  • 23
John Weldon
  • 39,849
  • 11
  • 94
  • 127
0

Did you solve this? This seems like you could use/write a TrustManager that trusts all certificates and thereby enable you to continue on to your app.

iowatiger08
  • 1,892
  • 24
  • 30