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

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

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 811 by torben, Wed Jun 9 20:16:01 2010 UTC revision 1060 by torben, Thu Sep 16 13:32:10 2010 UTC
# Line 5  Line 5 
5      <welcome-file>index.html</welcome-file>      <welcome-file>index.html</welcome-file>
6      <welcome-file>index.htm</welcome-file>      <welcome-file>index.htm</welcome-file>
7      <welcome-file>index.jsp</welcome-file>      <welcome-file>index.jsp</welcome-file>
     <welcome-file>default.html</welcome-file>  
     <welcome-file>default.htm</welcome-file>  
     <welcome-file>default.jsp</welcome-file>  
8    </welcome-file-list>    </welcome-file-list>
9    <context-param>    <context-param>
10      <description>Bool: Describes whether to use normal bane.dk site or use the failover (bane.dk/lite)</description>      <description>Bool: Describes whether to use azure based trafikinfo.bane.dk site or use the old (www.bane.dk)</description>
11      <param-name>usetempsite</param-name>      <param-name>useazuresite</param-name>
12      <param-value>false</param-value>      <param-value>false</param-value>
13    </context-param>    </context-param>
14    <context-param>    <context-param>
# Line 29  Line 26 
26      <param-name>cache_timeout</param-name>      <param-name>cache_timeout</param-name>
27      <param-value>120000</param-value>      <param-value>120000</param-value>
28    </context-param>    </context-param>
29      <context-param>    <context-param>
30      <description>Int: with which interval should statistics be save to DB (milliseconds) </description>      <description>Int: with which interval should statistics be save to DB (milliseconds) </description>
31      <param-name>stats_interval</param-name>      <param-name>stats_interval</param-name>
32      <param-value>30000</param-value>      <param-value>300000</param-value>
33      </context-param>
34      <context-param>  
35            <description>Int: how long should the fetcher wait for bane.dk to reply (milliseconds)</description>
36            <param-name>reply_timeout</param-name>
37            <param-value>3000</param-value>
38    </context-param>    </context-param>
39    <resource-ref>    <resource-ref>
40      <description>      <description>
# Line 44  Line 46 
46      <res-type>javax.sql.DataSource</res-type>      <res-type>javax.sql.DataSource</res-type>
47      <res-auth>Container</res-auth>      <res-auth>Container</res-auth>
48    </resource-ref>    </resource-ref>
49    <servlet>  
     <description></description>  
     <display-name>LocateStations</display-name>  
     <servlet-name>LocateStations</servlet-name>  
     <servlet-class>dk.thoerup.traininfoservice.LocateStations</servlet-class>  
   </servlet>  
   <servlet-mapping>  
     <servlet-name>LocateStations</servlet-name>  
     <url-pattern>/LocateStations</url-pattern>  
   </servlet-mapping>  
   <servlet>  
     <description></description>  
     <display-name>DumpResultSet</display-name>  
     <servlet-name>DumpResultSet</servlet-name>  
     <servlet-class>dk.thoerup.traininfoservice.DumpResultSet</servlet-class>  
   </servlet>  
   <servlet-mapping>  
     <servlet-name>DumpResultSet</servlet-name>  
     <url-pattern>/DumpResultSet</url-pattern>  
   </servlet-mapping>  
   <servlet>  
     <description></description>  
     <display-name>LoadStations</display-name>  
     <servlet-name>LoadStations</servlet-name>  
     <servlet-class>dk.thoerup.traininfoservice.LoadStations</servlet-class>  
   </servlet>  
   <servlet-mapping>  
     <servlet-name>LoadStations</servlet-name>  
     <url-pattern>/LoadStations</url-pattern>  
   </servlet-mapping>  
   <servlet>  
     <description></description>  
     <display-name>DepartureServlet</display-name>  
     <servlet-name>DepartureServlet</servlet-name>  
     <servlet-class>dk.thoerup.traininfoservice.banedk.DepartureServlet</servlet-class>  
   </servlet>  
   <servlet-mapping>  
     <servlet-name>DepartureServlet</servlet-name>  
     <url-pattern>/DepartureServlet</url-pattern>  
   </servlet-mapping>  
   <servlet>  
     <description></description>  
     <display-name>TimetableServlet</display-name>  
     <servlet-name>TimetableServlet</servlet-name>  
     <servlet-class>dk.thoerup.traininfoservice.banedk.TimetableServlet</servlet-class>  
   </servlet>  
   <servlet-mapping>  
     <servlet-name>TimetableServlet</servlet-name>  
     <url-pattern>/TimetableServlet</url-pattern>  
   </servlet-mapping>  
   <servlet>  
     <description></description>  
     <display-name>CircuitBreakerServlet</display-name>  
     <servlet-name>CircuitBreakerServlet</servlet-name>  
     <servlet-class>dk.thoerup.traininfoservice.CircuitBreakerServlet</servlet-class>  
     <init-param>  
       <param-name>readonly</param-name>  
       <param-value>0</param-value>  
     </init-param>  
   </servlet>  
   <servlet-mapping>  
     <servlet-name>CircuitBreakerServlet</servlet-name>  
     <url-pattern>/CircuitBreakerServlet</url-pattern>  
   </servlet-mapping>  
   <listener>  
     <listener-class>dk.thoerup.traininfoservice.CircuitBreakerListener</listener-class>  
   </listener>  
   <servlet>  
     <description></description>  
     <display-name>TestServlet</display-name>  
     <servlet-name>TestServlet</servlet-name>  
     <servlet-class>dk.thoerup.traininfoservice.TestServlet</servlet-class>  
   </servlet>  
   <servlet-mapping>  
     <servlet-name>TestServlet</servlet-name>  
     <url-pattern>/TestServlet</url-pattern>  
   </servlet-mapping>  
   <servlet>  
     <description></description>  
     <display-name>RequestPlotter</display-name>  
     <servlet-name>RequestPlotter</servlet-name>  
     <servlet-class>dk.thoerup.traininfoservice.RequestPlotter</servlet-class>  
   </servlet>  
   <servlet-mapping>  
     <servlet-name>RequestPlotter</servlet-name>  
     <url-pattern>/RequestPlotter</url-pattern>  
   </servlet-mapping>  
   <listener>  
     <listener-class>dk.thoerup.traininfoservice.StatisticsListener</listener-class>  
   </listener>  
50  </web-app>  </web-app>

Legend:
Removed from v.811  
changed lines
  Added in v.1060

  ViewVC Help
Powered by ViewVC 1.1.20