source: vanHelsing/trunk/gui/WebContent/WEB-INF/web.xml@ 830

Last change on this file since 830 was 830, checked in by tobias, on Mar 4, 2010 at 3:08:09 PM

Import eclipse project

File size: 3.9 KB
Line 
1<?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>vanHelsingGUI</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 <servlet>
13 <servlet-name>Faces Servlet</servlet-name>
14 <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
15 <load-on-startup>1</load-on-startup>
16 </servlet>
17 <context-param>
18 <description>State saving method: 'client' or 'server' (=default). See JSF Specification 2.5.2</description>
19 <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
20 <param-value>server</param-value>
21 </context-param>
22 <context-param>
23 <param-name>javax.servlet.jsp.jstl.fmt.localizationContext</param-name>
24 <param-value>resources.application</param-value>
25 </context-param>
26 <listener>
27 <listener-class>com.sun.faces.config.ConfigureListener</listener-class>
28 </listener>
29 <context-param>
30 <param-name>javax.faces.DEFAULT_SUFFIX</param-name>
31 <param-value>.jspx</param-value>
32 </context-param>
33 <context-param>
34 <description>To allow multiple windows for a single application.</description>
35 <param-name>com.icesoft.faces.concurrentDOMViews</param-name>
36 <param-value>false</param-value>
37 </context-param>
38 <context-param>
39 <description>Turn on/off application-wide synchronous or asynchronous updates. </description>
40 <param-name>com.icesoft.faces.synchronousUpdate</param-name>
41 <param-value>false</param-value>
42 </context-param>
43 <context-param>
44 <description>Google Maps API key is required if gMap component is used. Sign up for an API key from http://code.google.com/apis/maps/signup.html</description>
45 <param-name>com.icesoft.faces.gmapKey</param-name>
46 <param-value>ABQIAAAADlu0ZiSTam64EKaCQr9eTRTOTuQNzJNXRlYRLknj4cQ89tFfpxTEqxQnVWL4k55OPICgF5_SOZE06A</param-value>
47 </context-param>
48 <context-param>
49 <param-name>com.icesoft.faces.uploadDirectory</param-name>
50 <param-value>upload</param-value>
51 </context-param>
52 <context-param>
53 <param-name>com.icesoft.faces.uploadMaxFileSize</param-name>
54 <param-value>4048576</param-value>
55 </context-param>
56 <servlet>
57 <servlet-name>Persistent Faces Servlet</servlet-name>
58 <servlet-class>com.icesoft.faces.webapp.xmlhttp.PersistentFacesServlet</servlet-class>
59 <load-on-startup>1</load-on-startup>
60 </servlet>
61 <servlet-mapping>
62 <servlet-name>Persistent Faces Servlet</servlet-name>
63 <url-pattern>*.iface</url-pattern>
64 <url-pattern>*.jspx</url-pattern>
65 <url-pattern>/xmlhttp/*</url-pattern>
66 <url-pattern>*.faces</url-pattern>
67 <url-pattern>*.jsf</url-pattern>
68 <url-pattern>/faces/*</url-pattern>
69 </servlet-mapping>
70 <servlet>
71 <servlet-name>Blocking Servlet</servlet-name>
72 <servlet-class>com.icesoft.faces.webapp.xmlhttp.BlockingServlet</servlet-class>
73 <load-on-startup>1</load-on-startup>
74 </servlet>
75 <servlet-mapping>
76 <servlet-name>Blocking Servlet</servlet-name>
77 <url-pattern>/block/*</url-pattern>
78 </servlet-mapping>
79 <servlet>
80 <servlet-name>uploadServlet</servlet-name>
81 <servlet-class>com.icesoft.faces.component.inputfile.FileUploadServlet</servlet-class>
82 <load-on-startup>1</load-on-startup>
83 </servlet>
84 <servlet-mapping>
85 <servlet-name>uploadServlet</servlet-name>
86 <url-pattern>/uploadHtml</url-pattern>
87 </servlet-mapping>
88 <listener>
89 <listener-class>com.icesoft.faces.util.event.servlet.ContextEventRepeater</listener-class>
90 </listener>
91</web-app>
Note: See TracBrowser for help on using the repository browser.