[android-developers] Re: SSLContext.getInstance(SSL) throws java.security.NosuchAlgorithmException: SSLContext SSL implementation not found

2010-11-03 Thread gato
yep! you are right DanH , I'm using TLS not TSL. Any way the net.ssl.SSLException: Not Trusted server certificate Excepetion stiil there thank you for your help. On Nov 2, 6:48 pm, DanH danhi...@ieee.org wrote: Was just wondering because you were doing a getInstance on TSL, not TLS. On Nov

[android-developers] Re: SSLContext.getInstance(SSL) throws java.security.NosuchAlgorithmException: SSLContext SSL implementation not found

2010-11-03 Thread gato
i will try on lower versions. On Nov 2, 3:09 pm, Kumar Bibek coomar@gmail.com wrote: SSL context is not implemented on Android. And as far as certificate exception issue, there seems to be a problem on 2.2 where some TrustManagers do not work as expected, which do work on lower versions.

[android-developers] Re: SSLContext.getInstance(SSL) throws java.security.NosuchAlgorithmException: SSLContext SSL implementation not found

2010-11-03 Thread DanH
Not trusted server certificate means the server's certificate can't be traced back to one of the roots known to the phone. Most phones (for reasons I don't understand) have a deficiency of root certificates, so it's not unusual to find a server that doesn't have a valid certificate, from the

Re: [android-developers] Re: SSLContext.getInstance(SSL) throws java.security.NosuchAlgorithmException: SSLContext SSL implementation not found

2010-11-02 Thread gato chlr
DanH , thanks for the answer, i have read about TLS, and now i know it is a SSLv3. I have tried with TLS , and it works! but, then i get a javax.net.ssl.SSLException: Not Trusted server certificate. So it seems that my know my dummy trustManager is not working :S. the exception occurs in the

Re: [android-developers] Re: SSLContext.getInstance(SSL) throws java.security.NosuchAlgorithmException: SSLContext SSL implementation not found

2010-11-02 Thread gato chlr
somebody? On 1 November 2010 15:04, gato chlr dany...@gmail.com wrote: DanH , thanks for the answer, i have read about TLS, and now i know it is a SSLv3. I have tried with TLS , and it works! but, then i get a javax.net.ssl.SSLException: Not Trusted server certificate. So it seems that my

Re: [android-developers] Re: SSLContext.getInstance(SSL) throws java.security.NosuchAlgorithmException: SSLContext SSL implementation not found

2010-11-02 Thread Kumar Bibek
SSL context is not implemented on Android. And as far as certificate exception issue, there seems to be a problem on 2.2 where some TrustManagers do not work as expected, which do work on lower versions. Even I am stuck with this issue. Seems like a 2.2 issue. I had read about this somehwere.

[android-developers] Re: SSLContext.getInstance(SSL) throws java.security.NosuchAlgorithmException: SSLContext SSL implementation not found

2010-11-02 Thread DanH
Was just wondering because you were doing a getInstance on TSL, not TLS. On Nov 1, 2:04 pm, gato chlr dany...@gmail.com wrote: DanH , thanks for the answer, i have read about TLS, and now i know it is a SSLv3. I have tried with TLS , and it works! but, then i get a

[android-developers] Re: SSLContext.getInstance(SSL) throws java.security.NosuchAlgorithmException: SSLContext SSL implementation not found

2010-11-01 Thread DanH
Have you tried TLS? On Nov 1, 9:29 am, gato chlr dany...@gmail.com wrote: Hi list, i want to implement a client for https, all in my localhost (in my apache, it is configured to ask authentication), with a resource https://localhost:443/resources/resource1.xml; the server works fine. I