We recently enabled this in our build, which we maintain using the
recommended Maven WAR overlay process.  There were only two steps.

1. Add the following to pom.xml:
<dependency>
  <groupId>org.jasig.cas</groupId>
  <artifactId>cas-server-integration-restlet</artifactId>
  <version>3.3.1</version>
  <scope>runtime</scope>
  </dependency>
<dependency>

2. Add the following to web.xml:
<servlet>
  <servlet-name>restlet</servlet-name>
  
<servlet-class>com.noelios.restlet.ext.spring.RestletFrameworkServlet</servlet-class>
</servlet>
<servlet-mapping>
  <servlet-name>restlet</servlet-name>
  <url-pattern>/rest/*</url-pattern>
</servlet-mapping>

Hope that helps,
M

-- 
You are currently subscribed to [email protected] as: 
[email protected]
To unsubscribe, change settings or access archives, see 
http://www.ja-sig.org/wiki/display/JSG/cas-user

Reply via email to