Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for SmbUnsupportedOperationException (0.23 sec)

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

            if ( !this.smb2 || this.negotiated == null ) {
                throw new SmbUnsupportedOperationException();
            }
    
            Smb2NegotiateResponse resp = (Smb2NegotiateResponse) this.negotiated;
            if ( !resp.getSelectedDialect().atLeast(DialectVersion.SMB311) ) {
                throw new SmbUnsupportedOperationException();
            }
    
            MessageDigest dgst;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Wed Jan 18 23:47:00 GMT 2023
    - 67K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbWatchHandleImpl.java

                    req = r;
                }
                else {
                    if ( !th.hasCapability(SmbConstants.CAP_NT_SMBS) ) {
                        throw new SmbUnsupportedOperationException("Not supported without CAP_NT_SMBS");
                    }
    
                    /*
                     * NtTrans Notify Change Request / Response
                     */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 4.5K bytes
    - Viewed (0)
  3. src/main/java/jcifs/SmbResource.java

         * @param lastAccess
         *            the last access time as milliseconds since Jan 1, 1970
         * @throws CIFSException
         * @throws jcifs.smb.SmbUnsupportedOperationException
         *             if CAP_NT_SMBS is unavailable
         */
        void setFileTimes ( long createTime, long lastModified, long lastAccess ) throws CIFSException;
    
    
        /**
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Dec 20 14:09:34 GMT 2020
    - 26K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbFile.java

            }
    
            try ( SmbTreeHandleImpl th = ensureTreeConnected() ) {
                if ( !th.isSMB2() && !th.hasCapability(SmbConstants.CAP_NT_SMBS) ) {
                    throw new SmbUnsupportedOperationException("Not supported without CAP_NT_SMBS");
                }
                return new SmbWatchHandleImpl(openUnshared(O_RDONLY, READ_CONTROL | GENERIC_READ, DEFAULT_SHARING, 0, 1), filter, recursive);
            }
        }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 81.6K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java

                        Set<ASN1ObjectIdentifier> mechs = new HashSet<>(Arrays.asList(tok.getMechanisms()));
                        if ( !mechs.contains(NtlmContext.NTLMSSP_OID) ) {
                            throw new SmbUnsupportedOperationException("Server does not support NTLM authentication");
                        }
                    }
                }
            }
            catch ( SmbException e ) {
                throw e;
            }
    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)
  6. src/main/java/jcifs/smb/SmbSessionImpl.java

                        anonymous = true;
                    }
    
                    if ( ( response.getSessionFlags() & Smb2SessionSetupResponse.SMB2_SESSION_FLAG_ENCRYPT_DATA ) != 0 ) {
                        throw new SmbUnsupportedOperationException("Server requires encryption, not yet supported.");
                    }
    
                    if ( preauthIntegrity ) {
                        byte[] reqBytes = request.getRawPayload();
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Nov 14 17:41:04 GMT 2021
    - 49K bytes
    - Viewed (0)
Back to top