Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 65 for connection (0.17 sec)

  1. src/main/java/jcifs/smb1/http/NtlmHttpURLConnection.java

                }
                connection.setRequestProperty(key, value.toString());
            }
            connection.setAllowUserInteraction(allowUserInteraction);
            connection.setDoInput(doInput);
            connection.setDoOutput(doOutput);
            connection.setIfModifiedSince(ifModifiedSince);
            connection.setUseCaches(useCaches);
        }
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 20.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/util/transport/Transport.java

         */
    
        protected abstract void doConnect () throws Exception;
    
    
        /*
         * Tear down a connection. If the hard parameter is true, the diconnection
         * procedure should not initiate or wait for any outstanding requests on
         * this transport.
         */
    
        protected abstract boolean doDisconnect ( boolean hard, boolean inUse ) throws IOException;
    
    
        /**
         * Connect the transport
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Nov 01 18:12:21 GMT 2020
    - 24.1K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/util/transport/Transport.java

            }
        }
    
        /* Build a connection. Only one thread will ever call this method at
         * any one time. If this method throws an exception or the connect timeout
         * expires an encapsulating TransportException will be thrown from connect
         * and the transport will be in error.
         */
    
        protected abstract void doConnect() throws Exception;
    
        /* Tear down a connection. If the hard parameter is true, the diconnection
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 9K bytes
    - Viewed (0)
  4. src/main/java/jcifs/DfsResolver.java

         */
        boolean isTrustedDomain ( CIFSContext tf, String domain ) throws CIFSException;
    
    
        /**
         * Get a connection to the domain controller for a given domain
         * 
         * @param domain
         * @param tf
         * @return connection
         * @throws CIFSException
         * @throws jcifs.smb.SmbAuthException
         */
        SmbTransport getDc ( CIFSContext tf, String domain ) throws CIFSException;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2K bytes
    - Viewed (0)
  5. src/main/java/jcifs/dcerpc/DcerpcHandle.java

        }
    
    
        /**
         * Get a handle to a service
         * 
         * @param url
         * @param tc
         * @param unshared
         *            whether an exclusive connection should be used
         * @return a DCERPC handle for the given url
         * @throws MalformedURLException
         * @throws DcerpcException
         */
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jun 30 10:11:57 GMT 2019
    - 12.9K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/DfsImpl.java

                                transport.ensureConnected();
                                return transport;
                            }
                            catch ( IOException ex ) {
                                log.debug("Connection failed " + dr.getServer(), ex);
                                e = ex;
                                dr = dr.next();
                                continue;
                            }
                        }
    
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Thu Jan 05 13:07:29 GMT 2023
    - 29.1K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/netbios/NbtException.java

                    }
                    break;
                case ERR_SSN_SRVC:
                    result += "ERR_SSN_SRVC/";
                    switch( errorCode ) {
                        case CONNECTION_REFUSED:
                            result += "Connection refused";
                            break;
                        case NOT_LISTENING_CALLED:
                            result += "Not listening on called name";
                            break;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 3.9K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb/SmbTransportInternal.java

    
        /**
         * @return whether the transport has been disconnected
         */
        boolean isDisconnected ();
    
    
        /**
         * @param hard
         * @param inuse
         * @return whether the connection was in use
         * @throws IOException
         */
        boolean disconnect ( boolean hard, boolean inuse ) throws IOException;
    
    
        /**
         * @return whether the transport was connected
         * @throws SmbException
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3K bytes
    - Viewed (0)
  9. src/test/java/jcifs/tests/NamingTest.java

    import java.net.URL;
    import java.net.UnknownHostException;
    import java.nio.ByteBuffer;
    import java.nio.charset.Charset;
    import java.nio.charset.UnsupportedCharsetException;
    import java.util.Arrays;
    import java.util.Collection;
    import java.util.Locale;
    import java.util.Map;
    import java.util.Properties;
    
    import org.junit.Assume;
    import org.junit.Ignore;
    import org.junit.Test;
    import org.junit.runner.RunWith;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sat Jun 06 10:48:05 GMT 2020
    - 7K bytes
    - Viewed (0)
  10. src/main/java/jcifs/SmbPipeResource.java

        /**
         * Pipe is used for DCE
         */
        public static final int PIPE_TYPE_DCE_TRANSACT = 0x0200 | 0x0400;
    
        /**
         * Pipe should use it's own exclusive transport connection
         */
        public static final int PIPE_TYPE_UNSHARED = 0x800;
    
    
        /**
         * @return the type of the pipe
         */
        int getPipeType ();
    
    
        /**
         * Create a pipe handle
         * 
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2.1K bytes
    - Viewed (0)
Back to top