Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

tomcat application missing displayname

I have a little project with some jsp deployed on an Tomcat 5.5. Recently the Servlets which are also deployed with the jsp files (one war archive) stopped working. I also checked out a previous version from my svn which should work. What I noticed that the displayname (I use a german version of Tomcat , so I guess that is how I would translate it, the name in the second column in the Tomcat manager) disappeared. I use Eclipse Ganymede on vista. Tomcat is running on Debian. A local Tomcat shows the same behavior. Hope someone have an idea. Thanks.

like image 558
Red33mer Avatar asked Dec 09 '08 14:12

Red33mer


People also ask

Where is context XML in Tomcat?

Individual XML files located in $CATALINA_HOME/conf/[enginename]/[hostname]/ The name of each individual XML file will define a new context path.

What is webapps folder in Tomcat?

The webapps directory is where deployed applications reside in Tomcat. The webapps directory is the default deployment location, but this can be configured with the appBase attribute on the <Host> element.


1 Answers

Is the <display-name> element in the web.xml file? Is the web.xml file in the WAR and at /WEB-INF/web.xml? Does it validate (eclipse can do that, or try w3c.org's validation service)?

like image 88
sblundy Avatar answered Oct 19 '22 14:10

sblundy