Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 208 for logon (0.03 sec)

  1. src/main/java/jcifs/smb/NtStatus.java

            "There are currently no logon servers available to service the logon request.", "The specified user already exists.",
            "The specified user does not exist.", "The specified network password is not correct.", "Logon failure: unknown user name or bad password.",
            "Logon failure: user account restriction.", "Logon failure: account logon time restriction violation.",
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sat Jun 01 10:09:29 UTC 2019
    - 11.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/NtStatus.java

            "There are currently no logon servers available to service the logon request.",
            "The specified user already exists.",
            "The specified user does not exist.",
            "The specified network password is not correct.",
            "Logon failure: unknown user name or bad password.",
            "Logon failure: user account restriction.",
            "Logon failure: account logon time restriction violation.",
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 11.1K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbTransportPoolImpl.java

                throw new SmbException("Connection failed", e);
            }
        }
    
    
        @Override
        public void logon ( CIFSContext tf, Address dc ) throws SmbException {
            logon(tf, dc, 0);
        }
    
    
        @Override
        @Deprecated
        public void logon ( CIFSContext tf, Address dc, int port ) throws SmbException {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Dec 20 14:09:34 UTC 2020
    - 12.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/SmbSession.java

     * <p>
     * See also the <tt>jcifs.smb1.smb1.client.logonShare</tt> property.
     */
        public static void logon( UniAddress dc,
                            NtlmPasswordAuthentication auth ) throws SmbException {
            logon(dc, 0, auth);
        }
    
        public static void logon( UniAddress dc, int port,
                            NtlmPasswordAuthentication auth ) throws SmbException {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 18.6K bytes
    - Viewed (0)
  5. src/test/java/jcifs/tests/SessionTest.java

            ctx.getTransportPool().logon(ctx, ctx.getNameServiceClient().getByName(getTestServer()));
        }
    
    
        // #68
        @Test ( expected = SmbException.class )
        public void testPoolLogonFail () throws CIFSException, UnknownHostException {
            CIFSContext ctx = withTestNTLMCredentials(getContext());
            ctx.getTransportPool().logon(ctx, ctx.getNameServiceClient().getByName("0.0.0.0"), 12345);
        }
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Thu Jan 05 13:09:03 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/http/NtlmHttpFilter.java

                    ntlm = new NtlmPasswordAuthentication(domain, user, password);
                    dc = UniAddress.getByName( domainController, true );
                }
                try {
    
                    SmbSession.logon( dc, ntlm );
    
                    if( log.level > 2 ) {
                        log.println( "NtlmHttpFilter: " + ntlm +
                                " successfully authenticated against " + dc );
                    }
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 10.4K bytes
    - Viewed (0)
  7. src/main/java/jcifs/pac/PacLogonInfo.java

                SID groupId = pacStream.readId();
    
                // Groups information
                int groupCount = pacStream.readInt();
                int groupPointer = pacStream.readInt();
    
                // User flags about PAC Logon Info content
                this.userFlags = pacStream.readInt();
                boolean hasExtraSids = ( this.userFlags & PacConstants.LOGON_EXTRA_SIDS ) == PacConstants.LOGON_EXTRA_SIDS;
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 11.4K bytes
    - Viewed (0)
  8. src/main/java/jcifs/http/NtlmHttpFilter.java

                    dc = getTransportContext().getNameServiceClient().getByName(this.domainController, true);
                }
                try {
                    getTransportContext().getTransportPool().logon(getTransportContext(), dc);
    
                    if ( log.isDebugEnabled() ) {
                        log.debug("NtlmHttpFilter: " + ntlm + " successfully authenticated against " + dc);
                    }
                }
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 14.8K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/SmbTreeImpl.java

                    send(req, resp);
                }
                catch ( SmbException e ) {
                    throw e;
                }
                catch ( CIFSException e ) {
                    throw new SmbException("Logon share connection failed", e);
                }
            }
        }
    
    
        boolean treeDisconnect ( boolean inError, boolean inUse ) {
            boolean wasInUse = false;
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 29.6K bytes
    - Viewed (0)
  10. docs/en/docs/img/logo-margin/logo-teal.png

    logo-teal.png...
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Feb 04 20:56:59 UTC 2024
    - 19.4K bytes
    - Viewed (0)
Back to top