Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for SmbAuthException (0.29 sec)

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

                            newSessId = response.getSessionId();
    
                            if (newSessId != curSessId) {
                                throw new SmbAuthException("Server did not reauthenticate after expiration");
                            }
                        } catch (SmbAuthException sae) {
                            throw sae;
                        } catch (SmbException e) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 68.9K bytes
    - Viewed (0)
  2. 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 Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 69.8K bytes
    - Viewed (0)
  3. src/test/java/jcifs/smb/SmbFileIntegrationTest.java

                    assertTrue(hasPublic || hasShared, "Should contain expected shares");
                    return; // Success, exit retry loop
    
                } catch (SmbAuthException e) {
                    // Some configurations may not allow share listing without specific permissions
                    log.warn("Share listing not available due to authentication: {}", e.getMessage());
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 56K bytes
    - Viewed (0)
Back to top