ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/webapps/docs/appdev/sample/sample.war-extract/WEB-INF/web.xml

Path
ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/webapps/docs/appdev/sample/sample.war-extract/WEB-INF/web.xml
Status
scanned
Type
file
Name
web.xml
Extension
.xml
Programming language

      
    
Mime type
text/xml
File type
XML 1.0 document, ASCII text, with CRLF line terminators
Tag

      
    
Rootfs path

      
    
Size
813 (813 bytes)
MD5
8595a996789c442e882933c1b767a551
SHA1
f8b9f2853266af3c27b127efa05974a564bb77f9
SHA256
16439542721d28a170bf8ccecd53ac818f2b852be2812fe1fc63e73ec6d06a21
SHA512

      
    
SHA1_git
32e0a4d1f62fe0bb5bf1401a7bf3960ffcca5ff7
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
web.xml | 813 bytes |

<?xml version="1.0" encoding="ISO-8859-1"?> <web-app xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" version="2.4"> <display-name>Hello, World Application</display-name> <description> This is a simple web application with a source code organization based on the recommendations of the Application Developer's Guide. </description> <servlet> <servlet-name>HelloServlet</servlet-name> <servlet-class>mypackage.Hello</servlet-class> </servlet> <servlet-mapping> <servlet-name>HelloServlet</servlet-name> <url-pattern>/hello</url-pattern> </servlet-mapping> </web-app>