Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for requestPasswordAuthentication (0.46 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/authenticator/JavaNetAuthenticator.kt

          }
    
          val dns = route?.address?.dns ?: defaultDns
          val auth =
            if (proxyAuthorization) {
              val proxyAddress = proxy.address() as InetSocketAddress
              Authenticator.requestPasswordAuthentication(
                proxyAddress.hostName,
                proxy.connectToInetAddress(url, dns),
                proxyAddress.port,
                url.scheme,
                challenge.realm,
                challenge.scheme,
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 3.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/http/NtlmHttpURLConnection.java

                            port = "https".equalsIgnoreCase(protocol) ? 443 : 80;
                        }
                        PasswordAuthentication auth =
                                Authenticator.requestPasswordAuthentication(null,
                                        port, protocol, "", authMethod);
                        if (auth == null) return null;
                        user = auth.getUserName();
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 20.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/http/NtlmHttpURLConnection.java

                            if ( port == -1 ) {
                                port = "https".equalsIgnoreCase(protocol) ? 443 : 80;
                            }
                            PasswordAuthentication auth = Authenticator.requestPasswordAuthentication(null, port, protocol, "", this.authMethod);
                            if ( auth == null )
                                return null;
                            user = auth.getUserName();
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 25.5K bytes
    - Viewed (0)
Back to top