Class EwsSSLProtocolSocketFactory

  • All Implemented Interfaces:
    org.apache.http.conn.socket.ConnectionSocketFactory, org.apache.http.conn.socket.LayeredConnectionSocketFactory

    public class EwsSSLProtocolSocketFactory
    extends org.apache.http.conn.ssl.SSLConnectionSocketFactory

    EwsSSLProtocolSocketFactory can be used to create SSL Sockets that accept self-signed certificates.

    This socket factory SHOULD NOT be used for productive systems due to security reasons, unless it is a conscious decision and you are perfectly aware of security implications of accepting self-signed certificates

    Example of using custom protocol socket factory for a specific host:

         Protocol easyhttps = new Protocol("https", new EasySSLProtocolSocketFactory(), 443);
    
         URI uri = new URI("https://localhost/", true);
         // use relative url only
         GetMethod httpget = new GetMethod(uri.getPathQuery());
         HostConfiguration hc = new HostConfiguration();
         hc.setHost(uri.getHost(), uri.getPort(), easyhttps);
         HttpClient client = new HttpClient();
         client.executeMethod(hc, httpget);
     

    Example of using custom protocol socket factory per default instead of the standard one:

         Protocol easyhttps = new Protocol("https", new EasySSLProtocolSocketFactory(), 443);
         Protocol.registerProtocol("https", easyhttps);
    
         HttpClient client = new HttpClient();
         GetMethod httpget = new GetMethod("https://localhost/");
         client.executeMethod(httpget);
     

    DISCLAIMER: HttpClient developers DO NOT actively support this component. The component is provided as a reference material, which may be inappropriate for use without additional customization.