Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for ensureConnected (0.08 sec)

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

                }
                try ( SmbTransportImpl trans = getSmbTransport(tf, addr, port, exclusive, forceSigning).unwrap(SmbTransportImpl.class) ) {
                    try {
                        trans.ensureConnected();
                    }
                    catch ( IOException e ) {
                        removeTransport(trans);
                        throw e;
                    }
                    return trans.acquire();
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Dec 20 14:09:34 UTC 2020
    - 12.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/DfsImpl.java

                                        .unwrap(SmbTransportImpl.class);
                                transport.ensureConnected();
                                return transport;
                            }
                            catch ( IOException ex ) {
                                log.debug("Connection failed " + dr.getServer(), ex);
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Thu Jan 05 13:07:29 UTC 2023
    - 29.1K bytes
    - Viewed (0)
  3. src/main/java/jcifs/http/NtlmHttpFilter.java

                    .unwrap(SmbTransportInternal.class) ) {
                if ( !tf.hasDefaultCredentials() ) {
                    trans.ensureConnected();
                    log.warn(
                        "Default credentials (jcifs.smb.client.username/password)" + " not specified. SMB signing may not work propertly."
                                + "  Skipping DC interrogation.");
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 14.8K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbTreeImpl.java

                synchronized ( transport ) {
    
                    // this needs to be done before the reference to the remote hostname later
                    transport.ensureConnected();
    
                    if ( waitForState(transport) == 2 ) {
                        // already connected
                        return null;
                    }
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 29.6K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SmbTreeConnection.java

                  SmbSessionImpl session = th.getSession();
                  SmbTransportImpl transport = session.getTransport();
                  SmbTreeImpl t = getTree() ) {
                transport.ensureConnected();
    
                String rpath = request != null ? request.getPath() : loc.getUNCPath();
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Tue Jul 07 10:50:16 UTC 2020
    - 31K bytes
    - Viewed (0)
Back to top