posted 14 years ago
So my goal is to be able to continue development on my works application if i have to work from home.
Right now we have it set up to use spring to get authentication from a LDAP server. And of course i get an error when i try to run the app without being connected to the network.
Right now we actually have 2 different applications that both use spring to get authentication from an LDAP server and the are set up slightly different in each instance. But hopefully i can figure out how to fix both once i fix the first one.
one app has a applicationContext-security.xml file which specifies
And there are 2 files that have to do with the authentication.
LdapAuthenticationProvider.java which has an authenticate method:
LdapAuthenticationToke.java has another authenticate method:
Or i could just switch the authentication to pull from oracle since i have a local copy of the database running on my laptop. This would probably be easier than completely removing the authentication.
Any help or suggestions will be greatly appreciated!