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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 602 - (hide annotations) (download) (as text)
Sun Feb 21 20:31:20 2010 UTC (14 years, 3 months ago) by torben
File MIME type: text/xml
File size: 1696 byte(s)
Very basic picture service
1 torben 602 <?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>PicturePosterService</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     <context-param>
13     <param-name>picturefolder</param-name>
14     <param-value>/home/app/data/PicturePoster/</param-value>
15     </context-param>
16     <servlet>
17     <description></description>
18     <display-name>PostServlet</display-name>
19     <servlet-name>PostServlet</servlet-name>
20     <servlet-class>dk.thoerup.pictureposterservice.PostServlet</servlet-class>
21     </servlet>
22     <servlet-mapping>
23     <servlet-name>PostServlet</servlet-name>
24     <url-pattern>/PostServlet</url-pattern>
25     </servlet-mapping>
26     <listener>
27     <listener-class>dk.thoerup.pictureposterservice.HibernateListener</listener-class>
28     </listener>
29     <servlet>
30     <description></description>
31     <display-name>PictureServlet</display-name>
32     <servlet-name>PictureServlet</servlet-name>
33     <servlet-class>dk.thoerup.pictureposterservice.PictureServlet</servlet-class>
34     </servlet>
35     <servlet-mapping>
36     <servlet-name>PictureServlet</servlet-name>
37     <url-pattern>/PictureServlet</url-pattern>
38     </servlet-mapping>
39     </web-app>

  ViewVC Help
Powered by ViewVC 1.1.20