- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for SmbAuthException (0.08 sec)
-
src/main/java/jcifs/smb/DfsImpl.java
throw (SmbAuthException) ioe; } } return null; } protected DfsReferralDataInternal getReferral ( CIFSContext tf, SmbTransportInternal trans, String target, String targetDomain, String targetHost, String root, String path ) throws SmbAuthException { if ( tf.getConfig().isDfsDisabled() )
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:07:29 UTC 2023 - 29.1K bytes - Viewed (0) -
src/test/java/jcifs/tests/SessionTest.java
try ( SmbResource f = new SmbFile(getTestShareGuestURL(), ctx) ) { checkConnection(f); } catch ( SmbAuthException e ) { ignoreAuthFailure(e); } } protected void ignoreAuthFailure ( SmbAuthException e ) throws SmbAuthException { if ( e.getCause() != null && e.getCause() instanceof SmbException
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:09:03 UTC 2023 - 15.8K 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/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)