6. web.xml - deployment descriptor file

Mirjana's picture

<?xml version="1.0" encoding="UTF-8"?>
<web-app>
      <display-name>
      SOMU_webApp</display-name>
      <welcome-file-list>
            <welcome-file>index.html</welcome-file>
            <welcome-file>index.htm</welcome-file>
            <welcome-file>index.jsp</welcome-file>
            <welcome-file>default.html</welcome-file>
            <welcome-file>default.htm</welcome-file>
            <welcome-file>default.jsp</welcome-file>
      </welcome-file-list>
      <error-page>
            <error-code>404</error-code>
            <location>/html/error404.html</location>
      </error-page>
      <error-page>
            <error-code>500</error-code>
            <location>/html/error500.html</location>
      </error-page>
      <taglib>
            <taglib-uri>http://www.stercomm.com/uix/security</taglib-uri>
            <taglib-location>tld/userautho.tld</taglib-location>
      </taglib>
      <taglib>
            <taglib-uri>http://jakarta.apache.org/taglibs/xtags-1.0</taglib-uri>
            <taglib-location>tld/taglibs-xtags.tld</taglib-location>
      </taglib>
</web-app>