I'm writing Angular JS
SPA application which calls Rest full web service. Back-end is being written on JAX-RS
, deployed on Tomcat 7
. I'm using HTTPS, SSL
for transferring data from SPA
to JAX-RS
requirements
problems
I think there are two options for doing LDAP authentication:
Manage user sessions. Once user is authenticated, it should be saved somewhere, so that user can do operations until its logon is not expired. How can I do it?
Which way should I choose? How should I make LDAP authenticating and session management?
Can anyone give any suggestion or example links?
so
Note also that you could use a Node.JS module as you backend, the Passport.JS Authentication framework for example, provides lots of features/capabilities relative to authentication and Federation (i.e., do things like 'Login with Google', etc...). See: passportjs.org.
In essence:
Hope it helps...