Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setSSLSocketFactory (2.64 sec)

  1. src/main/java/org/codelibs/curl/CurlRequest.java

            if (sslSocketFactory != null && connection instanceof HttpsURLConnection) {
                ((HttpsURLConnection) connection).setSSLSocketFactory(sslSocketFactory);
            }
            return connection;
        }
    
        /**
         * Executes the request and processes the response.
         *
    Registered: Sat Dec 20 09:13:53 UTC 2025
    - Last Modified: Mon Nov 24 03:10:07 UTC 2025
    - 18.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/http/NtlmHttpURLConnection.java

                if (hv != null) {
                    ((HttpsURLConnection) this.connection).setHostnameVerifier(hv);
                }
                if (ssf != null) {
                    ((HttpsURLConnection) this.connection).setSSLSocketFactory(ssf);
                }
            }
    
            this.connection.setRequestMethod(this.method);
            this.headerFields = null;
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 25.6K bytes
    - Viewed (0)
Back to top