Uploaded image for project: 'WildFly'
  1. WildFly
  2. WFLY-7351

JAX-RS Http Client does not support SNI even though underlying Apache HttpClient version supports it

    XMLWordPrintable

Details

    • Bug
    • Resolution: Obsolete
    • Major
    • None
    • 10.1.0.Final
    • REST
    • Hide

      Make an http call using the JAX-RS http client to any host configured with SNI. This is the example from the attached test case:

      ClientBuilder.newClient()
                      .target("https://www.syse.no/")
                      .request()
                      .get(String.class);
      
      Show
      Make an http call using the JAX-RS http client to any host configured with SNI. This is the example from the attached test case: ClientBuilder.newClient() .target( "https: //www.syse.no/" ) .request() .get( String .class);
    • Compatibility/Configuration, User Experience

    Description

      When creating a JAX-RS client using ClientBuilder.newClient() and accessing an SSL resource configured with SNI, the request fails.

      When the request is made you get the default certificate for the ip as it is configured on the web server instead of the certificate corresponding to the host name you entered.

      Attached is a simple Maven project with a rest endpoint that will make a request to https://www.syse.no/, which is a host configured with SNI. If you access this host with a client that is not SNI capable, you will get the default certificate instead of the one corresponding to www.syse.no. (That cert is actually expired, so that is the underlying cause reported by the http client in this case. In other cases you will most probably just get a name mismatch type of error).

      This effectively prevents the Http client from being used reliably against a rapidly growing number of SSL enabled sites, as SNI is the new standard "everywhere" SSL is configured these days.

      The underlying Apache HttpClient version does indeed support SNI. I have tested the version of Apache HttpClient that is bundled with Wildfly 10.1 and it works correctly.

      Attachments

        Activity

          People

            rhn-support-asoldano Alessio Soldano
            edvin_syse Edvin Syse (Inactive)
            Votes:
            2 Vote for this issue
            Watchers:
            7 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: