P15GEN2\59518
2024-05-29 d4210c7c4b04abde20037ea8aa0f54ef8a2649aa
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:web="http://xmlns.jcp.org/xml/ns/javaee" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
  <filter>
    <filter-name>dispatcher</filter-name>
    <filter-class>foundation.server.Dispatcher</filter-class>
  </filter>
  
  <filter-mapping>
    <filter-name>dispatcher</filter-name>
    <url-pattern>*</url-pattern>
  </filter-mapping>
  
  <listener>
    <listener-class>foundation.server.ContextListener</listener-class>
  </listener>
  
<!--   <listener>
    <listener-class>dms.scheduledtasks.ScheduledTasks</listener-class>
  </listener>   -->
 
  <session-config>
    <session-timeout>30</session-timeout> 
  </session-config>
  
</web-app>