You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@harmony.apache.org by Alexander Kleymenov <kl...@gmail.com> on 2006/11/01 11:50:20 UTC

Re: [classlib][xnet] Problem connecting using SSLSocketImpl

Hi Gerald,

I'm very happy to hear this issue was fixed.
Thank you for your participation in its resolution!

With my latest patch supplied with HARMONY-2029 JIRA report you can
use Harmony VM and JSSE to work with PKCS12 stores.
To adapt your client code for Harmony you should convert JKS trust
store to BKS type (or generate new BKS one), and rewrite the following
lines of your code:

        KeyManagerFactory kmf = KeyManagerFactory.getInstance(
                KeyManagerFactory.getDefaultAlgorithm());

        . . .

        TrustManagerFactory tmf = TrustManagerFactory.getInstance(
                TrustManagerFactory.getDefaultAlgorithm());


Please feel free to ask if you have any problems with it.

Thank You,
Alexander Kleymenov


On 10/26/06, Gerald Jerome <ge...@verizonbusiness.com> wrote:
> Hi Alexander,
>
> Great job!  This latest patch appears to have fixed the connection issue
> with SSLSocketImpl and I have started testing renegotiation with our host.
> Everything appears to be working as expected with no errors.  Thanks for
> hanging in there and getting this fixed.
>
> Regards,
> Gerald Jerome
> Vnet 262-2375
>