Projet esup-lecture
Pages enfant
  • CAS en mode servlet

Comparaison des versions

Légende

  • Ces lignes ont été ajoutées. Ce mot a été ajouté.
  • Ces lignes ont été supprimées. Ce mot a été supprimé.
  • La mise en forme a été modifiée.

...

Bloc de code
# NOTE : tomcat.host, tomcat.port, cas.url are used in servlet mode for CAS configuration
#
# Tomcat host, defaults to localhost.
#
tomcat.host=uportal.univ-rennes1.fr
#
# Tomcat port, defaults to 8080.
#
tomcat.port=80

Explications :

  • tomcat.host est positionné à uportal.univ-rennes1.fr qui est le nom utilisé par le virtualhost apache en frontal du tomcat. Un frontal apache est utilisé pour notamment gérer le https

properties/config.properties

La partie casService de ce fichier de configuration est utilisée en mode portlet et servlet. Elle sert aussi bien en dynamique (utilisation des properties par Spring) qu'en statique (utilisation via la tache ant deploy) pour configurer le fichier web.xml

Bloc de code

##### casService #####
# the casServiceBean servletCasService in servlet mode OR portletCasService in portlet mode
casService.bean=portletCasService
# CasProxyServletURL, defaults to https://localhost:8080/esup-lecture/CasProxyServlet
# Please don't change /CasProxyServlet at the URL end
#
cas.proxy.servlet.url=https The service that retrieves PTs from the CAS server. This property
# must be the same as the one set in parameter casTargetService of portletCasService
# used when publishing the portlet (portlet mode)
casService.service=http://uportal.univ-rennes1.fr/esup-lecture/CasProxyServlet
# The URL used on the CAS server (servlet and portlet mode)
casService.url=https://sso-cas.univ-rennes1.fr
# The maincallback URL ofused by the CAsCAS server to pass the PGT to
#
cas.url the application (servlet and portlet mode)
casService.proxyCallbackUrl=https://sso-casuportal.univ-rennes1.fr

Explications :

/esup-lecture/CasProxyServlet

Il est de la forme : https + <virtual_host> + <context esup-lecture> + CasProxyServlet
Cette propriété définit l'URL qui sera utilisé par le serveur CAS pour transmettre un PGT à esup-lecture

web.xml esup-lecture

Une fois esup-lecture déployé en mode servlet le web.xml de l'application devrait ressembler à ceci (opération automatique via ant deploy) :

...