view webapp/WEB-INF/web.xml @ 13:02c01c48cec1

created an example page to test the servlet; updated the web.xml deployment descriptor to reflect the servlet naming
author luisf <luis.figueira@eecs.qmul.ac.uk>
date Fri, 29 Nov 2013 16:30:13 +0000
parents b6acfffd25cd
children 33d7bd3c0990
line wrap: on
line source
<?xml version="1.0" encoding="UTF-8"?>
<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"
           version="2.5">

    <servlet>
        <servlet-name>HumanEchoServlet</servlet-name>
        <servlet-class>HumanEchoServlet</servlet-class>
    </servlet>
    <servlet-mapping>
        <servlet-name>HumanEchoServlet</servlet-name>
        <url-pattern>/HumanEcho</url-pattern>
    </servlet-mapping>
</web-app>