Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for connectWrapException (0.23 sec)

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

                }
    
                try ( SmbTreeHandle th = connectWrapException(loc) ) {}
            }
    
            return loc;
        }
    
    
        private SmbResourceLocator resolveDfs0 ( SmbResourceLocatorImpl loc, RequestWithPath request ) throws CIFSException {
            try ( SmbTreeHandleImpl th = connectWrapException(loc);
                  SmbSessionImpl session = th.getSession();
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 10:50:16 GMT 2020
    - 31K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbFile.java

                if ( this.treeHandle != null && this.transportContext.getConfig().isStrictResourceLifecycle() ) {
                    this.treeHandle.release();
                }
                this.treeHandle = this.treeConnection.connectWrapException(this.fileLocator);
                this.treeHandle.ensureDFSResolved();
                if ( this.transportContext.getConfig().isStrictResourceLifecycle() ) {
                    // one extra share to keep the tree alive
    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