- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 21 for getNameServiceClient (0.2 sec)
-
src/main/java/jcifs/netbios/NbtAddress.java
if ( this.hostName.isUnknown() ) { tc.getNameServiceClient().getNbtAllByAddress(this); } } void checkNodeStatusData ( CIFSContext tc ) throws UnknownHostException { if ( this.isDataFromNodeStatus == false ) { tc.getNameServiceClient().getNbtAllByAddress(this); } } @Override
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 15.2K bytes - Viewed (0) -
src/main/java/jcifs/http/NtlmServlet.java
if ( this.loadBalance ) { dc = new UniAddress(getTransportContext().getNameServiceClient().getNbtByName(this.domainController, 0x1C, null)); } else { dc = getTransportContext().getNameServiceClient().getByName(this.domainController, true); } NtlmPasswordAuthentication ntlm;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 7.6K bytes - Viewed (0) -
src/main/java/jcifs/context/CIFSContextWrapper.java
return this.delegate.renewCredentials(locationHint, error); } @Override public NameServiceClient getNameServiceClient () { return this.delegate.getNameServiceClient(); } @Override public BufferCache getBufferCache () { return this.delegate.getBufferCache(); } @Override
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 4.4K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbResourceLocatorImpl.java
else if ( host.length() == 0 ) { try { Address addr = this.ctx.getNameServiceClient().getNbtByName(NbtAddress.MASTER_BROWSER_NAME, 0x01, null); this.addresses = new UniAddress[1]; this.addresses[ 0 ] = this.ctx.getNameServiceClient().getByName(addr.getHostAddress()); } catch ( UnknownHostException uhe ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sat Jul 20 08:24:53 UTC 2019 - 23.9K bytes - Viewed (0) -
src/main/java/jcifs/context/BaseContext.java
@Override public DfsResolver getDfs () { return this.dfs; } /** * {@inheritDoc} * * @see jcifs.CIFSContext#getNameServiceClient() */ @Override public NameServiceClient getNameServiceClient () { return this.nameServiceClient; } /** * {@inheritDoc} * * @see jcifs.CIFSContext#getBufferCache() */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Nov 27 18:25:00 UTC 2022 - 5.3K bytes - Viewed (0) -
src/test/java/jcifs/tests/NamingTest.java
PropertyConfiguration cfg = new PropertyConfiguration(prop); BaseContext c = new BaseContext(cfg); c.getNameServiceClient().getByName(getRequiredProperty("test.server.netbios")); c.getNameServiceClient().getAllByName(getRequiredProperty("test.server.netbios"), true); } @Parameters ( name = "{0}" ) public static Collection<Object> configs () {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sat Jun 06 10:48:05 UTC 2020 - 7K bytes - Viewed (0) -
src/main/java/jcifs/http/NtlmHttpFilter.java
} dc = chal.dc; challenge = chal.challenge; } else { dc = getTransportContext().getNameServiceClient().getByName(this.domainController, true); challenge = getTransportContext().getTransportPool().getChallenge(getTransportContext(), dc); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 14.8K bytes - Viewed (0) -
src/test/java/jcifs/tests/SessionTest.java
ctx.getTransportPool().logon(ctx, ctx.getNameServiceClient().getByName(getTestServer())); } // #68 @Test ( expected = SmbException.class ) public void testPoolLogonFail () throws CIFSException, UnknownHostException { CIFSContext ctx = withTestNTLMCredentials(getContext()); ctx.getTransportPool().logon(ctx, ctx.getNameServiceClient().getByName("0.0.0.0"), 12345); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:09:03 UTC 2023 - 15.8K bytes - Viewed (0) -
src/main/java/jcifs/CIFSContext.java
/** * * @return the active configuration */ Configuration getConfig (); /** * @return the name server client */ NameServiceClient getNameServiceClient (); /** * @return the buffer cache */ BufferCache getBufferCache (); /** * @return the transport pool */ SmbTransportPool getTransportPool ();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.7K bytes - Viewed (0) -
src/test/java/jcifs/tests/TimeoutTest.java
} @Override public NameServiceClient getNameServiceClient () { return this.wrapper; } } protected CIFSContext failHostInjecting ( CIFSContext ctx, final String replacement ) throws UnknownHostException { final NameServiceClient nscl = ctx.getNameServiceClient(); final NameServiceClient wrapper = new DelegatingNameServiceClient(nscl) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 12.4K bytes - Viewed (0)