Jump to Navigation

Me on Twitter

  • @twandroid #TinyTinyRss Défaut : s'installe sur votre propre hébergement. Avantage : s'installe sur votre propre hébergement. #OpenSource 10 years 42 weeks ago
  • Google Drive Linux Petition Now 10k Signatures Strong, Google Yet to Respond http://t.co/tJLY5KkkLi via @omgubuntu 10 years 42 weeks ago
  • I've found my new #GoogleReader : #TinyTinyRss http://t.co/0WFXlu6rRg. It has a very good #Android client. It's #OpenSource ! 10 years 43 weeks ago
  • @wadael I'm not at #droidcon Will you release the slides soon ? @am_technix 10 years 44 weeks ago
  • Forgot about that : you can't use \u000D in a String in #Java because the compiler parses it early... http://t.co/a0eL1WpgvT 10 years 46 weeks ago
  • Some #CSS3 transitions, a little bit of Javascript and you've got a nice Feedback button http://t.co/SVEbCAmq81 10 years 47 weeks ago
  • #angrybirdsScore I am definitely NOT an artist #absync http://t.co/qqTQ6mXB3k 10 years 47 weeks ago
  • #android Loaders : forceLoad or not ? Answer is : sometimes YES, sometimes NO. #NoClue http://t.co/8Po1SfDGuS 10 years 47 weeks ago
  • Never update #android sdk if ur not sure 2 be able 2 update ADT right after or u'll be stuck in #eclipse... Maybe I've 2 look at #intellij 10 years 47 weeks ago
  • Hey ! I have 2 #nexus7 ! http://t.co/SKxHWycW6x 10 years 48 weeks ago

apache commons

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