HTTPCLIENT-1211: corrected code snippets in the connection management section of the tutorial

git-svn-id: https://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk@1356671 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Oleg Kalnichevski 2012-07-03 11:27:28 +00:00
parent b7f85c1af7
commit 9a17be0126
1 changed files with 6 additions and 2 deletions

View File

@ -339,8 +339,10 @@ sf.connectSocket(socket, address, null, params);
implementation. One can specify a different hostname verifier implementation if
desired</para>
<programlisting><![CDATA[
SSLContext sslcontext = SSLContext.getInstance("TLS");
sslcontext.init(null, null, null);
SSLSocketFactory sf = new SSLSocketFactory(
SSLContext.getInstance("TLS"),
sslcontext,
SSLSocketFactory.STRICT_HOSTNAME_VERIFIER);
]]></programlisting>
</section>
@ -356,8 +358,10 @@ SSLSocketFactory sf = new SSLSocketFactory(
<programlisting><![CDATA[
Scheme http = new Scheme("http", 80, PlainSocketFactory.getSocketFactory());
SSLContext sslcontext = SSLContext.getInstance("TLS");
sslcontext.init(null, null, null);
SSLSocketFactory sf = new SSLSocketFactory(
SSLContext.getInstance("TLS"),
sslcontext,
SSLSocketFactory.STRICT_HOSTNAME_VERIFIER);
Scheme https = new Scheme("https", 443, sf);