2015-04-23 17:06 GMT+03:00 gio.cot <[email protected]>: > Hi > > this morning (without in appearance have done nothing) I don't succeed to > run my applications Web installed on Tomcat on As400. If I open the Tomcat > console I see listed only the applications / host-manager and > > / manager, all the me applications are not listed anymore. If I go with > Wrklnk > > on webapps I see them. In the log I find the following errors: can you > help me to understand where could be the problem ? > > > > Thanks in advance > > > > Attached my web.xml file
Rules: http://tomcat.apache.org/lists.html#tomcat-users -> "7. Please format your messages as plain text, not HTML. Do not send attachments, as they are likely to be removed and ignored by the mailing list server." > > 23-Apr-2015 15.03.50 org.apache.catalina.startup.HostConfig > > deployDirectory > > INFORMAZIONI: Deploying web application directory examples > > > > 23-Apr-2015 15.03.50 org.apache.catalina.startup.HostConfig > > deployDirectory > > GRAVE: Error deploying web application directory examples > > > > java.lang.SecurityException: Servlet of class > > org.apache.catalina.ssi.SSIServlet is privileged and cannot be loaded by > > this web appllication > > at > > org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:1179) > > > > at > > org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:1026) > > > > at > > org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:4421) The examples application itself does not use SSIServlet. As such, it looks that someone added (uncommented) SSIServlet in the global conf/web.xml file on the server. Those settings are shared by all web applications. One should not modify the global conf/web.xml file. If SSI (server-side-includes) feature is needed, you should add that <servlet> and <servlet-mapping> to your own WEB-INF/web.xml file. A web application is not allowed to load the SSIServlet class unless the site administrator explicitly allowed it by marking that application as "privileged". (Manager and Host-Manager are privileged, as thus they did not fail at startup) Best regards, Konstantin Kolinko --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
