Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for error (0.18 sec)

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

                    resp = super.sendrecv(curHead, resp, params);
    
                    if ( !checkStatus(curHead, resp) ) {
                        if ( log.isDebugEnabled() ) {
                            log.debug("Breaking on error " + resp);
                        }
                        break;
                    }
    
                    if ( nextHead != null ) {
                        // prepare remaining
    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/SmbSessionImpl.java

    								this.transport.disconnect(true);
    							} catch (IOException e1) {
    								log.warn("Got NT_STATUS_USER_SESSION_DELETED, disconnected transport with error", e1);
    							}   
                            }
                            log.debug("Session expired, trying reauth", e);
                            return reauthenticate(trans, this.targetDomain, request, response, params);
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Nov 14 17:41:04 GMT 2021
    - 49K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbFile.java

                try {
                    mkdir();
                }
                catch ( SmbException e ) {
                    log.debug("mkdirs", e);
                    // Ignore "Cannot create a file when that file already exists." errors for now as
                    // they seem to be show up under some conditions most likely due to timing issues.
                    if ( e.getNtStatus() != NtStatus.NT_STATUS_OBJECT_NAME_COLLISION ) {
                        throw e;
    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)
Back to top