bee_java 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,1188 @@
1
+ <?xml version="1.0" encoding="ISO-8859-1"?>
2
+ <!--
3
+ Licensed to the Apache Software Foundation (ASF) under one or more
4
+ contributor license agreements. See the NOTICE file distributed with
5
+ this work for additional information regarding copyright ownership.
6
+ The ASF licenses this file to You under the Apache License, Version 2.0
7
+ (the "License"); you may not use this file except in compliance with
8
+ the License. You may obtain a copy of the License at
9
+
10
+ http://www.apache.org/licenses/LICENSE-2.0
11
+
12
+ Unless required by applicable law or agreed to in writing, software
13
+ distributed under the License is distributed on an "AS IS" BASIS,
14
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+ See the License for the specific language governing permissions and
16
+ limitations under the License.
17
+ -->
18
+ <web-app xmlns="http://java.sun.com/xml/ns/j2ee"
19
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20
+ xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
21
+ version="2.4">
22
+
23
+ <!-- ======================== Introduction ============================== -->
24
+ <!-- This document defines default values for *all* web applications -->
25
+ <!-- loaded into this instance of Tomcat. As each application is -->
26
+ <!-- deployed, this file is processed, followed by the -->
27
+ <!-- "/WEB-INF/web.xml" deployment descriptor from your own -->
28
+ <!-- applications. -->
29
+ <!-- -->
30
+ <!-- WARNING: Do not configure application-specific resources here! -->
31
+ <!-- They should go in the "/WEB-INF/web.xml" file in your application. -->
32
+
33
+
34
+ <!-- ================== Built In Servlet Definitions ==================== -->
35
+
36
+
37
+ <!-- The default servlet for all web applications, that serves static -->
38
+ <!-- resources. It processes all requests that are not mapped to other -->
39
+ <!-- servlets with servlet mappings (defined either here or in your own -->
40
+ <!-- web.xml file. This servlet supports the following initialization -->
41
+ <!-- parameters (default values are in square brackets): -->
42
+ <!-- -->
43
+ <!-- debug Debugging detail level for messages logged -->
44
+ <!-- by this servlet. [0] -->
45
+ <!-- -->
46
+ <!-- fileEncoding Encoding to be used to read static resources -->
47
+ <!-- [platform default] -->
48
+ <!-- -->
49
+ <!-- input Input buffer size (in bytes) when reading -->
50
+ <!-- resources to be served. [2048] -->
51
+ <!-- -->
52
+ <!-- listings Should directory listings be produced if there -->
53
+ <!-- is no welcome file in this directory? [false] -->
54
+ <!-- WARNING: Listings for directories with many -->
55
+ <!-- entries can be slow and may consume -->
56
+ <!-- significant proportions of server resources. -->
57
+ <!-- -->
58
+ <!-- output Output buffer size (in bytes) when writing -->
59
+ <!-- resources to be served. [2048] -->
60
+ <!-- -->
61
+ <!-- readonly Is this context "read only", so HTTP -->
62
+ <!-- commands like PUT and DELETE are -->
63
+ <!-- rejected? [true] -->
64
+ <!-- -->
65
+ <!-- readmeFile File name to display with the directory -->
66
+ <!-- contents. [null] -->
67
+ <!-- -->
68
+ <!-- sendfileSize If the connector used supports sendfile, this -->
69
+ <!-- represents the minimal file size in KB for -->
70
+ <!-- which sendfile will be used. Use a negative -->
71
+ <!-- value to always disable sendfile. [48] -->
72
+ <!-- -->
73
+ <!-- For directory listing customization. Checks localXsltFile, then -->
74
+ <!-- globalXsltFile, then defaults to original behavior. -->
75
+ <!-- -->
76
+ <!-- localXsltFile Make directory listings an XML doc and -->
77
+ <!-- pass the result to this style sheet residing -->
78
+ <!-- in that directory. This overrides -->
79
+ <!-- globalXsltFile[null] -->
80
+ <!-- -->
81
+ <!-- globalXsltFile Site wide configuration version of -->
82
+ <!-- localXsltFile This argument is expected -->
83
+ <!-- to be a physical file. [null] -->
84
+ <!-- -->
85
+ <!-- -->
86
+
87
+ <servlet>
88
+ <servlet-name>default</servlet-name>
89
+ <servlet-class>org.apache.catalina.servlets.DefaultServlet</servlet-class>
90
+ <init-param>
91
+ <param-name>debug</param-name>
92
+ <param-value>0</param-value>
93
+ </init-param>
94
+ <init-param>
95
+ <param-name>listings</param-name>
96
+ <param-value>false</param-value>
97
+ </init-param>
98
+ <load-on-startup>1</load-on-startup>
99
+ </servlet>
100
+
101
+
102
+ <!-- The "invoker" servlet, which executes anonymous servlet classes -->
103
+ <!-- that have not been defined in a web.xml file. Traditionally, this -->
104
+ <!-- servlet is mapped to the URL pattern "/servlet/*", but you can map -->
105
+ <!-- it to other patterns as well. The extra path info portion of such a -->
106
+ <!-- request must be the fully qualified class name of a Java class that -->
107
+ <!-- implements Servlet (or extends HttpServlet), or the servlet name -->
108
+ <!-- of an existing servlet definition. This servlet supports the -->
109
+ <!-- following initialization parameters (default values are in square -->
110
+ <!-- brackets): -->
111
+ <!-- -->
112
+ <!-- debug Debugging detail level for messages logged -->
113
+ <!-- by this servlet. [0] -->
114
+
115
+ <!--
116
+ <servlet>
117
+ <servlet-name>invoker</servlet-name>
118
+ <servlet-class>
119
+ org.apache.catalina.servlets.InvokerServlet
120
+ </servlet-class>
121
+ <init-param>
122
+ <param-name>debug</param-name>
123
+ <param-value>0</param-value>
124
+ </init-param>
125
+ <load-on-startup>2</load-on-startup>
126
+ </servlet>
127
+ -->
128
+
129
+
130
+ <!-- The JSP page compiler and execution servlet, which is the mechanism -->
131
+ <!-- used by Tomcat to support JSP pages. Traditionally, this servlet -->
132
+ <!-- is mapped to the URL pattern "*.jsp". This servlet supports the -->
133
+ <!-- following initialization parameters (default values are in square -->
134
+ <!-- brackets): -->
135
+ <!-- -->
136
+ <!-- checkInterval If development is false and checkInterval is -->
137
+ <!-- greater than zero, background compilations are -->
138
+ <!-- enabled. checkInterval is the time in seconds -->
139
+ <!-- between checks to see if a JSP page needs to -->
140
+ <!-- be recompiled. [0] -->
141
+ <!-- -->
142
+ <!-- modificationTestInterval -->
143
+ <!-- Causes a JSP (and its dependent files) to not -->
144
+ <!-- be checked for modification during the -->
145
+ <!-- specified time interval (in seconds) from the -->
146
+ <!-- last time the JSP was checked for -->
147
+ <!-- modification. A value of 0 will cause the JSP -->
148
+ <!-- to be checked on every access. -->
149
+ <!-- Used in development mode only. [4] -->
150
+ <!-- -->
151
+ <!-- compiler Which compiler Ant should use to compile JSP -->
152
+ <!-- pages. See the Ant documentation for more -->
153
+ <!-- information. -->
154
+ <!-- -->
155
+ <!-- classdebuginfo Should the class file be compiled with -->
156
+ <!-- debugging information? [true] -->
157
+ <!-- -->
158
+ <!-- classpath What class path should I use while compiling -->
159
+ <!-- generated servlets? [Created dynamically -->
160
+ <!-- based on the current web application] -->
161
+ <!-- -->
162
+ <!-- development Is Jasper used in development mode? If true, -->
163
+ <!-- the frequency at which JSPs are checked for -->
164
+ <!-- modification may be specified via the -->
165
+ <!-- modificationTestInterval parameter. [true] -->
166
+ <!-- -->
167
+ <!-- enablePooling Determines whether tag handler pooling is -->
168
+ <!-- enabled [true] -->
169
+ <!-- -->
170
+ <!-- fork Tell Ant to fork compiles of JSP pages so that -->
171
+ <!-- a separate JVM is used for JSP page compiles -->
172
+ <!-- from the one Tomcat is running in. [true] -->
173
+ <!-- -->
174
+ <!-- ieClassId The class-id value to be sent to Internet -->
175
+ <!-- Explorer when using <jsp:plugin> tags. -->
176
+ <!-- [clsid:8AD9C840-044E-11D1-B3E9-00805F499D93] -->
177
+ <!-- -->
178
+ <!-- javaEncoding Java file encoding to use for generating java -->
179
+ <!-- source files. [UTF8] -->
180
+ <!-- -->
181
+ <!-- keepgenerated Should we keep the generated Java source code -->
182
+ <!-- for each page instead of deleting it? [true] -->
183
+ <!-- -->
184
+ <!-- mappedfile Should we generate static content with one -->
185
+ <!-- print statement per input line, to ease -->
186
+ <!-- debugging? [true] -->
187
+ <!-- -->
188
+ <!-- trimSpaces Should white spaces in template text between -->
189
+ <!-- actions or directives be trimmed? [false] -->
190
+ <!-- -->
191
+ <!-- suppressSmap Should the generation of SMAP info for JSR45 -->
192
+ <!-- debugging be suppressed? [false] -->
193
+ <!-- -->
194
+ <!-- dumpSmap Should the SMAP info for JSR45 debugging be -->
195
+ <!-- dumped to a file? [false] -->
196
+ <!-- False if suppressSmap is true -->
197
+ <!-- -->
198
+ <!-- genStrAsCharArray Should text strings be generated as char -->
199
+ <!-- arrays, to improve performance in some cases? -->
200
+ <!-- [false] -->
201
+ <!-- -->
202
+ <!-- errorOnUseBeanInvalidClassAttribute -->
203
+ <!-- Should Jasper issue an error when the value of -->
204
+ <!-- the class attribute in an useBean action is -->
205
+ <!-- not a valid bean class? [true] -->
206
+ <!-- -->
207
+ <!-- scratchdir What scratch directory should we use when -->
208
+ <!-- compiling JSP pages? [default work directory -->
209
+ <!-- for the current web application] -->
210
+ <!-- -->
211
+ <!-- xpoweredBy Determines whether X-Powered-By response -->
212
+ <!-- header is added by generated servlet [false] -->
213
+ <!-- -->
214
+ <!-- compilerTargetVM Compiler target VM -->
215
+ <!-- default is System.properties -->
216
+ <!-- java.specification.version > 1.4 -->
217
+ <!-- [1.5] else [1.4] -->
218
+ <!-- -->
219
+ <!-- compilerSourceVM Compiler source VM -->
220
+ <!-- default is System.properties -->
221
+ <!-- java.specification.version > 1.4 -->
222
+ <!-- [1.5] else [1.4] -->
223
+ <!-- -->
224
+ <!-- If you wish to use Jikes to compile JSP pages: -->
225
+ <!-- Please see the "Using Jikes" section of the Jasper-HowTo -->
226
+ <!-- page in the Tomcat documentation. -->
227
+
228
+ <servlet>
229
+ <servlet-name>jsp</servlet-name>
230
+ <servlet-class>org.apache.jasper.servlet.JspServlet</servlet-class>
231
+ <init-param>
232
+ <param-name>fork</param-name>
233
+ <param-value>false</param-value>
234
+ </init-param>
235
+ <init-param>
236
+ <param-name>xpoweredBy</param-name>
237
+ <param-value>false</param-value>
238
+ </init-param>
239
+ <load-on-startup>3</load-on-startup>
240
+ </servlet>
241
+
242
+
243
+ <!-- NOTE: An SSI Filter is also available as an alternative SSI -->
244
+ <!-- implementation. Use either the Servlet or the Filter but NOT both. -->
245
+ <!-- -->
246
+ <!-- Server Side Includes processing servlet, which processes SSI -->
247
+ <!-- directives in HTML pages consistent with similar support in web -->
248
+ <!-- servers like Apache. Traditionally, this servlet is mapped to the -->
249
+ <!-- URL pattern "*.shtml". This servlet supports the following -->
250
+ <!-- initialization parameters (default values are in square brackets): -->
251
+ <!-- -->
252
+ <!-- buffered Should output from this servlet be buffered? -->
253
+ <!-- (0=false, 1=true) [0] -->
254
+ <!-- -->
255
+ <!-- debug Debugging detail level for messages logged -->
256
+ <!-- by this servlet. [0] -->
257
+ <!-- -->
258
+ <!-- expires The number of seconds before a page with SSI -->
259
+ <!-- directives will expire. [No default] -->
260
+ <!-- -->
261
+ <!-- isVirtualWebappRelative -->
262
+ <!-- Should "virtual" paths be interpreted as -->
263
+ <!-- relative to the context root, instead of -->
264
+ <!-- the server root? (0=false, 1=true) [0] -->
265
+ <!-- -->
266
+ <!-- inputEncoding The encoding to assume for SSI resources if -->
267
+ <!-- one is not available from the resource. -->
268
+ <!-- [Platform default] -->
269
+ <!-- -->
270
+ <!-- outputEncoding The encoding to use for the page that results -->
271
+ <!-- from the SSI processing. [UTF-8] -->
272
+ <!-- -->
273
+ <!-- -->
274
+ <!-- IMPORTANT: To use the SSI servlet, you also need to rename the -->
275
+ <!-- $CATALINA_HOME/server/lib/servlets-ssi.renametojar file -->
276
+ <!-- to $CATALINA_HOME/server/lib/servlets-ssi.jar -->
277
+
278
+ <!--
279
+ <servlet>
280
+ <servlet-name>ssi</servlet-name>
281
+ <servlet-class>
282
+ org.apache.catalina.ssi.SSIServlet
283
+ </servlet-class>
284
+ <init-param>
285
+ <param-name>buffered</param-name>
286
+ <param-value>1</param-value>
287
+ </init-param>
288
+ <init-param>
289
+ <param-name>debug</param-name>
290
+ <param-value>0</param-value>
291
+ </init-param>
292
+ <init-param>
293
+ <param-name>expires</param-name>
294
+ <param-value>666</param-value>
295
+ </init-param>
296
+ <init-param>
297
+ <param-name>isVirtualWebappRelative</param-name>
298
+ <param-value>0</param-value>
299
+ </init-param>
300
+ <load-on-startup>4</load-on-startup>
301
+ </servlet>
302
+ -->
303
+
304
+
305
+ <!-- Common Gateway Includes (CGI) processing servlet, which supports -->
306
+ <!-- execution of external applications that conform to the CGI spec -->
307
+ <!-- requirements. Typically, this servlet is mapped to the URL pattern -->
308
+ <!-- "/cgi-bin/*", which means that any CGI applications that are -->
309
+ <!-- executed must be present within the web application. This servlet -->
310
+ <!-- supports the following initialization parameters (default values -->
311
+ <!-- are in square brackets): -->
312
+ <!-- -->
313
+ <!-- cgiPathPrefix The CGI search path will start at -->
314
+ <!-- webAppRootDir + File.separator + this prefix. -->
315
+ <!-- [WEB-INF/cgi] -->
316
+ <!-- -->
317
+ <!-- debug Debugging detail level for messages logged -->
318
+ <!-- by this servlet. [0] -->
319
+ <!-- -->
320
+ <!-- executable Name of the exectuable used to run the -->
321
+ <!-- script. [perl] -->
322
+ <!-- -->
323
+ <!-- parameterEncoding Name of parameter encoding to be used with -->
324
+ <!-- CGI servlet. -->
325
+ <!-- [System.getProperty("file.encoding","UTF-8")] -->
326
+ <!-- -->
327
+ <!-- passShellEnvironment Should the shell environment variables (if -->
328
+ <!-- any) be passed to the CGI script? [false] -->
329
+ <!-- -->
330
+ <!-- IMPORTANT: To use the CGI servlet, you also need to rename the -->
331
+ <!-- $CATALINA_HOME/server/lib/servlets-cgi.renametojar file -->
332
+ <!-- to $CATALINA_HOME/server/lib/servlets-cgi.jar -->
333
+
334
+ <!--
335
+ <servlet>
336
+ <servlet-name>cgi</servlet-name>
337
+ <servlet-class>org.apache.catalina.servlets.CGIServlet</servlet-class>
338
+ <init-param>
339
+ <param-name>debug</param-name>
340
+ <param-value>0</param-value>
341
+ </init-param>
342
+ <init-param>
343
+ <param-name>cgiPathPrefix</param-name>
344
+ <param-value>WEB-INF/cgi</param-value>
345
+ </init-param>
346
+ <load-on-startup>5</load-on-startup>
347
+ </servlet>
348
+ -->
349
+
350
+
351
+ <!-- ================ Built In Servlet Mappings ========================= -->
352
+
353
+
354
+ <!-- The servlet mappings for the built in servlets defined above. Note -->
355
+ <!-- that, by default, the CGI and SSI servlets are *not* mapped. You -->
356
+ <!-- must uncomment these mappings (or add them to your application's own -->
357
+ <!-- web.xml deployment descriptor) to enable these services -->
358
+
359
+ <!-- The mapping for the default servlet -->
360
+ <servlet-mapping>
361
+ <servlet-name>default</servlet-name>
362
+ <url-pattern>/</url-pattern>
363
+ </servlet-mapping>
364
+
365
+ <!-- The mapping for the invoker servlet -->
366
+ <!--
367
+ <servlet-mapping>
368
+ <servlet-name>invoker</servlet-name>
369
+ <url-pattern>/servlet/*</url-pattern>
370
+ </servlet-mapping>
371
+ -->
372
+
373
+ <!-- The mapping for the JSP servlet -->
374
+ <servlet-mapping>
375
+ <servlet-name>jsp</servlet-name>
376
+ <url-pattern>*.jsp</url-pattern>
377
+ </servlet-mapping>
378
+
379
+ <servlet-mapping>
380
+ <servlet-name>jsp</servlet-name>
381
+ <url-pattern>*.jspx</url-pattern>
382
+ </servlet-mapping>
383
+
384
+ <!-- The mapping for the SSI servlet -->
385
+ <!--
386
+ <servlet-mapping>
387
+ <servlet-name>ssi</servlet-name>
388
+ <url-pattern>*.shtml</url-pattern>
389
+ </servlet-mapping>
390
+ -->
391
+
392
+ <!-- The mapping for the CGI Gateway servlet -->
393
+
394
+ <!--
395
+ <servlet-mapping>
396
+ <servlet-name>cgi</servlet-name>
397
+ <url-pattern>/cgi-bin/*</url-pattern>
398
+ </servlet-mapping>
399
+ -->
400
+
401
+
402
+ <!-- ================== Built In Filter Definitions ===================== -->
403
+
404
+ <!-- NOTE: An SSI Servlet is also available as an alternative SSI -->
405
+ <!-- implementation. Use either the Servlet or the Filter but NOT both. -->
406
+ <!-- -->
407
+ <!-- Server Side Includes processing filter, which processes SSI -->
408
+ <!-- directives in HTML pages consistent with similar support in web -->
409
+ <!-- servers like Apache. Traditionally, this filter is mapped to the -->
410
+ <!-- URL pattern "*.shtml", though it can be mapped to "*" as it will -->
411
+ <!-- selectively enable/disable SSI processing based on mime types. For -->
412
+ <!-- this to work you will need to uncomment the .shtml mime type -->
413
+ <!-- definition towards the bottom of this file. -->
414
+ <!-- The contentType init param allows you to apply SSI processing to JSP -->
415
+ <!-- pages, javascript, or any other content you wish. This filter -->
416
+ <!-- supports the following initialization parameters (default values are -->
417
+ <!-- in square brackets): -->
418
+ <!-- -->
419
+ <!-- contentType A regex pattern that must be matched before -->
420
+ <!-- SSI processing is applied. -->
421
+ <!-- [text/x-server-parsed-html(;.*)?] -->
422
+ <!-- -->
423
+ <!-- debug Debugging detail level for messages logged -->
424
+ <!-- by this servlet. [0] -->
425
+ <!-- -->
426
+ <!-- expires The number of seconds before a page with SSI -->
427
+ <!-- directives will expire. [No default] -->
428
+ <!-- -->
429
+ <!-- isVirtualWebappRelative -->
430
+ <!-- Should "virtual" paths be interpreted as -->
431
+ <!-- relative to the context root, instead of -->
432
+ <!-- the server root? (0=false, 1=true) [0] -->
433
+ <!-- -->
434
+ <!-- -->
435
+ <!-- IMPORTANT: To use the SSI filter, you also need to rename the -->
436
+ <!-- $CATALINA_HOME/server/lib/servlets-ssi.renametojar file -->
437
+ <!-- to $CATALINA_HOME/server/lib/servlets-ssi.jar -->
438
+
439
+ <!--
440
+ <filter>
441
+ <filter-name>ssi</filter-name>
442
+ <filter-class>
443
+ org.apache.catalina.ssi.SSIFilter
444
+ </filter-class>
445
+ <init-param>
446
+ <param-name>contentType</param-name>
447
+ <param-value>text/x-server-parsed-html(;.*)?</param-value>
448
+ </init-param>
449
+ <init-param>
450
+ <param-name>debug</param-name>
451
+ <param-value>0</param-value>
452
+ </init-param>
453
+ <init-param>
454
+ <param-name>expires</param-name>
455
+ <param-value>666</param-value>
456
+ </init-param>
457
+ <init-param>
458
+ <param-name>isVirtualWebappRelative</param-name>
459
+ <param-value>0</param-value>
460
+ </init-param>
461
+ </filter>
462
+ -->
463
+
464
+
465
+ <!-- ==================== Built In Filter Mappings ====================== -->
466
+
467
+ <!-- The mapping for the SSI Filter -->
468
+ <!--
469
+ <filter-mapping>
470
+ <filter-name>ssi</filter-name>
471
+ <url-pattern>*.shtml</url-pattern>
472
+ </filter-mapping>
473
+ -->
474
+
475
+
476
+ <!-- ==================== Default Session Configuration ================= -->
477
+ <!-- You can set the default session timeout (in minutes) for all newly -->
478
+ <!-- created sessions by modifying the value below. -->
479
+
480
+ <session-config>
481
+ <session-timeout>30</session-timeout>
482
+ </session-config>
483
+
484
+
485
+ <!-- ===================== Default MIME Type Mappings =================== -->
486
+ <!-- When serving static resources, Tomcat will automatically generate -->
487
+ <!-- a "Content-Type" header based on the resource's filename extension, -->
488
+ <!-- based on these mappings. Additional mappings can be added here (to -->
489
+ <!-- apply to all web applications), or in your own application's web.xml -->
490
+ <!-- deployment descriptor. -->
491
+
492
+ <mime-mapping>
493
+ <extension>abs</extension>
494
+ <mime-type>audio/x-mpeg</mime-type>
495
+ </mime-mapping>
496
+ <mime-mapping>
497
+ <extension>ai</extension>
498
+ <mime-type>application/postscript</mime-type>
499
+ </mime-mapping>
500
+ <mime-mapping>
501
+ <extension>aif</extension>
502
+ <mime-type>audio/x-aiff</mime-type>
503
+ </mime-mapping>
504
+ <mime-mapping>
505
+ <extension>aifc</extension>
506
+ <mime-type>audio/x-aiff</mime-type>
507
+ </mime-mapping>
508
+ <mime-mapping>
509
+ <extension>aiff</extension>
510
+ <mime-type>audio/x-aiff</mime-type>
511
+ </mime-mapping>
512
+ <mime-mapping>
513
+ <extension>aim</extension>
514
+ <mime-type>application/x-aim</mime-type>
515
+ </mime-mapping>
516
+ <mime-mapping>
517
+ <extension>art</extension>
518
+ <mime-type>image/x-jg</mime-type>
519
+ </mime-mapping>
520
+ <mime-mapping>
521
+ <extension>asf</extension>
522
+ <mime-type>video/x-ms-asf</mime-type>
523
+ </mime-mapping>
524
+ <mime-mapping>
525
+ <extension>asx</extension>
526
+ <mime-type>video/x-ms-asf</mime-type>
527
+ </mime-mapping>
528
+ <mime-mapping>
529
+ <extension>au</extension>
530
+ <mime-type>audio/basic</mime-type>
531
+ </mime-mapping>
532
+ <mime-mapping>
533
+ <extension>avi</extension>
534
+ <mime-type>video/x-msvideo</mime-type>
535
+ </mime-mapping>
536
+ <mime-mapping>
537
+ <extension>avx</extension>
538
+ <mime-type>video/x-rad-screenplay</mime-type>
539
+ </mime-mapping>
540
+ <mime-mapping>
541
+ <extension>bcpio</extension>
542
+ <mime-type>application/x-bcpio</mime-type>
543
+ </mime-mapping>
544
+ <mime-mapping>
545
+ <extension>bin</extension>
546
+ <mime-type>application/octet-stream</mime-type>
547
+ </mime-mapping>
548
+ <mime-mapping>
549
+ <extension>bmp</extension>
550
+ <mime-type>image/bmp</mime-type>
551
+ </mime-mapping>
552
+ <mime-mapping>
553
+ <extension>body</extension>
554
+ <mime-type>text/html</mime-type>
555
+ </mime-mapping>
556
+ <mime-mapping>
557
+ <extension>cdf</extension>
558
+ <mime-type>application/x-netcdf</mime-type>
559
+ </mime-mapping>
560
+ <mime-mapping>
561
+ <extension>cer</extension>
562
+ <mime-type>application/x-x509-ca-cert</mime-type>
563
+ </mime-mapping>
564
+ <mime-mapping>
565
+ <extension>class</extension>
566
+ <mime-type>application/java</mime-type>
567
+ </mime-mapping>
568
+ <mime-mapping>
569
+ <extension>cpio</extension>
570
+ <mime-type>application/x-cpio</mime-type>
571
+ </mime-mapping>
572
+ <mime-mapping>
573
+ <extension>csh</extension>
574
+ <mime-type>application/x-csh</mime-type>
575
+ </mime-mapping>
576
+ <mime-mapping>
577
+ <extension>css</extension>
578
+ <mime-type>text/css</mime-type>
579
+ </mime-mapping>
580
+ <mime-mapping>
581
+ <extension>dib</extension>
582
+ <mime-type>image/bmp</mime-type>
583
+ </mime-mapping>
584
+ <mime-mapping>
585
+ <extension>doc</extension>
586
+ <mime-type>application/msword</mime-type>
587
+ </mime-mapping>
588
+ <mime-mapping>
589
+ <extension>dtd</extension>
590
+ <mime-type>application/xml-dtd</mime-type>
591
+ </mime-mapping>
592
+ <mime-mapping>
593
+ <extension>dv</extension>
594
+ <mime-type>video/x-dv</mime-type>
595
+ </mime-mapping>
596
+ <mime-mapping>
597
+ <extension>dvi</extension>
598
+ <mime-type>application/x-dvi</mime-type>
599
+ </mime-mapping>
600
+ <mime-mapping>
601
+ <extension>eps</extension>
602
+ <mime-type>application/postscript</mime-type>
603
+ </mime-mapping>
604
+ <mime-mapping>
605
+ <extension>etx</extension>
606
+ <mime-type>text/x-setext</mime-type>
607
+ </mime-mapping>
608
+ <mime-mapping>
609
+ <extension>exe</extension>
610
+ <mime-type>application/octet-stream</mime-type>
611
+ </mime-mapping>
612
+ <mime-mapping>
613
+ <extension>gif</extension>
614
+ <mime-type>image/gif</mime-type>
615
+ </mime-mapping>
616
+ <mime-mapping>
617
+ <extension>gtar</extension>
618
+ <mime-type>application/x-gtar</mime-type>
619
+ </mime-mapping>
620
+ <mime-mapping>
621
+ <extension>gz</extension>
622
+ <mime-type>application/x-gzip</mime-type>
623
+ </mime-mapping>
624
+ <mime-mapping>
625
+ <extension>hdf</extension>
626
+ <mime-type>application/x-hdf</mime-type>
627
+ </mime-mapping>
628
+ <mime-mapping>
629
+ <extension>htc</extension>
630
+ <mime-type>text/x-component</mime-type>
631
+ </mime-mapping>
632
+ <mime-mapping>
633
+ <extension>htm</extension>
634
+ <mime-type>text/html</mime-type>
635
+ </mime-mapping>
636
+ <mime-mapping>
637
+ <extension>html</extension>
638
+ <mime-type>text/html</mime-type>
639
+ </mime-mapping>
640
+ <mime-mapping>
641
+ <extension>hqx</extension>
642
+ <mime-type>application/mac-binhex40</mime-type>
643
+ </mime-mapping>
644
+ <mime-mapping>
645
+ <extension>ico</extension>
646
+ <mime-type>image/x-icon</mime-type>
647
+ </mime-mapping>
648
+ <mime-mapping>
649
+ <extension>ief</extension>
650
+ <mime-type>image/ief</mime-type>
651
+ </mime-mapping>
652
+ <mime-mapping>
653
+ <extension>jad</extension>
654
+ <mime-type>text/vnd.sun.j2me.app-descriptor</mime-type>
655
+ </mime-mapping>
656
+ <mime-mapping>
657
+ <extension>jar</extension>
658
+ <mime-type>application/java-archive</mime-type>
659
+ </mime-mapping>
660
+ <mime-mapping>
661
+ <extension>java</extension>
662
+ <mime-type>text/plain</mime-type>
663
+ </mime-mapping>
664
+ <mime-mapping>
665
+ <extension>jnlp</extension>
666
+ <mime-type>application/x-java-jnlp-file</mime-type>
667
+ </mime-mapping>
668
+ <mime-mapping>
669
+ <extension>jpe</extension>
670
+ <mime-type>image/jpeg</mime-type>
671
+ </mime-mapping>
672
+ <mime-mapping>
673
+ <extension>jpeg</extension>
674
+ <mime-type>image/jpeg</mime-type>
675
+ </mime-mapping>
676
+ <mime-mapping>
677
+ <extension>jpg</extension>
678
+ <mime-type>image/jpeg</mime-type>
679
+ </mime-mapping>
680
+ <mime-mapping>
681
+ <extension>js</extension>
682
+ <mime-type>text/javascript</mime-type>
683
+ </mime-mapping>
684
+ <mime-mapping>
685
+ <extension>jsf</extension>
686
+ <mime-type>text/plain</mime-type>
687
+ </mime-mapping>
688
+ <mime-mapping>
689
+ <extension>jspf</extension>
690
+ <mime-type>text/plain</mime-type>
691
+ </mime-mapping>
692
+ <mime-mapping>
693
+ <extension>kar</extension>
694
+ <mime-type>audio/midi</mime-type>
695
+ </mime-mapping>
696
+ <mime-mapping>
697
+ <extension>latex</extension>
698
+ <mime-type>application/x-latex</mime-type>
699
+ </mime-mapping>
700
+ <mime-mapping>
701
+ <extension>m3u</extension>
702
+ <mime-type>audio/x-mpegurl</mime-type>
703
+ </mime-mapping>
704
+ <mime-mapping>
705
+ <extension>mac</extension>
706
+ <mime-type>image/x-macpaint</mime-type>
707
+ </mime-mapping>
708
+ <mime-mapping>
709
+ <extension>man</extension>
710
+ <mime-type>application/x-troff-man</mime-type>
711
+ </mime-mapping>
712
+ <mime-mapping>
713
+ <extension>mathml</extension>
714
+ <mime-type>application/mathml+xml</mime-type>
715
+ </mime-mapping>
716
+ <mime-mapping>
717
+ <extension>me</extension>
718
+ <mime-type>application/x-troff-me</mime-type>
719
+ </mime-mapping>
720
+ <mime-mapping>
721
+ <extension>mid</extension>
722
+ <mime-type>audio/midi</mime-type>
723
+ </mime-mapping>
724
+ <mime-mapping>
725
+ <extension>midi</extension>
726
+ <mime-type>audio/midi</mime-type>
727
+ </mime-mapping>
728
+ <mime-mapping>
729
+ <extension>mif</extension>
730
+ <mime-type>application/vnd.mif</mime-type>
731
+ </mime-mapping>
732
+ <mime-mapping>
733
+ <extension>mov</extension>
734
+ <mime-type>video/quicktime</mime-type>
735
+ </mime-mapping>
736
+ <mime-mapping>
737
+ <extension>movie</extension>
738
+ <mime-type>video/x-sgi-movie</mime-type>
739
+ </mime-mapping>
740
+ <mime-mapping>
741
+ <extension>mp1</extension>
742
+ <mime-type>audio/x-mpeg</mime-type>
743
+ </mime-mapping>
744
+ <mime-mapping>
745
+ <extension>mp2</extension>
746
+ <mime-type>audio/mpeg</mime-type>
747
+ </mime-mapping>
748
+ <mime-mapping>
749
+ <extension>mp3</extension>
750
+ <mime-type>audio/mpeg</mime-type>
751
+ </mime-mapping>
752
+ <mime-mapping>
753
+ <extension>mp4</extension>
754
+ <mime-type>video/mp4</mime-type>
755
+ </mime-mapping>
756
+ <mime-mapping>
757
+ <extension>mpa</extension>
758
+ <mime-type>audio/x-mpeg</mime-type>
759
+ </mime-mapping>
760
+ <mime-mapping>
761
+ <extension>mpe</extension>
762
+ <mime-type>video/mpeg</mime-type>
763
+ </mime-mapping>
764
+ <mime-mapping>
765
+ <extension>mpeg</extension>
766
+ <mime-type>video/mpeg</mime-type>
767
+ </mime-mapping>
768
+ <mime-mapping>
769
+ <extension>mpega</extension>
770
+ <mime-type>audio/x-mpeg</mime-type>
771
+ </mime-mapping>
772
+ <mime-mapping>
773
+ <extension>mpg</extension>
774
+ <mime-type>video/mpeg</mime-type>
775
+ </mime-mapping>
776
+ <mime-mapping>
777
+ <extension>mpv2</extension>
778
+ <mime-type>video/mpeg2</mime-type>
779
+ </mime-mapping>
780
+ <mime-mapping>
781
+ <extension>ms</extension>
782
+ <mime-type>application/x-troff-ms</mime-type>
783
+ </mime-mapping>
784
+ <mime-mapping>
785
+ <extension>nc</extension>
786
+ <mime-type>application/x-netcdf</mime-type>
787
+ </mime-mapping>
788
+ <mime-mapping>
789
+ <extension>oda</extension>
790
+ <mime-type>application/oda</mime-type>
791
+ </mime-mapping>
792
+ <mime-mapping>
793
+ <!-- OpenDocument Database -->
794
+ <extension>odb</extension>
795
+ <mime-type>application/vnd.oasis.opendocument.database</mime-type>
796
+ </mime-mapping>
797
+ <mime-mapping>
798
+ <!-- OpenDocument Chart -->
799
+ <extension>odc</extension>
800
+ <mime-type>application/vnd.oasis.opendocument.chart</mime-type>
801
+ </mime-mapping>
802
+ <mime-mapping>
803
+ <!-- OpenDocument Formula -->
804
+ <extension>odf</extension>
805
+ <mime-type>application/vnd.oasis.opendocument.formula</mime-type>
806
+ </mime-mapping>
807
+ <mime-mapping>
808
+ <!-- OpenDocument Drawing -->
809
+ <extension>odg</extension>
810
+ <mime-type>application/vnd.oasis.opendocument.graphics</mime-type>
811
+ </mime-mapping>
812
+ <mime-mapping>
813
+ <!-- OpenDocument Image -->
814
+ <extension>odi</extension>
815
+ <mime-type>application/vnd.oasis.opendocument.image</mime-type>
816
+ </mime-mapping>
817
+ <mime-mapping>
818
+ <!-- OpenDocument Master Document -->
819
+ <extension>odm</extension>
820
+ <mime-type>application/vnd.oasis.opendocument.text-master</mime-type>
821
+ </mime-mapping>
822
+ <mime-mapping>
823
+ <!-- OpenDocument Presentation -->
824
+ <extension>odp</extension>
825
+ <mime-type>application/vnd.oasis.opendocument.presentation</mime-type>
826
+ </mime-mapping>
827
+ <mime-mapping>
828
+ <!-- OpenDocument Spreadsheet -->
829
+ <extension>ods</extension>
830
+ <mime-type>application/vnd.oasis.opendocument.spreadsheet</mime-type>
831
+ </mime-mapping>
832
+ <mime-mapping>
833
+ <!-- OpenDocument Text -->
834
+ <extension>odt</extension>
835
+ <mime-type>application/vnd.oasis.opendocument.text</mime-type>
836
+ </mime-mapping>
837
+ <mime-mapping>
838
+ <extension>ogg</extension>
839
+ <mime-type>application/ogg</mime-type>
840
+ </mime-mapping>
841
+ <mime-mapping>
842
+ <!-- OpenDocument Drawing Template -->
843
+ <extension>otg </extension>
844
+ <mime-type>application/vnd.oasis.opendocument.graphics-template</mime-type>
845
+ </mime-mapping>
846
+ <mime-mapping>
847
+ <!-- HTML Document Template -->
848
+ <extension>oth</extension>
849
+ <mime-type>application/vnd.oasis.opendocument.text-web</mime-type>
850
+ </mime-mapping>
851
+ <mime-mapping>
852
+ <!-- OpenDocument Presentation Template -->
853
+ <extension>otp</extension>
854
+ <mime-type>application/vnd.oasis.opendocument.presentation-template</mime-type>
855
+ </mime-mapping>
856
+ <mime-mapping>
857
+ <!-- OpenDocument Spreadsheet Template -->
858
+ <extension>ots</extension>
859
+ <mime-type>application/vnd.oasis.opendocument.spreadsheet-template </mime-type>
860
+ </mime-mapping>
861
+ <mime-mapping>
862
+ <!-- OpenDocument Text Template -->
863
+ <extension>ott</extension>
864
+ <mime-type>application/vnd.oasis.opendocument.text-template</mime-type>
865
+ </mime-mapping>
866
+ <mime-mapping>
867
+ <extension>pbm</extension>
868
+ <mime-type>image/x-portable-bitmap</mime-type>
869
+ </mime-mapping>
870
+ <mime-mapping>
871
+ <extension>pct</extension>
872
+ <mime-type>image/pict</mime-type>
873
+ </mime-mapping>
874
+ <mime-mapping>
875
+ <extension>pdf</extension>
876
+ <mime-type>application/pdf</mime-type>
877
+ </mime-mapping>
878
+ <mime-mapping>
879
+ <extension>pgm</extension>
880
+ <mime-type>image/x-portable-graymap</mime-type>
881
+ </mime-mapping>
882
+ <mime-mapping>
883
+ <extension>pic</extension>
884
+ <mime-type>image/pict</mime-type>
885
+ </mime-mapping>
886
+ <mime-mapping>
887
+ <extension>pict</extension>
888
+ <mime-type>image/pict</mime-type>
889
+ </mime-mapping>
890
+ <mime-mapping>
891
+ <extension>pls</extension>
892
+ <mime-type>audio/x-scpls</mime-type>
893
+ </mime-mapping>
894
+ <mime-mapping>
895
+ <extension>png</extension>
896
+ <mime-type>image/png</mime-type>
897
+ </mime-mapping>
898
+ <mime-mapping>
899
+ <extension>pnm</extension>
900
+ <mime-type>image/x-portable-anymap</mime-type>
901
+ </mime-mapping>
902
+ <mime-mapping>
903
+ <extension>pnt</extension>
904
+ <mime-type>image/x-macpaint</mime-type>
905
+ </mime-mapping>
906
+ <mime-mapping>
907
+ <extension>ppm</extension>
908
+ <mime-type>image/x-portable-pixmap</mime-type>
909
+ </mime-mapping>
910
+ <mime-mapping>
911
+ <extension>pps</extension>
912
+ <mime-type>application/vnd.ms-powerpoint</mime-type>
913
+ </mime-mapping>
914
+ <mime-mapping>
915
+ <extension>ppt</extension>
916
+ <mime-type>application/vnd.ms-powerpoint</mime-type>
917
+ </mime-mapping>
918
+ <mime-mapping>
919
+ <extension>ps</extension>
920
+ <mime-type>application/postscript</mime-type>
921
+ </mime-mapping>
922
+ <mime-mapping>
923
+ <extension>psd</extension>
924
+ <mime-type>image/x-photoshop</mime-type>
925
+ </mime-mapping>
926
+ <mime-mapping>
927
+ <extension>qt</extension>
928
+ <mime-type>video/quicktime</mime-type>
929
+ </mime-mapping>
930
+ <mime-mapping>
931
+ <extension>qti</extension>
932
+ <mime-type>image/x-quicktime</mime-type>
933
+ </mime-mapping>
934
+ <mime-mapping>
935
+ <extension>qtif</extension>
936
+ <mime-type>image/x-quicktime</mime-type>
937
+ </mime-mapping>
938
+ <mime-mapping>
939
+ <extension>ras</extension>
940
+ <mime-type>image/x-cmu-raster</mime-type>
941
+ </mime-mapping>
942
+ <mime-mapping>
943
+ <extension>rdf</extension>
944
+ <mime-type>application/rdf+xml</mime-type>
945
+ </mime-mapping>
946
+ <mime-mapping>
947
+ <extension>rgb</extension>
948
+ <mime-type>image/x-rgb</mime-type>
949
+ </mime-mapping>
950
+ <mime-mapping>
951
+ <extension>rm</extension>
952
+ <mime-type>application/vnd.rn-realmedia</mime-type>
953
+ </mime-mapping>
954
+ <mime-mapping>
955
+ <extension>roff</extension>
956
+ <mime-type>application/x-troff</mime-type>
957
+ </mime-mapping>
958
+ <mime-mapping>
959
+ <extension>rtf</extension>
960
+ <mime-type>text/rtf</mime-type>
961
+ </mime-mapping>
962
+ <mime-mapping>
963
+ <extension>rtx</extension>
964
+ <mime-type>text/richtext</mime-type>
965
+ </mime-mapping>
966
+ <mime-mapping>
967
+ <extension>sh</extension>
968
+ <mime-type>application/x-sh</mime-type>
969
+ </mime-mapping>
970
+ <mime-mapping>
971
+ <extension>shar</extension>
972
+ <mime-type>application/x-shar</mime-type>
973
+ </mime-mapping>
974
+ <!--
975
+ <mime-mapping>
976
+ <extension>shtml</extension>
977
+ <mime-type>text/x-server-parsed-html</mime-type>
978
+ </mime-mapping>
979
+ -->
980
+ <mime-mapping>
981
+ <extension>smf</extension>
982
+ <mime-type>audio/x-midi</mime-type>
983
+ </mime-mapping>
984
+ <mime-mapping>
985
+ <extension>sit</extension>
986
+ <mime-type>application/x-stuffit</mime-type>
987
+ </mime-mapping>
988
+ <mime-mapping>
989
+ <extension>snd</extension>
990
+ <mime-type>audio/basic</mime-type>
991
+ </mime-mapping>
992
+ <mime-mapping>
993
+ <extension>src</extension>
994
+ <mime-type>application/x-wais-source</mime-type>
995
+ </mime-mapping>
996
+ <mime-mapping>
997
+ <extension>sv4cpio</extension>
998
+ <mime-type>application/x-sv4cpio</mime-type>
999
+ </mime-mapping>
1000
+ <mime-mapping>
1001
+ <extension>sv4crc</extension>
1002
+ <mime-type>application/x-sv4crc</mime-type>
1003
+ </mime-mapping>
1004
+ <mime-mapping>
1005
+ <extension>svg</extension>
1006
+ <mime-type>image/svg+xml</mime-type>
1007
+ </mime-mapping>
1008
+ <mime-mapping>
1009
+ <extension>svgz</extension>
1010
+ <mime-type>image/svg+xml</mime-type>
1011
+ </mime-mapping>
1012
+ <mime-mapping>
1013
+ <extension>swf</extension>
1014
+ <mime-type>application/x-shockwave-flash</mime-type>
1015
+ </mime-mapping>
1016
+ <mime-mapping>
1017
+ <extension>t</extension>
1018
+ <mime-type>application/x-troff</mime-type>
1019
+ </mime-mapping>
1020
+ <mime-mapping>
1021
+ <extension>tar</extension>
1022
+ <mime-type>application/x-tar</mime-type>
1023
+ </mime-mapping>
1024
+ <mime-mapping>
1025
+ <extension>tcl</extension>
1026
+ <mime-type>application/x-tcl</mime-type>
1027
+ </mime-mapping>
1028
+ <mime-mapping>
1029
+ <extension>tex</extension>
1030
+ <mime-type>application/x-tex</mime-type>
1031
+ </mime-mapping>
1032
+ <mime-mapping>
1033
+ <extension>texi</extension>
1034
+ <mime-type>application/x-texinfo</mime-type>
1035
+ </mime-mapping>
1036
+ <mime-mapping>
1037
+ <extension>texinfo</extension>
1038
+ <mime-type>application/x-texinfo</mime-type>
1039
+ </mime-mapping>
1040
+ <mime-mapping>
1041
+ <extension>tif</extension>
1042
+ <mime-type>image/tiff</mime-type>
1043
+ </mime-mapping>
1044
+ <mime-mapping>
1045
+ <extension>tiff</extension>
1046
+ <mime-type>image/tiff</mime-type>
1047
+ </mime-mapping>
1048
+ <mime-mapping>
1049
+ <extension>tr</extension>
1050
+ <mime-type>application/x-troff</mime-type>
1051
+ </mime-mapping>
1052
+ <mime-mapping>
1053
+ <extension>tsv</extension>
1054
+ <mime-type>text/tab-separated-values</mime-type>
1055
+ </mime-mapping>
1056
+ <mime-mapping>
1057
+ <extension>txt</extension>
1058
+ <mime-type>text/plain</mime-type>
1059
+ </mime-mapping>
1060
+ <mime-mapping>
1061
+ <extension>ulw</extension>
1062
+ <mime-type>audio/basic</mime-type>
1063
+ </mime-mapping>
1064
+ <mime-mapping>
1065
+ <extension>ustar</extension>
1066
+ <mime-type>application/x-ustar</mime-type>
1067
+ </mime-mapping>
1068
+ <mime-mapping>
1069
+ <extension>vrml</extension>
1070
+ <mime-type>model/vrml</mime-type>
1071
+ </mime-mapping>
1072
+ <mime-mapping>
1073
+ <extension>vsd</extension>
1074
+ <mime-type>application/x-visio</mime-type>
1075
+ </mime-mapping>
1076
+ <mime-mapping>
1077
+ <extension>vxml</extension>
1078
+ <mime-type>application/voicexml+xml</mime-type>
1079
+ </mime-mapping>
1080
+ <mime-mapping>
1081
+ <extension>wav</extension>
1082
+ <mime-type>audio/x-wav</mime-type>
1083
+ </mime-mapping>
1084
+ <mime-mapping>
1085
+ <!-- Wireless Bitmap -->
1086
+ <extension>wbmp</extension>
1087
+ <mime-type>image/vnd.wap.wbmp</mime-type>
1088
+ </mime-mapping>
1089
+ <mime-mapping>
1090
+ <!-- WML Source -->
1091
+ <extension>wml</extension>
1092
+ <mime-type>text/vnd.wap.wml</mime-type>
1093
+ </mime-mapping>
1094
+ <mime-mapping>
1095
+ <!-- Compiled WML -->
1096
+ <extension>wmlc</extension>
1097
+ <mime-type>application/vnd.wap.wmlc</mime-type>
1098
+ </mime-mapping>
1099
+ <mime-mapping>
1100
+ <!-- WML Script Source -->
1101
+ <extension>wmls</extension>
1102
+ <mime-type>text/vnd.wap.wmlscript</mime-type>
1103
+ </mime-mapping>
1104
+ <mime-mapping>
1105
+ <!-- Compiled WML Script -->
1106
+ <extension>wmlscriptc</extension>
1107
+ <mime-type>application/vnd.wap.wmlscriptc</mime-type>
1108
+ </mime-mapping>
1109
+ <mime-mapping>
1110
+ <extension>wmv</extension>
1111
+ <mime-type>video/x-ms-wmv</mime-type>
1112
+ </mime-mapping>
1113
+ <mime-mapping>
1114
+ <extension>wrl</extension>
1115
+ <mime-type>model/vrml</mime-type>
1116
+ </mime-mapping>
1117
+ <mime-mapping>
1118
+ <extension>xbm</extension>
1119
+ <mime-type>image/x-xbitmap</mime-type>
1120
+ </mime-mapping>
1121
+ <mime-mapping>
1122
+ <extension>xht</extension>
1123
+ <mime-type>application/xhtml+xml</mime-type>
1124
+ </mime-mapping>
1125
+ <mime-mapping>
1126
+ <extension>xhtml</extension>
1127
+ <mime-type>application/xhtml+xml</mime-type>
1128
+ </mime-mapping>
1129
+ <mime-mapping>
1130
+ <extension>xls</extension>
1131
+ <mime-type>application/vnd.ms-excel</mime-type>
1132
+ </mime-mapping>
1133
+ <mime-mapping>
1134
+ <extension>xml</extension>
1135
+ <mime-type>application/xml</mime-type>
1136
+ </mime-mapping>
1137
+ <mime-mapping>
1138
+ <extension>xpm</extension>
1139
+ <mime-type>image/x-xpixmap</mime-type>
1140
+ </mime-mapping>
1141
+ <mime-mapping>
1142
+ <extension>xsl</extension>
1143
+ <mime-type>application/xml</mime-type>
1144
+ </mime-mapping>
1145
+ <mime-mapping>
1146
+ <extension>xslt</extension>
1147
+ <mime-type>application/xslt+xml</mime-type>
1148
+ </mime-mapping>
1149
+ <mime-mapping>
1150
+ <extension>xul</extension>
1151
+ <mime-type>application/vnd.mozilla.xul+xml</mime-type>
1152
+ </mime-mapping>
1153
+ <mime-mapping>
1154
+ <extension>xwd</extension>
1155
+ <mime-type>image/x-xwindowdump</mime-type>
1156
+ </mime-mapping>
1157
+ <mime-mapping>
1158
+ <extension>Z</extension>
1159
+ <mime-type>application/x-compress</mime-type>
1160
+ </mime-mapping>
1161
+ <mime-mapping>
1162
+ <extension>z</extension>
1163
+ <mime-type>application/x-compress</mime-type>
1164
+ </mime-mapping>
1165
+ <mime-mapping>
1166
+ <extension>zip</extension>
1167
+ <mime-type>application/zip</mime-type>
1168
+ </mime-mapping>
1169
+
1170
+ <!-- ==================== Default Welcome File List ===================== -->
1171
+ <!-- When a request URI refers to a directory, the default servlet looks -->
1172
+ <!-- for a "welcome file" within that directory and, if present, -->
1173
+ <!-- to the corresponding resource URI for display. If no welcome file -->
1174
+ <!-- is present, the default servlet either serves a directory listing, -->
1175
+ <!-- or returns a 404 status, depending on how it is configured. -->
1176
+ <!-- -->
1177
+ <!-- If you define welcome files in your own application's web.xml -->
1178
+ <!-- deployment descriptor, that list *replaces* the list configured -->
1179
+ <!-- here, so be sure that you include any of the default values that -->
1180
+ <!-- you wish to include. -->
1181
+
1182
+ <welcome-file-list>
1183
+ <welcome-file>index.html</welcome-file>
1184
+ <welcome-file>index.htm</welcome-file>
1185
+ <welcome-file>index.jsp</welcome-file>
1186
+ </welcome-file-list>
1187
+
1188
+ </web-app>