http status code 404 - application URL gives 404 error after deployment -
i using tomcat v.6.0 . have deployed .war file manager. can see exploded folder in webapps directory of tomcat. can access http://localhost:8080
. when try access /myapp, getting 404 error. when checked console on eclipse (which handling tomcat , myapp from) , see following :
apr 17, 2013 10:56:05 pm org.apache.catalina.startup.contextconfig applicationwebconfig severe: parse error in application web.xml file @ jndi:/localhost/submitserver/web-inf/web.xml org.xml.sax.saxparseexception; systemid: jndi:/localhost/submitserver/web-inf/web.xml; linenumber: 466; columnnumber: 19; error @ (466, 19: filter mapping specifies unknown filter name sourcetextfilter
i checked line 466 in web.xml file , fine
463 <filter-mapping> 464 <filter-name>sourcetextfilter</filter-name> 465 <url-pattern>/view/project.jsp</url-pattern> 466 </filter-mapping> 467 <filter-mapping> 468 <filter-name>sourcetextfilter</filter-name>
i have searched on internet , stackoverflow similar questions , solutions, none of them seemed me.
Comments
Post a Comment