- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 169 for realm (0.03 sec)
-
src/main/java/jcifs/smb1/http/NtlmServlet.java
insecureBasic = Boolean.parseBoolean(Config.getProperty("jcifs.smb1.http.insecureBasic")); realm = Config.getProperty("jcifs.smb1.http.basicRealm"); if (realm == null) { realm = "jCIFS"; } } @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.1K bytes - Viewed (0) -
docs/sts/keycloak.md
"http://localhost:8080/auth/realms/{realm}/protocol/openid-connect/token" ``` The result will be a JSON document. To invoke the API you need to extract the value of the access_token property. You can then invoke the API by including the value in the Authorization header of requests to the API. The following example shows how to get the details of the user with `{userid}` from `{realm}` realm: ``` curl \
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 8.1K bytes - Viewed (0) -
src/test/java/jcifs/smb/Kerb5AuthenticatorTest.java
@DisplayName("getUserDomain: explicit realm overrides") void getUserDomain_fromExplicitRealm() { Kerb5Authenticator auth = new Kerb5Authenticator(new Subject()); auth.setRealm("REALM.TEST"); assertEquals("REALM.TEST", auth.getUserDomain()); } @Test @DisplayName("getUserDomain: falls back to super domain when no realm/subject")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10.9K bytes - Viewed (0) -
src/main/java/jcifs/pac/kerberos/KerberosTicket.java
*/ public String getUserPrincipalName() { return this.encData.getUserPrincipalName(); } /** * Returns the user realm from the ticket. * * @return the user realm */ public String getUserRealm() { return this.encData.getUserRealm(); } /** * Returns the server principal name from the ticket. *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.7K bytes - Viewed (0) -
src/main/java/jcifs/http/NtlmServlet.java
this.insecureBasic = Boolean.parseBoolean(p.getProperty("jcifs.http.insecureBasic")); this.realm = p.getProperty("jcifs.http.basicRealm"); if (this.realm == null) { this.realm = "jCIFS"; } this.transportContext = new BaseContext(new PropertyConfiguration(p)); } catch (final CIFSException ex) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.1K bytes - Viewed (1) -
src/main/java/jcifs/smb/Kerb5Authenticator.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 13.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/http/NtlmHttpFilter.java
insecureBasic = Boolean.parseBoolean(Config.getProperty("jcifs.smb1.http.insecureBasic")); realm = Config.getProperty("jcifs.smb1.http.basicRealm"); if (realm == null) { realm = "jCIFS"; } level = Config.getInt("jcifs.smb1.util.loglevel", -1); if (level != -1) { LogStream.setLevel(level); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 11.3K bytes - Viewed (0) -
src/main/java/jcifs/http/NtlmHttpFilter.java
this.realm = p.getProperty("jcifs.http.basicRealm"); this.netbiosLookupRespLimit = Config.getInt(p, "jcifs.netbios.lookupRespLimit", 3); this.netbiosCacheTimeout = Config.getInt(p, "jcifs.netbios.cachePolicy", 60 * 10) * 60; /* 10 hours */ if (this.realm == null) { this.realm = "jCIFS"; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 15.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/http/NetworkExplorer.java
enableBasic = Config.getBoolean("jcifs.smb1.http.enableBasic", false); insecureBasic = Config.getBoolean("jcifs.smb1.http.insecureBasic", false); realm = Config.getProperty("jcifs.smb1.http.basicRealm"); if (realm == null) { realm = "jCIFS"; } defaultDomain = Config.getProperty("jcifs.smb1.smb.client.domain"); level = Config.getInt("jcifs.smb1.util.loglevel", -1);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 22.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/ntlmssp/NtlmFlags.java
/** * Sent by the server in the Type 2 message to indicate that the * target authentication realm is a domain. */ int NTLMSSP_TARGET_TYPE_DOMAIN = 0x00010000; /** * Sent by the server in the Type 2 message to indicate that the * target authentication realm is a server. */ int NTLMSSP_TARGET_TYPE_SERVER = 0x00020000; /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.1K bytes - Viewed (0)