I am about to develop an admin interface using Django framework for
several web applications . By design, those applications will be
decentralized, which means that they may use different databases and
reside on different servers and they will talk to each other via web
services. We have our LDAP server and we plan to use it for
authentication purpose. The authorization part for each application
will be handled locally by individual application. We want to
authenticate user only once for the access to multiple applications as
long as the log-in session does not expire.
What tools and packages Django can provide to realize our design? What
is the best strategy for the development?
Many thanks in advance for your help and time.
Wayne