Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for logonShare (0.29 sec)

  1. src/main/java/jcifs/SmbTransportPool.java

         * valid, the method will return without throwing an exception. See the
         * last <a href="../../../faq.html">FAQ</a> question.
         * <p>
         * See also the <tt>jcifs.smb.client.logonShare</tt> property.
         * 
         * @param dc
         * @param tc
         * @throws CIFSException
         * @deprecated functionality is broken and will be removed at some point,
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Sun May 17 09:02:44 GMT 2020
    - 6.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbSession.java

    import java.net.UnknownHostException;
    import java.io.IOException;
    
    public final class SmbSession {
    
        private static final String LOGON_SHARE =
                    Config.getProperty( "jcifs.smb1.smb.client.logonShare", null );
        private static final int LOOKUP_RESP_LIMIT =
                    Config.getInt( "jcifs.smb1.netbios.lookupRespLimit", 3 );
        private static final String DOMAIN =
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 18.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/config/PropertyConfiguration.java

            this.dfsStrictView = Config.getBoolean(p, "jcifs.smb.client.dfs.strictView", false);
            this.dfsConvertToFqdn = Config.getBoolean(p, "jcifs.smb.client.dfs.convertToFQDN", false);
    
            this.logonShare = p.getProperty("jcifs.smb.client.logonShare", null);
    
            this.defaultDomain = p.getProperty("jcifs.smb.client.domain", null);
            this.defaultUserName = p.getProperty("jcifs.smb.client.username", null);
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 8.9K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbSessionImpl.java

         */
        @Override
        public void treeConnectLogon () throws SmbException {
            String logonShare = getContext().getConfig().getLogonShare();
            if ( logonShare == null || logonShare.isEmpty() ) {
                throw new SmbException("Logon share is not defined");
            }
            try ( SmbTreeImpl t = getSmbTree(logonShare, null) ) {
                t.treeConnect(null, null);
            }
            catch ( CIFSException e ) {
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Sun Nov 14 17:41:04 GMT 2021
    - 49K bytes
    - Viewed (0)
  5. src/main/java/jcifs/config/BaseConfiguration.java

        protected int vcNumber = 1;
        protected boolean dfsDisabled = false;
        protected long dfsTTL = 300;
        protected boolean dfsStrictView = false;
        protected boolean dfsConvertToFqdn;
        protected String logonShare;
        protected String defaultDomain;
        protected String defaultUserName;
        protected String defaultPassword;
        protected String netbiosHostname;
        protected int netbiosCachePolicy = 60 * 60 * 10;
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 20.4K bytes
    - Viewed (1)
  6. src/main/java/jcifs/Configuration.java

         * 
         * @return local NETBIOS/short name to announce
         */
        String getNetbiosHostname ();
    
    
        /**
         * 
         * Property <tt>jcifs.smb.client.logonShare</tt>
         * 
         * @return share to connect to during authentication, if unset connect to IPC$
         */
        String getLogonShare ();
    
    
        /**
         * 
         * 
    Java
    - Registered: Sun Apr 21 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 18K bytes
    - Viewed (0)
Back to top