java - HTTP Status 500 wrapper can not find servlet class -
i have created simple dynamic web project on eclipse. trying submit html form , passing request servlet. when click on submit exception: http status 500 wrapper can not find servlet class com.tcs.navigator.servlet.labservlet or class depends on in jsp form actoin tag had given same action path per web xml : action = "labservlet" content of web.xml : <?xml version="1.0" encoding="utf-8"?> <web-app xmlns:xsi="http://www.w3.org/2001/xmlschema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemalocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="webapp_id" version="2.5"> <welcome-file-list> <welcome-file>home.jsp</welcome-file> </welcome-file-list> <servlet> <description>to upload files processing</descri...