source: gs3-extensions/iiif-servlet/trunk/src/src/main/webapp/WEB-INF/web.xml@ 32707

Last change on this file since 32707 was 32707, checked in by davidb, 5 years ago

Files needed for GS3-Cantaloupe bridge result from second round of testing

File size: 1.4 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<web-app version="3.0"
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4 xmlns="http://java.sun.com/xml/ns/javaee"
5 xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
6 http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">
7 <display-name>Greenstone3 + Cantaloupe</display-name>
8
9 <context-param>
10 <param-name>org.restlet.application</param-name>
11 <param-value>edu.illinois.library.cantaloupe.GSRestletApplication</param-value>
12 </context-param>
13
14 <listener>
15 <display-name>ApplicationListener</display-name>
16 <listener-class>edu.illinois.library.cantaloupe.ApplicationContextListener</listener-class>
17 </listener>
18 <listener>
19 <display-name>IIOProviderContextListener</display-name>
20 <listener-class>edu.illinois.library.cantaloupe.processor.codec.IIOProviderContextListener</listener-class>
21 </listener>
22
23 <servlet>
24 <servlet-name>ServerServlet</servlet-name>
25 <servlet-class>org.restlet.ext.servlet.ServerServlet</servlet-class>
26 <init-param>
27 <param-name>org.restlet.clients</param-name>
28 <param-value>CLAP HTTP HTTPS</param-value>
29 </init-param>
30 </servlet>
31
32 <servlet-mapping>
33 <servlet-name>ServerServlet</servlet-name>
34 <url-pattern>/*</url-pattern>
35 </servlet-mapping>
36</web-app>
Note: See TracBrowser for help on using the repository browser.