...
Bloc de code |
---|
"GET /proxyValidate?service=http://uportal.univ-rennes1.fr/esup-lecture&ticket=ST-1097558-RQAdgAUtx73dWS0NTUr2&pgtUrl=https://uportal.univ-rennes1.fr/esup-lecture/CasProxyServlet HTTP/1.1" 200 396 "GET /proxy?pgt=TGT-532053-Eqc3kCNpwsBWUSHYbubrrwuw4C6BrUXmOIcchcjpc04Bac2Upk&targetService=http://localhost:8080/sources/rss.xml HTTP/1.1" 200 193 "GET /proxyValidate?service=http%3A%2F%2Flocalhost%3A8080%2Fsources%2Frss.xml&ticket=ST-1097753-E6DDtPdsrXpohXuO6g7v HTTP/1.1" 200 380 |
Configuration
properties/config.properties
Cf. la partie "properties/config.properties" dans le chapitre "Configuration" de CAS en mode servlet
web.xml esup-lecture
Une fois esup-lecture déployé en mode portlet le web.xml de l'application devrait ressembler à ceci (opération automatique via ant deploy) :
Bloc de code |
---|
<?xml version="1.0"?>
.../...
<context-param>
<param-name>edu.yale.its.tp.cas.proxyUrl</param-name>
<param-value>https://sso-cas.univ-rennes1.fr/proxy</param-value>
</context-param>
.../...
<servlet>
<servlet-name>ProxyTicketReceptor</servlet-name>
<servlet-class>edu.yale.its.tp.cas.proxy.ProxyTicketReceptor</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>ProxyTicketReceptor</servlet-name>
<url-pattern>/CasProxyServlet</url-pattern>
</servlet-mapping>
.../...
</web-app>
|