- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for HTTP_UNAUTHORIZED (0.3 sec)
-
src/test/java/jcifs/http/NtlmHttpURLConnectionTest.java
// Arrange mockResponse(HTTP_UNAUTHORIZED, "Unauthorized", Collections.singletonMap("WWW-Authenticate", Collections.singletonList("Basic realm=\"Test\"")), new ByteArrayInputStream(new byte[0])); // Act int responseCode = ntlmConnection.getResponseCode(); // Assert assertEquals(HTTP_UNAUTHORIZED, responseCode);Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 12.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/http/NtlmHttpURLConnection.java
} } private void doHandshake() throws IOException { connect(); try { int response = parseResponseCode(); if (response != HTTP_UNAUTHORIZED && response != HTTP_PROXY_AUTH) { return; } final Type1Message type1 = (Type1Message) attemptNegotiation(response); if (type1 == null) {Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 22.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessApiFailureHook.java
// ========== protected static final int HTTP_BAD_REQUEST = 400; protected static final int HTTP_UNAUTHORIZED = 401; // =================================================================================== // Business FailureRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.8K bytes - Viewed (0) -
src/main/java/jcifs/http/NtlmHttpURLConnection.java
} } private void doHandshake() throws IOException, GeneralSecurityException { connect(); try { int response = parseResponseCode(); if (response != HTTP_UNAUTHORIZED && response != HTTP_PROXY_AUTH) { return; } final NtlmMessage type1 = attemptNegotiation(response); if (type1 == null) { return; // no NTLMRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 25.6K bytes - Viewed (0)