> HttpsURLConnection, works with SunJSSE provider but does not work with other 
> JSSE provider. In case of SunJSSE , HttpsURLConnection set the host name as 
> follows
> 
> s = (SSLSocket)serverSocket;
>    if (s instanceof SSLSocketImpl) {
>           ((SSLSocketImpl)s).setHost(host);
>    } 
> 
> But in case of other providers(BouncyCastleProvider )  host will not get set 
> and "java.security.cert.CertificateException: No subject alternative name 
> found matching IP address" exception will be thrown.

Vyom Tewari has updated the pull request incrementally with two additional 
commits since the last revision:

 - resolve jcheck issue.
 - put if block which will prevent host being set twice in case of SSLSocketImpl

-------------

Changes:
  - all: https://git.openjdk.java.net/jdk/pull/2583/files
  - new: https://git.openjdk.java.net/jdk/pull/2583/files/424e6ab5..ce940edc

Webrevs:
 - full: https://webrevs.openjdk.java.net/?repo=jdk&pr=2583&range=04
 - incr: https://webrevs.openjdk.java.net/?repo=jdk&pr=2583&range=03-04

  Stats: 8 lines in 1 file changed: 5 ins; 0 del; 3 mod
  Patch: https://git.openjdk.java.net/jdk/pull/2583.diff
  Fetch: git fetch https://git.openjdk.java.net/jdk pull/2583/head:pull/2583

PR: https://git.openjdk.java.net/jdk/pull/2583

Reply via email to