/[projects]/android/TrainInfoService/WebContent/WEB-INF/web.xml
ViewVC logotype

Annotation of /android/TrainInfoService/WebContent/WEB-INF/web.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 581 - (hide annotations) (download) (as text)
Tue Feb 2 18:47:55 2010 UTC (14 years, 3 months ago) by torben
File MIME type: text/xml
File size: 3788 byte(s)
Also make timetable degrade gracefully while bane.dk's temporary site is in place
1 torben 350 <?xml version="1.0" encoding="UTF-8"?>
2     <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
3     <display-name>TrainInfoService</display-name>
4     <welcome-file-list>
5     <welcome-file>index.html</welcome-file>
6     <welcome-file>index.htm</welcome-file>
7     <welcome-file>index.jsp</welcome-file>
8     <welcome-file>default.html</welcome-file>
9     <welcome-file>default.htm</welcome-file>
10     <welcome-file>default.jsp</welcome-file>
11     </welcome-file-list>
12     <resource-ref>
13     <description>
14     Resource reference to a factory for java.sql.Connection
15     instances that may be used for talking to the database
16     that is configured in server.xml.
17     </description>
18     <res-ref-name>jdbc/android</res-ref-name>
19     <res-type>javax.sql.DataSource</res-type>
20     <res-auth>Container</res-auth>
21     </resource-ref>
22     <servlet>
23     <description></description>
24     <display-name>LocateStations</display-name>
25     <servlet-name>LocateStations</servlet-name>
26     <servlet-class>dk.thoerup.traininfoservice.LocateStations</servlet-class>
27     </servlet>
28     <servlet-mapping>
29     <servlet-name>LocateStations</servlet-name>
30     <url-pattern>/LocateStations</url-pattern>
31     </servlet-mapping>
32     <servlet>
33     <description></description>
34     <display-name>DumpResultSet</display-name>
35     <servlet-name>DumpResultSet</servlet-name>
36     <servlet-class>dk.thoerup.traininfoservice.DumpResultSet</servlet-class>
37     </servlet>
38     <servlet-mapping>
39     <servlet-name>DumpResultSet</servlet-name>
40     <url-pattern>/DumpResultSet</url-pattern>
41     </servlet-mapping>
42     <servlet>
43     <description></description>
44     <display-name>LoadStations</display-name>
45     <servlet-name>LoadStations</servlet-name>
46     <servlet-class>dk.thoerup.traininfoservice.LoadStations</servlet-class>
47     </servlet>
48     <servlet-mapping>
49     <servlet-name>LoadStations</servlet-name>
50     <url-pattern>/LoadStations</url-pattern>
51     </servlet-mapping>
52     <servlet>
53     <description></description>
54     <display-name>DepartureServlet</display-name>
55     <servlet-name>DepartureServlet</servlet-name>
56     <servlet-class>dk.thoerup.traininfoservice.banedk.DepartureServlet</servlet-class>
57 torben 580 <init-param>
58     <param-name>usetempsite</param-name>
59 torben 581 <param-value>false</param-value>
60 torben 580 </init-param>
61 torben 350 </servlet>
62     <servlet-mapping>
63     <servlet-name>DepartureServlet</servlet-name>
64     <url-pattern>/DepartureServlet</url-pattern>
65     </servlet-mapping>
66     <servlet>
67     <description></description>
68     <display-name>TimetableServlet</display-name>
69     <servlet-name>TimetableServlet</servlet-name>
70     <servlet-class>dk.thoerup.traininfoservice.banedk.TimetableServlet</servlet-class>
71 torben 581 <init-param>
72     <param-name>usetempsite</param-name>
73     <param-value>false</param-value>
74     </init-param>
75 torben 350 </servlet>
76     <servlet-mapping>
77     <servlet-name>TimetableServlet</servlet-name>
78     <url-pattern>/TimetableServlet</url-pattern>
79     </servlet-mapping>
80 torben 422
81 torben 421 <servlet>
82     <description></description>
83     <display-name>CircuitBreakerServlet</display-name>
84     <servlet-name>CircuitBreakerServlet</servlet-name>
85     <servlet-class>dk.thoerup.traininfoservice.CircuitBreakerServlet</servlet-class>
86     <init-param>
87     <param-name>readonly</param-name>
88     <param-value>0</param-value>
89     </init-param>
90     </servlet>
91    
92     <servlet-mapping>
93     <servlet-name>CircuitBreakerServlet</servlet-name>
94     <url-pattern>/CircuitBreakerServlet</url-pattern>
95     </servlet-mapping>
96    
97     <listener>
98     <listener-class>dk.thoerup.traininfoservice.CircuitBreakerListener</listener-class>
99     </listener>
100 torben 292 </web-app>

  ViewVC Help
Powered by ViewVC 1.1.20