- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for logonShare (0.13 sec)
-
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,
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun May 17 09:02:44 UTC 2020 - 6.3K bytes - Viewed (0) -
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);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 8.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbSession.java
import java.net.InetAddress; 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 =
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 18.6K bytes - Viewed (0) -
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;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 20.4K bytes - Viewed (0) -
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 ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Nov 14 17:41:04 UTC 2021 - 49K bytes - Viewed (0) -
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 (); /** * *
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:06:39 UTC 2023 - 18K bytes - Viewed (0)