Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 409 for logon (0.03 sec)

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

                    user = (index != -1) ? user.substring(index + 1) : user;
                    ntlm = new NtlmPasswordAuthentication(domain, user, password);
                }
                try {
                    SmbSession.logon(dc, ntlm);
                } catch (SmbAuthException sae) {
                    response.setHeader("WWW-Authenticate", "NTLM");
                    if (offerBasic) {
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 6.8K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. src/main/java/jcifs/smb/SmbSessionImpl.java

    
        /**
         * Establish a tree connection with the configured logon share
         * 
         * @throws SmbException
         */
        @Override
        public void treeConnectLogon () throws SmbException {
            String logonShare = getContext().getConfig().getLogonShare();
            if ( logonShare == null || logonShare.isEmpty() ) {
                throw new SmbException("Logon share is not defined");
            }
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Nov 14 17:41:04 UTC 2021
    - 49K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. src/main/webapp/js/login.js

    $(function() {
      $('input[type="text"],select,textarea', ".login-box,section.content")
        .first()
        .focus();
      $(".form-group .has-error")
        .first()
        .next("input,select,textarea")
        .focus();
    
      $("section.content input").keypress(function(e) {
        var $submitButton;
        if (e.which === 13) {
          $submitButton = $("input#submit, button#submit");
          if ($submitButton.length > 0) {
            $submitButton[0].submit();
          }
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Wed Sep 12 06:47:49 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  8. .github/logo.svg

    logo.svg...
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Wed Oct 23 05:59:13 UTC 2019
    - 978 bytes
    - Viewed (0)
  9. src/main/webapp/images/logo.png

    logo.png...
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Oct 30 11:04:53 UTC 2015
    - 2.3K bytes
    - Viewed (0)
  10. docs/en/docs/img/logo-margin/logo-teal.svg

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