Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Type3Message (0.21 sec)

  1. src/main/java/jcifs/smb1/http/NtlmHttpURLConnection.java

                    if (response != HTTP_UNAUTHORIZED &&
                            response != HTTP_PROXY_AUTH) {
                        return;
                    }
                    Type3Message type3 = (Type3Message)
                            attemptNegotiation(response);
                    if (type3 == null) return;
                    connection.setRequestProperty(authProperty, authMethod + ' ' +
    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)
  2. src/main/java/jcifs/http/NtlmHttpURLConnection.java

    import jcifs.CIFSContext;
    import jcifs.RuntimeCIFSException;
    import jcifs.ntlmssp.NtlmFlags;
    import jcifs.ntlmssp.NtlmMessage;
    import jcifs.ntlmssp.Type1Message;
    import jcifs.ntlmssp.Type2Message;
    import jcifs.ntlmssp.Type3Message;
    import jcifs.smb.NtlmPasswordAuthentication;
    
    
    /**
     * Wraps an <code>HttpURLConnection</code> to provide NTLM authentication
     * services.
     *
    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