Jump to Navigation

Me on Twitter

  • @ak_anneka Je découvre ton travail : c'est génial et ça donne envie d'en avoir un chez soi ! 5 years 35 weeks ago
  • RT @ak_anneka: Je l'ai terminé ! I did it, I did it, yeah! #art #ink #artist #bird #tiny #objects #doodle #fun #color #red #yellow #ooak ht… 5 years 35 weeks ago
  • RT @Devoxx: 5 years 37 weeks ago
  • RT @esa: Our week in #space images, featuring an Earth view taken by @Astro_Alex on the Space Station, the #Aeolus satellite's Vega rocket… 5 years 38 weeks ago
  • Wow.... Huge reservoir of liquid water detected under the surface of Mars https://t.co/PsJpjY7uFC via @AAAS @EurekAlert 5 years 41 weeks ago
  • RT @ChromiumDev: 5 years 41 weeks ago
  • RT @rupl: 5 years 42 weeks ago
  • Sorry @instapaper I can't wait any longer for you to be back online for Europeans. I'm back to @Pocket 5 years 47 weeks ago
  • Today it's #aiparis. Let's See that... 5 years 47 weeks ago
  • RT @MKBHD: Confirmed: You learn WAY more outside your comfort zone than in it. 5 years 49 weeks ago

https

java HttpClient 3.x : a portable SSL Socket Factory implementation

I was just trying to implement client and server authentication over SSL on IBM Websphere 6 (JRE 1.4.2)...

[...]

It may sound awkward in 2012, but if you wish the HTTPS server to identify your Java client (versus : only the server is identified), you will have to write your own implementation of a socket factory.

The Java Runtime Environment doesn't provide ready-to-use classes to do this. Yes : there is javax.net.ssl.SSLSocketFactory.getDefault() but it requires to set some system (therefore global) properties to point to the certificates files !!!

Even with Apache's HttpClient (at least version 3.x), you have to use a custom SSLProtocolSocketFactory.

The HttpClient SSL Guide provides sample code to implement mutual client and server authentication ; unfortunately the latest stable release of it (contrib 3.1) is bound to Sun's API with imports such as com.sun.net.ssl.KeyManagerFactory. Needless to say that this will not work on an IBM Websphere JRE...

This article contains an implementation of a SSLProtocolSocketFactory for HttpClient, to whom may be interested...

Syndicate content