root/java/sql-vyuka/web/WEB-INF/web.xml @ 11:267cce6b9d77

Revision 11:267cce6b9d77, 0.7 KB (checked in by František Kučera <franta-hg@…>, 15 years ago)

Servlet pro zpracování AJAXových požadavků.

Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
3    <servlet>
4        <servlet-name>Servlet</servlet-name>
5        <servlet-class>cz.frantovo.sql.vyuka.ajax.Servlet</servlet-class>
6    </servlet>
7    <servlet-mapping>
8        <servlet-name>Servlet</servlet-name>
9        <url-pattern>/ajax</url-pattern>
10    </servlet-mapping>
11    <session-config>
12        <session-timeout>
13            30
14        </session-timeout>
15    </session-config>
16    <welcome-file-list>
17        <welcome-file>index.jsp</welcome-file>
18    </welcome-file-list>
19</web-app>
Note: See TracBrowser for help on using the browser.