plesk+ tomcat + mod_jk + jsp gives 404

I trying to install myhello-world.war to plesk tomcat5, I doing “install java webapp”, but when i go http://domain.com/mytomcat-helloworld/pages/myhelloworld.js I getting: 404 /mytomcat-helloworld/pages/myhelloworld_jstl.jsp java.io.FileNotFoundException: /mytomcat-helloworld/pages/myhelloworld_jstl.jsp at jrun.jsp.JSPEngine.getPageState(JSPEngine.java:330) at jrun.jsp.Translator.translate(Translator.java:67) at jrun.jsp.JSPEngine.translateJSP(JSPEngine.java:708) at jrun.jsp.JSPServlet.translate(JSPServlet.java:125) at jrun.jsp.JSPServlet.service(JSPServlet.java:113) at jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:106) at jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42) at jrun.servlet.JRunRequestDispatcher.invokeNext(JRunRequestDispatcher.java:586) at jrun.servlet.JRunRequestDispatcher.forwardInvoke(JRunRequestDispatcher.java:555) at jrun.servlet.JRunNamedDispatcher.forward(JRunNamedDispatcher.java:64) at coldfusion.license.JspLicenseServlet.service(Unknown Source) at coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:89) at jrun.servlet.ServletInvoker.invoke(ServletInvoker.java:106) at jrun.servlet.JRunInvokerChain.invokeNext(JRunInvokerChain.java:42) at jrun.servlet.JRunRequestDispatcher.invoke(JRunRequestDispatcher.java:286) … Read more

JSP Content Issue in Tomcat

There is one application where I work where there are still manual builds used i.e manually moving the servlet classes and jsp files from Dev to QA and finally to Prod. This is the method used in this application which cant be changed for some wierd reasons.BTW this is not the problem. We did a … Read more

Tomcat localhost page showing HTTP500 but I can access the ‘sample’ war / app but no others – Jenkins installed

I’m trying to set up my server properly so that I can run servlets on it with the help from Jenkins. Within the webapps folder are two war files. One for jenkins and one for the sample from apache. Both work fine but when trying to access localhost:8080 I get an HTTP 500 error. I … Read more

.War updates for Jboss

There is a .war file running well in JBoss environment. I need to update some little logic in some of the .jsp files. The steps I followed was First I change the extension to .zip extract out a particular .jsp file Then I make some small changes to it. I kept the original war file … Read more

Execute JSP files in IIS7 and Tomcat6

I want to execute JSP files in on Windows Server having IIS7, Tomcat6 and Java 1.6 installed. Already Installed: Java 1.6 IIS7 Tomcat6 BonCode Apache Tomcat AJP 1.3 Connector Current scenario: I am able to execute JSP files on the server if taken from Tomcat Example folder, if I create a custom JSP file it … Read more

Unable to start Tomcat8 because of org.apache.catalina.core.JasperListener?

I cannot start Tomcat8 because of the Jasper Listener, When I start Tomcat8 I got this message: org.apache.catalina.startup.Catalina.load Catalina.start using conf/server.xml: Error at (30, 65) : org.apache.catalina.core.JasperListener 28-Jun-2017 15:47:19.849 SEVERE [main] org.apache.tomcat.util.digester.Digester.startElement Begin event threw exception java.lang.ClassNotFoundException: org.apache.catalina.core.JasperListener at java.net.URLClassLoader.findClass(Unknown Source) at java.lang.ClassLoader.loadClass(Unknown Source) at java.lang.ClassLoader.loadClass(Unknown Source) at org.apache.tomcat.util.digester.ObjectCreateRule.begin(ObjectCreateRule.java:116) at org.apache.tomcat.util.digester.Digester.startElement(Digester.java:1180) at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.startElement(Unknown Source) at … Read more

Apache forward JSP pages to Tomcat?

I have an Apache Server, in which my website running. But there are some JSP pages in my website. I have to forward my JSP pages and servlet to Tomcat. How can I make that possible? Answer What you need is to use mod_proxy_ajp for your purpose. (Internet)—[Apache]—ajp—[Tomcat]—(JSP) There are many examples on how to … Read more