Project

General

Profile

1 1533 berkley
<!DOCTYPE web-app
2
    PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN"
3 330 jones
        "http://java.sun.com/j2ee/dtds/web-app_2_2.dtd">
4
5
<web-app>
6
7 1533 berkley
8
    <!-- General description of your web application -->
9
10
    <display-name>Metadata Catalog Demo</display-name>
11
    <description>
12
      This version is a development release only.
13
    </description>
14
15
16
    <!-- Context initialization parameters that define shared
17
         String constants used within your application, which
18
         can be customized by the system administrator who is
19
         installing your application.  The values actually
20
         assigned to these parameters can be retrieved in a
21
         servlet or JSP page by calling:
22
23
             String value =
24
               getServletContext().getInitParameter("name");
25
26
         where "name" matches the <param-name> element of
27
         one of these initialization parameters.
28
29
         You can define any number of context initialization
30
         parameters, including zero.
31
    -->
32
33 330 jones
    <context-param>
34 497 jones
      <param-name>jones</param-name>
35
      <param-value>jones@nceas.ucsb.edu</param-value>
36 330 jones
      <description>
37 1533 berkley
        The EMAIL address of the administrator to whom questions
38
        and comments about this application should be addressed.
39 330 jones
      </description>
40
    </context-param>
41
42 1533 berkley
43
    <!-- Servlet definitions for the servlets that make up
44
         your web application, including initialization
45
         parameters.  With Tomcat, you can also send requests
46
         to servlets not listed here with a request like this:
47
48
           http://localhost:8080/{context-path}/servlet/{classname}
49
50
         but this usage is not guaranteed to be portable.  It also
51
         makes relative references to images and other resources
52
         required by your servlet more complicated, so defining
53
         all of your servlets (and defining a mapping to them with
54
         a <servlet-mapping> element) is recommended.
55
56
         Servlet initialization parameters can be retrieved in a
57
         servlet or JSP page by calling:
58
59
             String value =
60
               getServletConfig().getInitParameter("name");
61
62
         where "name" matches the <param-name> element of
63
         one of these initialization parameters.
64
65
         You can define any number of servlets, including zero.
66
    -->
67
68 330 jones
    <servlet>
69
      <servlet-name>metacat</servlet-name>
70 1533 berkley
      <description>
71
        The main controlling servlet for the metacat application.
72
      </description>
73 330 jones
      <servlet-class>edu.ucsb.nceas.metacat.MetaCatServlet</servlet-class>
74 1533 berkley
      <!-- Load this servlet at server startup time -->
75
      <load-on-startup>5</load-on-startup>
76 330 jones
    </servlet>
77 904 berkley
78 1533 berkley
    <servlet>
79 905 berkley
      <servlet-name>replication</servlet-name>
80 1533 berkley
       <description>
81
         The replication control servlet for metacat
82
       </description>
83 585 berkley
      <servlet-class>edu.ucsb.nceas.metacat.MetacatReplication</servlet-class>
84 1533 berkley
      <load-on-startup>5</load-on-startup>
85 585 berkley
    </servlet>
86
87 1533 berkley
88
    <!-- Define mappings that are used by the servlet container to
89
         translate a particular request URI (context-relative) to a
90
         particular servlet.  The examples below correspond to the
91
         servlet descriptions above.  Thus, a request URI like:
92
93
           http://localhost:8080/{contextpath}/graph
94
95
         will be mapped to the "graph" servlet, while a request like:
96
97
           http://localhost:8080/{contextpath}/saveCustomer.do
98
99
         will be mapped to the "controller" servlet.
100
101
         You may define any number of servlet mappings, including zero.
102
         It is also legal to define more than one mapping for the same
103
         servlet, if you wish to.
104
    -->
105
106 330 jones
    <servlet-mapping>
107 1533 berkley
      <servlet-name>metacat</servlet-name>
108
      <url-pattern>/metacat*</url-pattern>
109 330 jones
    </servlet-mapping>
110 1533 berkley
111
    <!-- Define the default session timeout for your application,
112
         in minutes.  From a servlet or JSP page, you can modify
113
         the timeout for a particular session dynamically by using
114
         HttpSession.getMaxInactiveInterval(). -->
115 330 jones
116
    <session-config>
117 1533 berkley
      <session-timeout>30</session-timeout>    <!-- 30 minutes -->
118 330 jones
    </session-config>
119 1533 berkley
120 330 jones
</web-app>