- Sort Score
- Result 10 results
- Languages All
Results 21 - 26 of 26 for SmbAuthException (0.12 sec)
-
src/main/java/jcifs/smb1/smb1/SmbFileOutputStream.java
this.openFlags = openFlags; this.access = (openFlags >>> 16) & 0xFFFF; if( append ) { try { fp = file.length(); } catch( SmbAuthException sae ) { throw sae; } catch( SmbException se ) { fp = 0L; } } if( file instanceof SmbNamedPipe && file.unc.startsWith( "\\pipe\\" )) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 9.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/Kerb5Context.java
try { return this.gssContext.initSecContext(token, off, len); } catch ( GSSException e ) { throw new SmbAuthException("GSSAPI mechanism failed", e); } } Key searchSessionKey ( Subject subject ) throws GSSException { MIEName src = new MIEName(this.gssContext.getSrcName().export());
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Aug 02 08:22:42 UTC 2018 - 13.9K bytes - Viewed (0) -
src/test/java/jcifs/tests/FileOperationsTest.java
Assume.assumeTrue("Not SMB2", th.isSMB2()); } throw e; } catch ( SmbAuthException e ) { // guest share not accessible } catch ( SmbException e) { if ("Cannot rename between different trees".equals(e.getMessage())) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:17:59 UTC 2023 - 16.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbTransport.java
case NtStatus.NT_STATUS_ACCOUNT_DISABLED: case NtStatus.NT_STATUS_ACCOUNT_LOCKED_OUT: case NtStatus.NT_STATUS_TRUSTED_DOMAIN_FAILURE: throw new SmbAuthException( resp.errorCode ); case NtStatus.NT_STATUS_PATH_NOT_COVERED: if( req.auth == null ) { throw new SmbException( resp.errorCode, null ); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 31.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportImpl.java
case NtStatus.NT_STATUS_ACCOUNT_DISABLED: case NtStatus.NT_STATUS_ACCOUNT_LOCKED_OUT: case NtStatus.NT_STATUS_TRUSTED_DOMAIN_FAILURE: throw new SmbAuthException(resp.getErrorCode()); case 0xC00000BB: // NT_STATUS_NOT_SUPPORTED throw new SmbUnsupportedOperationException(); case NtStatus.NT_STATUS_PATH_NOT_COVERED:
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Wed Jan 18 23:47:00 UTC 2023 - 67K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbFile.java
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Mon Mar 13 12:00:57 UTC 2023 - 107.9K bytes - Viewed (0)