[
https://issues.apache.org/jira/browse/HTTPCLIENT-1755?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15373233#comment-15373233
]
Zhenua Protasevich commented on HTTPCLIENT-1755:
------------------------------------------------
[~olegk]
it is possible a similar problem.
the problem arises in that code, as I have given above.
This code basis of https://bitbucket.org/atlassianlabs/httpclienttest
in some other atlassian products arises as a problem with the SNI. It has
already set up their issue.
but in this case, the problem is in the apache httpclient
if you want, I can do a detailed analysis with the example on my nginx server
with a list of all the commands for checking
> SNI problem when connecting to nginx
> ------------------------------------
>
> Key: HTTPCLIENT-1755
> URL: https://issues.apache.org/jira/browse/HTTPCLIENT-1755
> Project: HttpComponents HttpClient
> Issue Type: Bug
> Components: HttpClient
> Affects Versions: 4.5.2
> Environment: ORACLE JDK 8u91
> httpclient 4.5.2
> Reporter: Zhenua Protasevich
> Priority: Minor
>
> Using this code causes problems when connecting to nginx server.
> I tried several nginx and apache servers. this is relevant only for nginx
> while using this code, when connection is established the server nginx, we
> get not the requested host, a standard server host
> SNI in this case does not work correctly
> {code:java}
> HttpClient client = new DefaultHttpClient();
> HttpGet request = new HttpGet("https://" + args[0]);
> HttpResponse response = null;
> try
> {
> response = client.execute(request);
> }
> catch (IOException e)
> {
> e.printStackTrace();
> throw new RuntimeException(e);
> }
> {code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]