Tagged Questions
1
vote
0answers
198 views
Cannot create a session after the response has been committed in IE7 and IE8
I am working with an application that allows the user to login using NTLM and a form login simultaneously. I mean that a user can log using their windows credentials (using jespa), but it is possible ...
3
votes
2answers
94 views
Pass username to Spring Security
We are having a application which returns logged in username (Windows NTLM) and we normally pass to all other applications to check authentication part.
I would like to know is it possible to pass ...
2
votes
2answers
109 views
Spring 3 and NTLM authentication
I am using a spring 3 web application, as Spring 3 doesn't support NTLM authentication, what are the other alternatives that can be used along with Spring security? So that users are authenticated to ...
2
votes
1answer
5k views
“The matching wildcard is strict, but no declaration can be found for element 'http'” Error
I am trying to configure NTLM authentication, but receive error:
cvc-complex-type.2.4.c: The matching wildcard is strict, but no
declaration can be found for element 'http'.
I read a lot of ...
3
votes
1answer
2k views
Spring security 3 + JCIFS ntlm
Can they work together?
Some project sample would be great.
I have a web-app on Spring3. And i need to implement NTLM. Spring stopped NTLM support in 3rd version. Is there any possibilities to ...
1
vote
1answer
430 views
NTLM Spring Security Exceptions While Login
I am trying to use NTLM with Spring Security. When I run my index.jsp I am getting exception
Error creating bean with name 'authenticationProvider' defined in
ServletContext resource ...
1
vote
0answers
357 views
POST parameters mysteriously eaten after using spring security & an ntlm filter
I have a custom filter that carries out spring security authentication by checking in a database, and another that checks an NTLM provider.
The problem is this:
Enter URL
...
0
votes
2answers
1k views
Using Tomcat NTLM with Spring Security
I'm using Spring Security 2 with Spring MVC. The tomcat container I will be using already has NTLM support and will provide access to only authenticated users, before forwarding their username in the ...
2
votes
2answers
1k views
spring security form-login
when ntlmprocessingfilter fail (entered wrong username and password), it is forwarded to form-login page. but i cannot get value from j_username in protected UserDetails retrieveUser(String username
...
0
votes
2answers
728 views
spring ntlmV2 not support
i know that JCIFS not support ntlm version2 , mean i cannot use spring-nltm to do ntlm2 . in that case, what library should I use with spring to do ntlm2?
ref: ...
2
votes
0answers
379 views
spring security-ntlm , no pop up asking username/password sometime
i experienced this and wonder any suggestion you folks can recommend. i'm using spring-security-ntlm 2.04. one or two users reported even though they set 'prompt for username and password' in their ...
0
votes
1answer
445 views
Spring NTLM NtlmProcessingFilter do cache
does anyone tried doing cache for spring-ntlm NtlmProcessingFilter.java file so that every request no need to query from microsoft active directory to authenticate user ? how to implement such cache ...
0
votes
2answers
462 views
Java Spring NtlmProcessingFilter second controller
<bean id="ntlmFilter" class="org.springframework.security.ui.ntlm.NtlmProcessingFilter">
<security:custom-filter position="NTLM_FILTER" />
<property name="stripDomain" ...
1
vote
2answers
815 views
acegi ntlm how to?
I have an application that using ldap acegi-security-1.0.2.jar . I able to authenticate the user with active directory. I wanted to add NTLM auto login feature for my application. May i know what ...