Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Mogin (0.12 sec)

  1. src/main/java/jcifs/smb1/smb1/SmbSession.java

                                    throw sae;
                                } catch (SmbException se) {
                                    ex = se;
                                    /* Apparently once a successfull NTLMSSP login occurs, the
                                     * server will return "Access denied" even if a logoff is
                                     * sent. Unfortunately calling disconnect() doesn't always
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 18.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java

         * 
         */
        public enum AuthenticationType {
            /**
             * Null/anonymous authentication
             * 
             * Login with no credentials
             */
            NULL,
            /**
             * Guest authentication
             * 
             * Allows login with invalid credentials (username and/or password)
             * Fallback to anonymous authentication is permitted
             */
            GUEST,
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 12:07:20 GMT 2020
    - 18.8K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbTreeConnection.java

                if ( treesess.getCredentials().isAnonymous() || treesess.getCredentials().isGuest() ) {
                    // refresh anonymous session or fallback to anonymous from guest login
                    try ( SmbSessionInternal s = trans
                            .getSmbSession(this.ctx.withAnonymousCredentials(), treesess.getTargetHost(), treesess.getTargetDomain())
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 10:50:16 GMT 2020
    - 31K bytes
    - Viewed (0)
Back to top