Reputation: 2047
I work with jboos 7 and I use spring in my application
currently I want to use CAS (Central Authentication Service)
I download cas-server-3.5.2 and I download apache-tomcat-7.0.47-windows-x64
and I make cas-server-webapp-3.5.2.war under apache-tomcat-7.0.47-windows-x64\apache-tomcat-7.0.47\webapps
and I have the interface of login when I make in browser this link : MyIpAdress:8080/cas-server-webapp-3.5.2/login
I want to know how can I integrate the concept of CAS with my application
ans also I want to know if it is better or not to use CAS with jboss 7 or with tomcat
Upvotes: 0
Views: 421
Reputation: 3720
From your question I am assuming that you have the CAS server running and and you can login etc.
So what you wanna do next, is letting your applications talk with the cas server, in this context your application is a client of your cas server. To do this in a Java/Spring Application you have two main options:
For some general information about CAS Client integration you could also have a look at this tutorial.
Upvotes: 1