2 Replies Latest reply on Aug 21, 2002 12:17 AM by romalley

    JBoss 3.0/Tomcat 4.0

    johncurley

      I downloaded JBoss 3.0 bundled with Tomcat 4.0.4 (Catalina) at home. I thought I could run the bundle out of the box.

      However, after I typed run in the jboss bin directory it appeared that Tomcat did not get started correctly. when I tried to invoke the Tomcat default index file (http://localhost:8080/), I got the following error (paraphrased):

      Apache/Tomcat no context to run application

      I have Tomcat knowledge but little JBoss (my last job we used WebLogic as our App Server). Is there something I should be looking for to make sure Tomcat is set to run "out of the box" when I start JBoss.

      To perform a sanity check, I downloaded Tomcat 4.x on its own. I was able to run it out of the box and invoke the
      example servlets.

      Thanks for your help,
      John Curley

      john_curley@tvratings.com

        • 1. Re: JBoss 3.0/Tomcat 4.0
          erik777

          That's because JBoss 3.0 now forces you to use a WAR file for accessing JSP and servlets via Catalina. It didn't used to be this way, but someone thought it would be better.

          Personally, I'm going to try to figure out how to run JBoss and Catalina unbundled so I can use Catalina's features again. Catalina allows you to point your root directory either to a WAR file or to a regular path. An example of this is the way ROOT is configured in server.xml. However, when bundled, server.xml is disabled. Plus, this example is for virtual servers, a feature you need to enable in Catalina.

          You can still run Catalina standalone (without JBoss) by runing STARTUP.BAT in Catalina's bin folder. Then, try accessing 8080 again:

          http://localhost:8080/index.html

          You'll get a nice web page with links to examples and stuff. This is how it should be, but I can't find a way to accomplish this with JBoss 3.0 bundled, and none of the developer who might now answered my posts.

          Good luck!

          • 2. Re: JBoss 3.0/Tomcat 4.0
            romalley

            Guys,

            The reason it looks so poor when you first bring up the server is that they forgot to include the deployment webtest.ear in the /deploy folder of the JBoss 3.0 release. The examples.war and ROOT.war files are inside webtest.ear.

            There was a thread in late July on this subject.

            Here's a copy of it -- got it from the thread back in July. I believe, it was a major slip-up to exclude this file.

            Bob