Jump to Navigation

Me on Twitter

  • RT @codinghorror: Don't forget to have an extra special scary programmer halloween.. by doing the SCARIEST THING IMAGINABLE... looking at y… 5 years 28 weeks ago
  • @instapaper @Pocket @wallabagapp I'm now using a personal instance of #wallabag and it really does the job ! 5 years 28 weeks ago
  • @instapaper @Pocket @wallabagapp I'm now using a personal instance of #wallabag and it really does the job ! 5 years 29 weeks ago
  • RT @gavinsblog: Spot the robot dog dancing to UpTown Funk is simultaneously both terrifying and hilarious. https://t.co/UNPsXZrXvh 5 years 29 weeks ago
  • Almost full screen cookie warning... On the cookie policy page ! The Internet is going crazy... #GDPR https://t.co/n3RtuNYJC8 5 years 29 weeks ago
  • @TwidereProject I hope not. Twidere is the best Twitter client around. I've tried many before, including Twitter's… https://t.co/XZWJNwqk1U 5 years 30 weeks ago
  • Not being aware of an exploit doesn't mean there wasn't... New Bluetooth Hack Affects Millions of Devices from Maj… https://t.co/Prjj3VMCnV 5 years 30 weeks ago
  • @_FranceConnect_ A est-il prévu pour fournir l'équivalent d'un justificatif de domicile à toute société le demandant ? 5 years 33 weeks ago
  • @GroupeLaPoste Bravo pour https://t.co/cBOQQDdlVq Le facteur est venu vérifier mon identité en 24h et mon identité… https://t.co/xixwTwxsCF 5 years 33 weeks ago
  • Soooo true.... https://t.co/vhEsNGV0uQ 5 years 34 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