I am new to J2EE I am trying to run a html file as a trial on my tomcat 7.0 typing the url http://localhost:8081/ successfully navigates me to the tomcat home page but when i try run my "dynamic web project" from eclipse which contains nothing but web.xml and index.html file, I am getting this error
HTTP Status 404 - /StudentManagement/
type Status report
message /StudentManagement/
description The requested resource is not available.
web.xml
content:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="w3.org/2001/XMLSchema-instance"; xmlns="java.sun.com/xml/ns/javaee"; xsi:schemaLocation="java.sun.com/xml/ns/javaee java.sun.com/xml/ns/javaee/web-app_3_0.xsd"; id="WebApp_ID" version="3.0">
<display-name>StudentManagement</display-name>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
</welcome-file-list>
</web-app>