La liste d'utilisateurs n'est pas rendue car vous ne possédez pas les droits d'accès nécessaires pour afficher les profils utilisateur.

Arborescence des pages

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.

1 Requirements

  • JDK 1.6

  • Tomcat 6

2 Servlet installation

Helpdesk is packaged and placed on a centralized repository available at:

https://mvn.esup-portail.org/content/repositories/releases/org/esupportail/helpdesk-web-jsf-servlet/<version>/helpdesk-web-jsf-servlet-<version>.war

3 Configure : config.properties

Adapt the configuration file so that the application is running, for example, in a production environment or recipe.

...

Paramètre

Description

Version

Exemple

TODO all parameters used with V1

https://www.esup-portail.org/display/PROJHELPDESK/01+Configuration

1.0.0

 

Configuring CAS Client in WEB-INF/web.xml

<!--

==============================================================

CAS AUTHENTICATION

==============================================================

-->

<filter>

<description>

The CAS filter, used to authenticate users.

</description>

<display-name>CASFilter</display-name>

<filter-name>CAS Filter</filter-name>

<filter-class>

edu.yale.its.tp.cas.client.filter.CASFilter

</filter-class>

<init-param>

<param-name>

edu.yale.its.tp.cas.client.filter.loginUrl

</param-name>

<param-value>

https://cas.domain.edu/login

</param-value>

</init-param>

<init-param>

<param-name>

edu.yale.its.tp.cas.client.filter.validateUrl

</param-name>

<param-value>

https://cas.domain.edu/serviceValidate

</param-value>

</init-param>

<init-param>

<param-name>

edu.yale.its.tp.cas.client.filter.serverName

</param-name>

<param-value>localhost:8080</param-value>

</init-param>

<init-param>

<param-name>

edu.yale.its.tp.cas.client.filter.wrapRequest

</param-name>

<param-value>true</param-value>

</init-param>

</filter>

<filter-mapping>

<filter-name>CAS Filter</filter-name>

<url-pattern>/stylesheets/cas.faces</url-pattern>

</filter-mapping>

...