- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 16 for SmbUnsupportedOperationException (0.24 sec)
-
src/main/java/jcifs/smb/SmbUnsupportedOperationException.java
*/ package jcifs.smb; /** * @author mbechler * */ public class SmbUnsupportedOperationException extends SmbException { /** * */ private static final long serialVersionUID = -5576981906065713710L; /** * */ public SmbUnsupportedOperationException () { super("Operation is not supported with the negotiated capabilities"); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.3K bytes - Viewed (0) -
src/test/java/jcifs/tests/FileAttributesTest.java
import jcifs.SmbConstants; import jcifs.SmbResource; import jcifs.smb.NtStatus; import jcifs.smb.SmbException; import jcifs.smb.SmbFile; import jcifs.smb.SmbFileOutputStream; import jcifs.smb.SmbUnsupportedOperationException; import jcifs.smb.WinError; /** * * * * @author mbechler */ @RunWith ( Parameterized.class ) @SuppressWarnings ( "javadoc" )
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:09:03 UTC 2023 - 12.3K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmContext.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 12:07:20 UTC 2020 - 15.7K bytes - Viewed (0) -
src/test/java/jcifs/tests/KerberosTest.java
import jcifs.smb.Kerb5Authenticator; import jcifs.smb.SmbException; import jcifs.smb.SmbFile; import jcifs.smb.SmbSessionInternal; import jcifs.smb.SmbTreeHandleInternal; import jcifs.smb.SmbUnsupportedOperationException; import sun.security.jgss.krb5.Krb5Util; import sun.security.krb5.Asn1Exception; import sun.security.krb5.Credentials; import sun.security.krb5.EncryptionKey; import sun.security.krb5.KrbAsReqBuilder;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Mar 01 09:46:04 UTC 2020 - 11.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/Kerb5Authenticator.java
// A potential workaround would be to try to get the server FQDN by reverse lookup, but this might have // security implications and also is not how Microsoft does it. throw new SmbUnsupportedOperationException("Cannot use netbios/short names with kerberos authentication, have " + host); } try { NegTokenInit tok = new NegTokenInit(initialToken); if ( log.isDebugEnabled() ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 13K bytes - Viewed (0) -
src/test/java/jcifs/tests/EnumTest.java
} catch ( SmbUnsupportedOperationException e ) {} c.createNewFile(); boolean haveArchive = false; try { c.setAttributes(SmbConstants.ATTR_ARCHIVE); haveArchive = true; } catch ( SmbUnsupportedOperationException e ) {}
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:09:03 UTC 2023 - 25.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbCopyUtil.java
if ( sh.isSMB2() && dh.isSMB2() && sh.isSameTree(dh) ) { try { serverSideCopy(src, dest, sh, dh, false); return; } catch ( SmbUnsupportedOperationException e ) { log.debug("Server side copy not supported, falling back to normal copying", e); } catch ( CIFSException e ) { log.warn("Server side copy failed", e);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 10:52:42 UTC 2020 - 17.1K bytes - Viewed (0) -
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 */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 4.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbEnumerationUtil.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sat Jul 20 08:41:19 UTC 2019 - 12.5K bytes - Viewed (0) -
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;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Wed Jan 18 23:47:00 UTC 2023 - 67K bytes - Viewed (0)