-
Notifications
You must be signed in to change notification settings - Fork 277
Expand file tree
/
Copy pathwebdefault.xml
More file actions
325 lines (291 loc) · 15 KB
/
Copy pathwebdefault.xml
File metadata and controls
325 lines (291 loc) · 15 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
<?xml version="1.0" encoding="ISO-8859-1"?>
<!--
This file was copied from
trunk/modules/jetty/src/main/resources/org/mortbay/jetty/webapp/webdefault.xml
in the Jetty SVN repository as of r2324. It was then modified slightly.
Also added a filter for translating Multipart form request coming from Blobstore Service
-->
<!-- ===================================================================== -->
<!-- This file contains the default descriptor for web applications. -->
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- The intent of this descriptor is to include jetty specific or common -->
<!-- configuration for all webapps. If a context has a webdefault.xml -->
<!-- descriptor, it is applied before the contexts own web.xml file -->
<!-- -->
<!-- A context may be assigned a default descriptor by: -->
<!-- + Calling WebApplicationContext.setDefaultsDescriptor -->
<!-- + Passed an arg to addWebApplications -->
<!-- -->
<!-- This file is used both as the resource within the jetty.jar (which is -->
<!-- used as the default if no explicit defaults descriptor is set) and it -->
<!-- is copied to the etc directory of the Jetty distro and explicitly -->
<!-- by the jetty.xml file. -->
<!-- -->
<!-- ===================================================================== -->
<web-app
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"
metadata-complete="true"
version="2.5">
<description>
Default web.xml file.
This file is applied to a Web application before its own WEB_INF/web.xml file
</description>
<!-- TODO(schwardo): I don't really know what this is. Sounds hacky. -->
<context-param>
<param-name>org.mortbay.jetty.webapp.NoTLDJarPattern</param-name>
<param-value>start.jar|ant-.*\.jar|dojo-.*\.jar|jetty-.*\.jar|jsp-api-.*\.jar|junit-.*\.jar|servlet-api-.*\.jar|dnsns\.jar|rt\.jar|jsse\.jar|tools\.jar|sunpkcs11\.jar|sunjce_provider\.jar|xerces.*\.jar</param-value>
</context-param>
<filter>
<filter-name>_ah_DevAppServerModulesFilter</filter-name>
<filter-class>
com.google.appengine.tools.development.DevAppServerModulesFilter
</filter-class>
</filter>
<filter>
<filter-name>_ah_StaticFileFilter</filter-name>
<filter-class>
com.google.appengine.tools.development.StaticFileFilter
</filter-class>
</filter>
<!-- ==================================================================== -->
<!-- By default, the AbandonedTransactionDetector filter is mapped to all -->
<!-- servlets. This filter rolls back any transactions that are still -->
<!-- active when the request completes. -->
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<filter>
<filter-name>_ah_AbandonedTransactionDetector</filter-name>
<filter-class>
com.google.apphosting.utils.servlet.TransactionCleanupFilter
</filter-class>
</filter>
<filter>
<filter-name>_ah_ServeBlobFilter</filter-name>
<filter-class>
com.google.appengine.api.blobstore.dev.ServeBlobFilter
</filter-class>
</filter>
<filter>
<filter-name>_ah_HeaderVerificationFilter</filter-name>
<filter-class>
com.google.appengine.tools.development.HeaderVerificationFilter
</filter-class>
</filter>
<filter>
<filter-name>_ah_DevSocketFilter</filter-name>
<filter-class>
com.google.appengine.api.socket.dev.DevSocketFilter
</filter-class>
</filter>
<filter>
<filter-name>_ah_ResponseRewriterFilter</filter-name>
<filter-class>
com.google.appengine.tools.development.ResponseRewriterFilter
</filter-class>
</filter>
<filter-mapping>
<filter-name>_ah_DevAppServerModulesFilter</filter-name>
<url-pattern>/*</url-pattern>
<!-- match both real and forwarded requests -->
<dispatcher>FORWARD</dispatcher>
<dispatcher>REQUEST</dispatcher>
</filter-mapping>
<filter-mapping>
<filter-name>_ah_StaticFileFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<filter-mapping>
<filter-name>_ah_AbandonedTransactionDetector</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<filter-mapping>
<filter-name>_ah_ServeBlobFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<filter-mapping>
<filter-name>_ah_HeaderVerificationFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<filter-mapping>
<filter-name>_ah_ResponseRewriterFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<!-- Note that filters after this point must not use java sockets. -->
<filter-mapping>
<filter-name>_ah_DevSocketFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<servlet>
<servlet-name>_ah_default</servlet-name>
<servlet-class>com.google.appengine.tools.development.LocalResourceFileServlet</servlet-class>
</servlet>
<servlet>
<servlet-name>_ah_blobImage</servlet-name>
<servlet-class>com.google.appengine.api.images.dev.LocalBlobImageServlet</servlet-class>
</servlet>
<servlet>
<servlet-name>_ah_channelServeScript</servlet-name>
<servlet-class>com.google.appengine.api.channel.dev.ServeScriptServlet</servlet-class>
</servlet>
<!-- ==================================================================== -->
<!-- JSP Servlet -->
<!-- This is the jasper JSP servlet from the jakarta project -->
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- The JSP page compiler and execution servlet, which is the mechanism -->
<!-- used by Glassfish to support JSP pages. Traditionally, this servlet -->
<!-- is mapped to URL patterh "*.jsp". This servlet supports the -->
<!-- following initialization parameters (default values are in square -->
<!-- brackets): -->
<!-- -->
<!-- checkInterval If development is false and reloading is true, -->
<!-- background compiles are enabled. checkInterval -->
<!-- is the time in seconds between checks to see -->
<!-- if a JSP page needs to be recompiled. [300] -->
<!-- -->
<!-- compiler Which compiler Ant should use to compile JSP -->
<!-- pages. See the Ant documenation for more -->
<!-- information. [javac] -->
<!-- -->
<!-- classdebuginfo Should the class file be compiled with -->
<!-- debugging information? [true] -->
<!-- -->
<!-- classpath What class path should I use while compiling -->
<!-- generated servlets? [Created dynamically -->
<!-- based on the current web application] -->
<!-- Set to ? to make the container explicitly set -->
<!-- this parameter. -->
<!-- -->
<!-- development Is Jasper used in development mode (will check -->
<!-- for JSP modification on every access)? [true] -->
<!-- -->
<!-- enablePooling Determines whether tag handler pooling is -->
<!-- enabled [true] -->
<!-- -->
<!-- fork Tell Ant to fork compiles of JSP pages so that -->
<!-- a separate JVM is used for JSP page compiles -->
<!-- from the one Tomcat is running in. [true] -->
<!-- -->
<!-- ieClassId The class-id value to be sent to Internet -->
<!-- Explorer when using <jsp:plugin> tags. -->
<!-- [clsid:8AD9C840-044E-11D1-B3E9-00805F499D93] -->
<!-- -->
<!-- javaEncoding Java file encoding to use for generating java -->
<!-- source files. [UTF-8] -->
<!-- -->
<!-- keepgenerated Should we keep the generated Java source code -->
<!-- for each page instead of deleting it? [true] -->
<!-- -->
<!-- logVerbosityLevel The level of detailed messages to be produced -->
<!-- by this servlet. Increasing levels cause the -->
<!-- generation of more messages. Valid values are -->
<!-- FATAL, ERROR, WARNING, INFORMATION, and DEBUG. -->
<!-- [WARNING] -->
<!-- -->
<!-- mappedfile Should we generate static content with one -->
<!-- print statement per input line, to ease -->
<!-- debugging? [false] -->
<!-- -->
<!-- -->
<!-- reloading Should Jasper check for modified JSPs? [true] -->
<!-- -->
<!-- suppressSmap Should the generation of SMAP info for JSR45 -->
<!-- debugging be suppressed? [false] -->
<!-- -->
<!-- dumpSmap Should the SMAP info for JSR45 debugging be -->
<!-- dumped to a file? [false] -->
<!-- False if suppressSmap is true -->
<!-- -->
<!-- scratchdir What scratch directory should we use when -->
<!-- compiling JSP pages? [default work directory -->
<!-- for the current web application] -->
<!-- -->
<!-- tagpoolMaxSize The maximum tag handler pool size [5] -->
<!-- -->
<!-- xpoweredBy Determines whether X-Powered-By response -->
<!-- header is added by generated servlet [false] -->
<!-- -->
<!-- If you wish to use Jikes to compile JSP pages: -->
<!-- Set the init parameter "compiler" to "jikes". Define -->
<!-- the property "-Dbuild.compiler.emacs=true" when starting Jetty -->
<!-- to cause Jikes to emit error messages in a format compatible with -->
<!-- Jasper. -->
<!-- If you get an error reporting that jikes can't use UTF-8 encoding, -->
<!-- try setting the init parameter "javaEncoding" to "ISO-8859-1". -->
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<servlet id="jsp">
<servlet-name>_ah_jsp</servlet-name>
<servlet-class>com.google.appengine.tools.development.PrivilegedJspServlet</servlet-class>
<init-param>
<param-name>logVerbosityLevel</param-name>
<param-value>DEBUG</param-value>
</init-param>
<init-param>
<param-name>xpoweredBy</param-name>
<param-value>false</param-value>
</init-param>
<load-on-startup>0</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>_ah_jsp</servlet-name>
<url-pattern>*.jsp</url-pattern>
<url-pattern>*.jspf</url-pattern>
<url-pattern>*.jspx</url-pattern>
<url-pattern>*.xsp</url-pattern>
<url-pattern>*.JSP</url-pattern>
<url-pattern>*.JSPF</url-pattern>
<url-pattern>*.JSPX</url-pattern>
<url-pattern>*.XSP</url-pattern>
</servlet-mapping>
<!-- Register the helper servlets for our stub authentication support. -->
<servlet>
<servlet-name>_ah_login</servlet-name>
<servlet-class>com.google.appengine.api.users.dev.LocalLoginServlet</servlet-class>
</servlet>
<servlet>
<servlet-name>_ah_logout</servlet-name>
<servlet-class>com.google.appengine.api.users.dev.LocalLogoutServlet</servlet-class>
</servlet>
<servlet>
<servlet-name>_ah_queue_deferred</servlet-name>
<servlet-class>com.google.apphosting.utils.servlet.DeferredTaskServlet</servlet-class>
</servlet>
<!-- Servlet mappings -->
<servlet-mapping>
<servlet-name>_ah_default</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
<!-- The /_ah/ URL pattern is reserved for internal servlets. -->
<servlet-mapping>
<servlet-name>_ah_login</servlet-name>
<url-pattern>/_ah/login</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>_ah_logout</servlet-name>
<url-pattern>/_ah/logout</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>_ah_blobImage</servlet-name>
<url-pattern>/_ah/img/*</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>_ah_channelServeScript</servlet-name>
<url-pattern>/_ah/channel/jsapi</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>_ah_queue_deferred</servlet-name>
<url-pattern>/_ah/queue/__deferred__</url-pattern>
</servlet-mapping>
<security-constraint>
<web-resource-collection>
<web-resource-name>Disable TRACE</web-resource-name>
<url-pattern>/</url-pattern>
<http-method>TRACE</http-method>
</web-resource-collection>
<auth-constraint/>
</security-constraint>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
</web-app>