Java Spring NtlmProcessingFilter second controller -


<bean id="ntlmfilter" class="org.springframework.security.ui.ntlm.ntlmprocessingfilter">     <security:custom-filter position="ntlm_filter" />     <property name="stripdomain" value="true" />     <property name="defaultdomain" value="company" />     <property name="domaincontroller" value="192.168.1.1" />     <property name="authenticationmanager" ref="_authenticationmanager" /> </bean> 

may know how set failover second controller?

unfortunately, ntlm isn't supported spring 3.

if using secondary domain controller critical requirement application, think you'll need jcifs source. jcifs doesn't want support ntlm anymore either. old libraries out there. i've hacked around app invisibly authenticate users whether they're domaina or domainb. it's possible, although possibly bit daunting.


Comments

Popular posts from this blog

c++ - Convert big endian to little endian when reading from a binary file -

C#: Application without a window or taskbar item (background app) that can still use Console.WriteLine() -

unicode - Are email addresses allowed to contain non-alphanumeric characters? -