Also: HttpClient
public interface

SchemeSocketFactory

org.apache.http.conn.scheme.SchemeSocketFactory
Known Indirect Subclasses

Class Overview

A factory for creating, initializing and connecting sockets. The factory encapsulates the logic for establishing a socket connection.

Summary

Public Methods
abstract Socket connectSocket(Socket sock, InetSocketAddress remoteAddress, InetSocketAddress localAddress, HttpParams params)
Connects a socket to the target host with the given remote address.
abstract Socket createSocket(HttpParams params)
Creates a new, unconnected socket.
abstract boolean isSecure(Socket sock)
Checks whether a socket provides a secure connection.

Public Methods

public abstract Socket connectSocket (Socket sock, InetSocketAddress remoteAddress, InetSocketAddress localAddress, HttpParams params)

Also: HttpClient

Connects a socket to the target host with the given remote address.

Parameters
sock the socket to connect, as obtained from createSocket. null indicates that a new socket should be created and connected.
remoteAddress the remote address to connect to
localAddress the local address to bind the socket to, or null for any
params additional parameters for connecting
Returns
  • the connected socket. The returned object may be different from the sock argument if this factory supports a layered protocol.
Throws
IOException if an I/O error occurs
UnknownHostException if the IP address of the target host can not be determined
ConnectTimeoutException if the socket cannot be connected within the time limit defined in the params

public abstract Socket createSocket (HttpParams params)

Also: HttpClient

Creates a new, unconnected socket. The socket should subsequently be passed to connectSocket(Socket, InetSocketAddress, InetSocketAddress, HttpParams).

Parameters
params Optional parameters. In most cases these parameters will not be required and will have no effect, as usually socket initialization should take place in the connectSocket(Socket, InetSocketAddress, InetSocketAddress, HttpParams) method. However, in rare cases one may want to pass additional parameters to this method in order to create a customized Socket instance, for instance bound to a SOCKS proxy server.
Returns
  • a new socket
Throws
IOException if an I/O error occurs while creating the socket

public abstract boolean isSecure (Socket sock)

Also: HttpClient

Checks whether a socket provides a secure connection. The socket must be connected by this factory. The factory will not perform I/O operations in this method.

As a rule of thumb, plain sockets are not secure and TLS/SSL sockets are secure. However, there may be application specific deviations. For example, a plain socket to a host in the same intranet ("trusted zone") could be considered secure. On the other hand, a TLS/SSL socket could be considered insecure based on the cipher suite chosen for the connection.

Parameters
sock the connected socket to check
Returns
  • true if the connection of the socket should be considered secure, or false if it should not
Throws
IllegalArgumentException if the argument is invalid, for example because it is not a connected socket or was created by a different socket factory. Note that socket factories are not required to check these conditions, they may simply return a default value when called with an invalid socket argument.