Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for controller (0.24 sec)

  1. src/main/java/jcifs/http/NtlmSsp.java

         * 
         * @param tc
         *
         * @param req
         *            The request being serviced.
         * @param resp
         *            The response.
         * @param challenge
         *            The domain controller challenge.
         * @return credentials passed in the servlet request
         * @throws IOException
         *             If an IO error occurs.
         */
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 4.7K bytes
    - Viewed (0)
  2. src/main/java/jcifs/ntlmssp/Type2Message.java

         * @param tc
         *            context to use
         * @param type1
         *            The Type-1 message which this represents a response to.
         * @param challenge
         *            The challenge from the domain controller/server.
         * @param target
         *            The authentication target.
         */
        public Type2Message ( CIFSContext tc, Type1Message type1, byte[] challenge, String target ) {
            this(
                tc,
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 14.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/http/NtlmSsp.java

         * for the specified servlet request.
         *
         * @param req The request being serviced.
         * @param resp The response.
         * @param challenge The domain controller challenge.
         * @throws IOException If an IO error occurs.
         * @throws ServletException If an error occurs.
         */
        public NtlmPasswordAuthentication doAuthentication(
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 4.4K bytes
    - Viewed (1)
  4. src/main/java/org/codelibs/fess/es/common/ImplementedInvokerAssistant.java

        //                                                                           =========
        protected static final String[] DEFAULT_CLIENT_INVOKE_NAMES = { "Page", "Action", "Controller", "ControllerImpl", "Task", "Test" };
    
        protected static final String[] DEFAULT_BYPASS_INVOKE_NAMES =
                { "Service", "ServiceImpl", "Facade", "FacadeImpl", "Logic", "LogicImpl" };
    
        @Override
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.2K bytes
    - Viewed (0)
  5. src/main/java/jcifs/DfsResolver.java

         * @throws CIFSException
         * @throws jcifs.smb.SmbAuthException
         */
        boolean isTrustedDomain ( CIFSContext tf, String domain ) throws CIFSException;
    
    
        /**
         * Get a connection to the domain controller for a given domain
         * 
         * @param domain
         * @param tf
         * @return connection
         * @throws CIFSException
         * @throws jcifs.smb.SmbAuthException
         */
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/smb1/SmbSession.java

                } while (retry-- > 0);
    
                dc_list_expiration = now + 1000 * 60 * 15; /* 15 min */
    }
    
            throw new UnknownHostException(
                    "Failed to negotiate with a suitable domain controller for " + DOMAIN );
        }
    
        public static byte[] getChallenge( UniAddress dc )
                    throws SmbException, UnknownHostException {
            return getChallenge(dc, 0);
        }
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 18.6K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/SIDCacheImpl.java

         *            of a domain controller however a member server will work as well and a domain controller may not
         *            return names for SIDs corresponding to local accounts for which the domain controller is not an
         *            authority.
         * @param tc
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 12.6K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/DfsImpl.java

                        }
                    }
                }
                catch ( IOException ioe ) {
                    if ( log.isDebugEnabled() ) {
                        log.debug(String.format("Getting domain controller for %s failed", domain), ioe);
                    }
                    ce.map.put(DC_ENTRY, NEGATIVE_ENTRY);
                    if ( tf.getConfig().isDfsStrictView() && ioe instanceof SmbAuthException ) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Thu Jan 05 13:07:29 GMT 2023
    - 29.1K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb/Kerb5Authenticator.java

                // this is not too good, probably should better pass the address and check that it is a netbios one.
                // While we could look up the domain controller/KDC we cannot really make the java kerberos implementation
                // use a KDC of our choice.
                // A potential workaround would be to try to get the server FQDN by reverse lookup, but this might have
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 13K bytes
    - Viewed (0)
  10. src/main/java/jcifs/http/NtlmHttpFilter.java

            }
            while ( retry-- > 0 );
    
            this.dcListExpiration = now + 1000 * 60 * 15; /* 15 min */
            throw new UnknownHostException("Failed to negotiate with a suitable domain controller for " + domain);
        }
    
    
        private static NtlmChallenge interrogate ( CIFSContext tf, Address addr ) throws SmbException {
            UniAddress dc = new UniAddress(addr);
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 14.8K bytes
    - Viewed (0)
Back to top