I need help integrating a system for my company. We created a database that centralizes all the information in one authentication server.
For authentication we use an internal url like this:
http://autentication/ServletAutentication?login=XXXXXXXXXX&password=YYYYYYYYY
where XXXXXXXX is the YYYYYYYYY username and encrypted password in the MD5 algorithm. How to get a return XML:
<autentication>
<login> XXXXXXXX </ login>
<password> true </ password>
</autentication>
The need is for authentication. The permissions are controlled by SpringSecurity Core.
After authentication, it will be stored at the last access date just that.
Does anyone know how I can implement this in SpringSecurity Core plugin?