Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

After hours of searching and trying things out I haven't succeeded in finding any tutorial on how to create a secure tcp socket on an android phone.

I already have jks AND bks keyStore and trustStore.

I have made a java application using the following method:

System.setProperty("javax.net.ssl.keyStore","keyStore.jks"); System.setProperty("javax.net.ssl.keyStorePassword", "password");

...

SSLSocketFactory factory = (SSLSocketFactory) SSLSocketFactory.getDefault(); SSLSocket sslSock = (SSLSocket) factory.createSocket("server",443);

But I have then found out that System.setProperty(...) does not work on android and so I got the following exception; javax.net.ssl.SSLHandshakeException: java.security.cert.CertPathValidatorException: Trust anchor for certification path not found.

Then I tried the suggestion from Otra here: How Can I Access an SSL Connection Through Android?

but there I got: KeyManagementException: Do not init() the default SSLContext

on line:

sslContext. init(...)

I have run out of ideas. If anyone could suggest any other solutions I would be very grateful.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.