You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hc.apache.org by "Oleg Kalnichevski (JIRA)" <ji...@apache.org> on 2013/05/16 17:21:17 UTC

[jira] [Commented] (HTTPCLIENT-1119) Server Name Indication (SNI) Support

    [ https://issues.apache.org/jira/browse/HTTPCLIENT-1119?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13659629#comment-13659629 ] 

Oleg Kalnichevski commented on HTTPCLIENT-1119:
-----------------------------------------------

For the record, this is how to enable SNI with HttpClient 4.3 using BeanUtils

---
SSLContext sslcontext = SSLContexts.createSystemDefault();
SSLSocketFactory sslsf = new SSLSocketFactory(sslcontext) {

	@Override
	public Socket connectSocket(
			int connectTimeout, 
			Socket socket,
			HttpHost host, 
			InetSocketAddress remoteAddress,
			InetSocketAddress localAddress, 
			HttpContext context) throws IOException, ConnectTimeoutException {
		if (socket instanceof SSLSocket) {
			try {
				PropertyUtils.setProperty(socket, "host", host.getHostName());
			} catch (NoSuchMethodException ex) {
			} catch (IllegalAccessException ex) {
			} catch (InvocationTargetException ex) {
			}
		}
		return super.connectSocket(connectTimeout, socket, host, remoteAddress,
				localAddress, context);
	}
	
};

CloseableHttpClient httpclient = HttpClients.custom()
		.setSSLSocketFactory(sslsf)
		.build();
CloseableHttpResponse response = httpclient.execute(new HttpGet("https://verisign.com/"));
try {
	System.out.println(response.getStatusLine());
	EntityUtils.consume(response.getEntity());
} finally {
	response.close();
}
---

Oleg
                
> Server Name Indication (SNI) Support
> ------------------------------------
>
>                 Key: HTTPCLIENT-1119
>                 URL: https://issues.apache.org/jira/browse/HTTPCLIENT-1119
>             Project: HttpComponents HttpClient
>          Issue Type: Improvement
>          Components: HttpClient
>            Reporter: Gus Power
>              Labels: sni, ssl, tls, vhost
>             Fix For: Future
>
>         Attachments: HTTPCLIENT-1119-support-SNI-on-Java-7-via-setHost-of.patch
>
>
> Provide support for Server Name Indication (SNI) support as per RFC 3546 (section 3.1).
> Currently attempting to connect to SNI enabled host 'expectedhost' over SSL using http client results in an SSLException similar to:
> javax.net.ssl.SSLException: hostname in certificate didn't match: <expectedhost> != <defaulthost>
>   at org.apache.http.conn.ssl.AbstractVerifier.verify(AbstractVerifier.java:220)
> We use SNI on some of our environments and were trying to use httpclient to automatically test host access and availability.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@hc.apache.org
For additional commands, e-mail: dev-help@hc.apache.org