Title: JBoss 2.4.4 - Tomcat 4.0.1 and webserver connectors

We are currently running Jboss 2.2.2 and Tomcat 3.2.2 using the ajp12 and ajp13 connectors to receive requests from an iplanet webserver.  All of this works fine.  I'm trying to upgrade to JBoss 2.4.4 Tomcat 4.0.1 but I can't get the connectors to work.  I looked in the book and it shows to add something like this to the embedded Catalina mbean:

<server> ... <!-- The embedded Tomcat-4.x setup with AJP13 connector -->
<mbean code="org.jboss.web.catalina.EmbeddedCatalinaServiceSX"namain:service=EmbeddedTomcat">
        <config>
                <Connector className="org.apache.ajp.tomcat4.Ajp13Connector" port="8009" minProcessors="5"                                      maxProcessors="75" acceptCount="10" />

        </config>
</mbean>
</server>
 

I'm assuming that there are some typos in the above and mine looks like this:

  <mbean code="org.jboss.web.catalina.EmbeddedCatalinaServiceSX" name="DefaultDomain:service=EmbeddedTomcat">
     <config>
          <Connector className="org.apache.ajp.tomcat4.Ajp13Connector"
                     port="8009" minProcessors="5" maxProcessors="75"
                acceptCount="10" debug="5"/>
     </config>
  </mbean>

Everything starts up fine but nothing binds to port 8009.  Is what I'm trying to do still possible?


    ==============================
    Leonard Crowe
    Development Team Lead
    Dairy.com
    http://www.dairy.com
    9400 N. Central Expwy, Suite 1300
    Dallas, TX  75231
    Direct: (214) 360-0061 x157
    Fax: (214) 360-0169


Reply via email to