[android-developers] Re: https password auth

2009-10-15 Thread Cyryl Płotnicki-Chudyk
2009/10/13 vonguyen lie...@gmail.com: Hello Cyryl. To connect you can do follow: try {                        SSLContext sc = SSLContext.getInstance(TLS);                        sc.init(null, new TrustManager[] { new MyTrustManager() },                                        new

[android-developers] Re: https password auth

2009-10-13 Thread vonguyen
I missed about HTTPS. HTTPS is string String HTTPS = https://www.example.com?username=abcpasswd=123456; On Oct 11, 11:14 pm, Cyryl Płotnicki-Chudyk sharph...@gmail.com wrote: I'm having trouble making https connection to the server , with password authentication. What is the simpliest

[android-developers] Re: https password auth

2009-10-13 Thread vonguyen
Hello Cyryl. To connect you can do follow: try { SSLContext sc = SSLContext.getInstance(TLS); sc.init(null, new TrustManager[] { new MyTrustManager() }, new SecureRandom());