I have a website(base application) http://www.abc.com including few sub applications(App A, App B, App C etc). Suppose i have a user who access all application with a single login. Now i need to pass login information base application to sub applications. Suggest me a best way.
I have a website(base application) www.abc.com including few sub applications(App A, App B, App
Share
there are many ways which i used earlier..
1st …Use session…whenever user login thn store info on any session.and get on sub application.
2nd way…get tht login information…make encrypt it…and pass on url..
like: http://www.abc.com/ID= Encrypt&Pass=Encrypt
3rd way….create a DTO(Data Transfer Object) and store tht credential value…and access DTO on sub application.