Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 46 for Post (0.15 sec)

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

         * @param resp
         *            The servlet response
         * @param skipAuthentication
         *            If true the negotiation is only done if it is
         *            initiated by the client (MSIE post requests after successful NTLM SSP
         *            authentication). If false and the user has not been authenticated yet
         *            the client will be forced to send an authentication (server sends
    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)
  2. src/main/java/jcifs/NetbiosAddress.java

         *             if the host cannot be resolved to find out.
         */
        boolean isActive ( CIFSContext tc ) throws UnknownHostException;
    
    
        /**
         * Determines if this address is set to be permanent.
         * 
         * @param tc
         *            context to use
         * @return whether this address is permanent
         *
         * @throws UnknownHostException
         *             if the host cannot be resolved to find out.
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/pac/kerberos/KerberosEncData.java

                case 8: // Kerberos Time
                    // DERGeneralizedTime derTime = KerberosUtil.readAs(tagged,
                    // DERGeneralizedTime.class);
                    break;
                case 9: // Host Addresses
                    ASN1Sequence adressesSequence = ASN1Util.as(ASN1Sequence.class, tagged);
                    Enumeration<?> adresses = adressesSequence.getObjects();
                    while ( adresses.hasMoreElements() ) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Oct 02 12:02:06 GMT 2023
    - 11.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/http/NtlmHttpFilter.java

         * @param req The servlet request
         * @param resp The servlet response
         * @param skipAuthentication If true the negotiation is only done if it is
         * initiated by the client (MSIE post requests after successful NTLM SSP
         * authentication). If false and the user has not been authenticated yet
         * the client will be forced to send an authentication (server sends
         * HttpServletResponse.SC_UNAUTHORIZED).
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 10.4K bytes
    - Viewed (0)
  5. src/main/java/jcifs/netbios/NameServiceClientImpl.java

        public NbtAddress getNbtByName ( String host ) throws UnknownHostException {
            return getNbtByName(host, 0x00, null);
        }
    
    
        @Override
        public NbtAddress getNbtByName ( String host, int type, String scope ) throws UnknownHostException {
            return getNbtByName(host, type, scope, null);
        }
    
    
        @Override
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Aug 14 14:26:22 GMT 2022
    - 38.2K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/UniAddress.java

        
            Sem sem;
            String host, scope;
            int type;
            NbtAddress ans = null;
            InetAddress svr;
            UnknownHostException uhe;
        
            QueryThread( Sem sem, String host, int type,
                            String scope, InetAddress svr ) {
                super( "JCIFS-QueryThread: " + host );
                this.sem = sem;
                this.host = host;
                this.type = type;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 16.2K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb/Handler.java

        protected void parseURL ( URL u, String spec, int start, int limit ) {
            String host = u.getHost();
            String path, ref;
            int port;
    
            if ( spec.equals("smb://") ) {
                spec = "smb:////";
                limit += 2;
            }
            else if ( spec.startsWith("smb://") == false && host != null && host.length() == 0 ) {
                spec = "//" + spec;
                limit += 2;
            }
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sat Jun 06 09:14:24 GMT 2020
    - 2.9K bytes
    - Viewed (0)
  8. src/main/java/jcifs/Address.java

         * @param type
         * @return instance for type, null if the type cannot be unwrapped
         */
        <T extends Address> T unwrap ( Class<T> type );
    
    
        /**
         * 
         * @return the resolved host name, or the host address if it could not be resolved
         */
        String getHostName ();
    
    
        /**
         * Return the IP address as text such as "192.168.1.15".
         * 
         * @return the ip address
         */
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Tue Jul 03 13:22:30 GMT 2018
    - 2K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/SmbFile.java

     *
     * <tr><td width="20%"><code>
     *  smb1://host/share/a/b/
     * </code></td><td width="20%"><code>
     *  c/d/
     * </code></td><td><code>
     *  smb1://host/share/a/b/c/d/
     * </code></td></tr>
     * 
     * <tr><td width="20%"><code>
     *  smb1://host/share/foo/bar/
     * </code></td><td width="20%"><code>
     *  /share2/zig/zag
     * </code></td><td><code>
     *  smb1://host/share2/zig/zag
     * </code></td></tr>
     * 
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 107.9K bytes
    - Viewed (2)
  10. src/main/java/jcifs/internal/dfs/DfsReferralDataInternal.java

     *
     */
    public interface DfsReferralDataInternal extends DfsReferralData {
    
        /**
         * Replaces the host with the given FQDN if it is currently unqualified
         * 
         * @param fqdn
         */
        void fixupHost ( String fqdn );
    
    
        /**
         * Possibly appends the given domain name to the host name if it is currently unqualified
         * 
         * @param domain
         */
        void fixupDomain ( String domain );
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2.4K bytes
    - Viewed (0)
Back to top