- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for NtlmHttpAuth (0.08 sec)
-
src/test/java/jcifs/http/NtlmHttpFilterTest.java
initializeFilter(); // Test request without Authorization header should challenge client when(request.getHeader("Authorization")).thenReturn(null); when(httpSession.getAttribute("NtlmHttpAuth")).thenReturn(null); filter.doFilter(request, response, filterChain); verify(response).setStatus(HttpServletResponse.SC_UNAUTHORIZED); verify(response).setHeader("WWW-Authenticate", "NTLM");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 04:51:33 UTC 2025 - 12.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/http/NtlmHttpFilter.java
return null; } req.getSession().setAttribute("NtlmHttpAuth", ntlm); } else if (!skipAuthentication) { final HttpSession ssn = req.getSession(false); if (ssn == null || (ntlm = (NtlmPasswordAuthentication) ssn.getAttribute("NtlmHttpAuth")) == null) { resp.setHeader("WWW-Authenticate", "NTLM"); if (offerBasic) {
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
return null; } req.getSession().setAttribute("NtlmHttpAuth", ntlm); } else if (!skipAuthentication) { final HttpSession ssn = req.getSession(false); if (ssn == null || (ntlm = (NtlmPasswordAuthentication) ssn.getAttribute("NtlmHttpAuth")) == null) { resp.setHeader("WWW-Authenticate", "NTLM"); if (offerBasic) {
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/test/java/jcifs/http/NtlmServletTest.java
ntlmServlet.service(request, response); // Verify that user information is stored in the session verify(session).setAttribute("NtlmHttpAuth", ntlmAuth); verify(session).setAttribute("ntlmuser", "user"); verify(session).setAttribute("ntlmdomain", "TEST_DOMAIN"); // Verify that the chain continues
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 04:51:33 UTC 2025 - 11.5K bytes - Viewed (0)