Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6892785
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T06:34:41+00:00 2026-05-27T06:34:41+00:00

Since Android ICS we have problems to verify our certificates we are getting from

  • 0

Since Android ICS we have problems to verify our certificates we are getting from the HttpsUrlConnection. In the earlier versions of android this was working well.
This is what we are trying to do:

BrowserCompatHostnameVerifier hostNameVerifier = new BrowserCompatHostnameVerifier();
HttpsURLConnection.setDefaultHostnameVerifier(hostNameVerifier);
URL url = new URL(serverUrl);
this.urlConnection = (HttpsURLConnection) url.openConnection();
this.urlConnection.connect();
hostNameVerifier.verify(urlConnection.getURL().getHost(),
(X509Certificate) urlConnection.getServerCertificates()[0]);

The exception which is thrown is:

java.lang.IllegalStateException
at libcore.net.http.HttpEngine.getCacheResponse(HttpEngine.java:412)
at libcore.net.http.HttpsURLConnectionImpl$HttpUrlConnectionDelegate.getCacheResponse(HttpsURLConnectionImpl.java:390)
at libcore.net.http.HttpsURLConnectionImpl.getServerCertificates(HttpsURLConnectionImpl.java:87)

Does somebody know what could have gone wrong and why it only persists since ICS?

Thanks!

—– Update ——-
Now I made my own HostnameVerifier like this. I avoid the getServerCertificates()-method like this and it is working:

    public class MyHostNameVerifier implements HostnameVerifier {

    private String expectedHost;

    public MyHostNameVerifier(String expectedHost) {
        this.expectedHost = expectedHost;
    }

    @Override
    public boolean verify(String hostname, SSLSession session) {
        return expectedHost.equals(hostname);
    }
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T06:34:41+00:00Added an answer on May 27, 2026 at 6:34 am

    try to check out below links related to your problem.

    http://developer.android.com/reference/javax/net/ssl/HttpsURLConnection.html

    Android: HTTPS (SSL) connection using HttpsURLConnection

    httpclient ssl certificate on android

    KeyStore keyStore = ...;
     TrustManagerFactory tmf = TrustManagerFactory.getInstance("X509");
     tmf.init(keyStore);
     SSLContext context = SSLContext.getInstance("TLS");
     context.init(null, tmf.getTrustManagers(), null);
     URL url = new URL("https://www.example.com/");
     HttpsURLConnection urlConnection = (HttpsURLConnection) url.openConnection();
     urlConnection.setSSLSocketFactory(context.getSocketFactory());
     InputStream in = urlConnection.getInputStream();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am working on an application for android and we since we have lots
I realize that this is not possible since Android doesnt have a JVM but
Since CS3 doesn't have a web service component, as previous versions had, is there
For retrieving the accounts (information) in Android versions since 2.0 you can use the
Eclipse is really bugging me with this. I have an Android project that is
I have been developing Android application since 3 to 4 months. I am naive,
This one puzzles me since my first android project. Consider multi-language string resources with
I am new to android programming and it's been some years since I have
Since my Android application aims 2.1 versions of the system, I cannot read my
Since Graduating from a very small school in 2006 with a badly shaped &

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.