Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

If I have two separate Grails apps running on the same app server (Tomcat/Glassfish), how do I allow the user to log into the first app then have him authenticated for the second app so he's not prompted when he goes to that app?

share|improve this question
How does the person 'go' to the second app? By a link from the first app? by launching another browser session and typing in the url? – Chii Dec 19 '08 at 8:15

3 Answers

up vote 1 down vote accepted

IMO the best way to go for it is to implement a federated login server. For example CAS (Central Authentication Service) which is a Web Single Sign-On solution. This would also allow to integrate application running on different app servers/machines.

share|improve this answer

there is a crowd plugin for grails that enables crowd integration - see http://www.atlassian.com/software/crowd/ for details.

share|improve this answer

I'd also suggest going the CAS route. The newest acegi plugin has CAS support which should make it pretty easy. But with CAS you still need authorization (what the user can do) as its purpose is authentication (who the user is).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.