1 message in com.googlegroups.android-developers[android-developers] SSLContext SSL i...
FromSent OnAttachments
logisic30 May 2008 00:28 
Subject:[android-developers] SSLContext SSL implementation not found
From:logisic (logi@gmail.com)
Date:05/30/2008 12:28:31 AM
List:com.googlegroups.android-developers

<snip> public class ZZLSocketFactory implements LayeredSocketFactory{ public ZZLSocketFactory(){ try{ SSLContext c = SSLContext.getInstance("SSL"); c.init(null, new TrustManager[] { new Z509TrustMgr() }, null); sf = c.getSocketFactory(); }catch (Exception e){ throw new RuntimeException(e.toString()); }

} </snip> the getInstance method is throwing a NoSuchAlgorithmException with the message as stated above. I've been going over the android docs and it seems on the surface it should be supported or did i miss anything?