[android-developers] Re: How to import a new CA certificate

2008-11-15 Thread davin_thompson
Having a very similar issue... I really think we need to create some form of a global keystore import app idealy... or, fix the AllowAllHostnameVerifier() method at least. Im still digging to try to make a successfully connection on an invalid cert... On Oct 20, 3:59 am, vel <[EMAIL PROTECTED

[android-developers] Re: How to import a new CA certificate

2008-10-20 Thread vel
Here is a way to configure to the SSLContext TrustManager[] trustAllCerts = new TrustManager[] { new X509TrustManager() { public java.security.cert.X509Certificate[] getAcceptedIssuers() { return acceptedIssuers; } pu

[android-developers] Re: How to import a new CA certificate

2008-09-23 Thread lm
Thank you for reply my question. I use the webkit to browse the WWW. I don't know how to store the cetificate(s) in it. Thank you very much to show me the way to store the cetificate(s). Or could you tell me orther ways to solve this problem? Thanks. On 9月24日, 上午7時45分, "Megha Joshi" <[EMAIL PROTE

[android-developers] Re: How to import a new CA certificate

2008-09-23 Thread Megha Joshi
It is recommended to build an application-specific keystore with only the needed certificate(s) in it. If you have a specific server certificate you want to trust, even if it isn't part of a complete chain, put in into this store. Same for client certificates that might be need for authenticating t

[android-developers] Re: How to import a new CA certificate

2008-09-22 Thread lm
Hi,I connect to gmail with developing board with android. But I can't login and it show a warning cetificate untrusted. Is it for the android can't store the CA? On 9月8日, 下午11時47分, maennel <[EMAIL PROTECTED]> wrote: > Hi all, > I am trying to connect with Android to a server which I develop > mys