The version of Jetty client being used raises a security flag when submitting android apps to the app store. Can the Jetty version be updated to a newer version where this issue is fixed?
org.mortbay.jetty.client.HttpClient$b
This can be found in the HttpClient class:
protected SSLContext getLooseSSLContext() throws IOException
{
// Create a trust manager that does not validate certificate
// chains
TrustManager[] trustAllCerts = new TrustManager[] { new X509TrustManager()
{
public java.security.cert.X509Certificate[] getAcceptedIssuers()
{
return null;
}
public void checkClientTrusted( java.security.cert.X509Certificate[] certs, String authType )
{
}
public void checkServerTrusted( java.security.cert.X509Certificate[] certs, String authType )
{
}
} };