Hi,

I'm looking to connect Apache(using SSL) which is on one machine (let's
say A), to another machine (B) which is running
JBoss3.0.7-Tomcat4.1.24.  Apache is using mod_jk, which I realize is
deprecated, but due to circumstances beyond my control, this is what
I'm stuck with.  I looked up the documentation, and seemed to have done
everything necessary.  When I start up JBoss and Apache, I can access
the app striaght through the HTTP1.1 connection ala
"http://machineB:8080/myapp";, but when I go to "https://machineA/myapp";
it does the redirect to the index.html file as it should, but gives me
a 403 error.  Below is my abbreviated tomcat41-service.xml file.  You
can see that I even tried adding the ApacheConfig Listener, but to no
avail (it doesn't seem to matter).

TIA,
Spence

[tomcat41-service.xml]
<server>
        ...
  <mbean code="org.jboss.web.catalina.EmbeddedCatalinaService41"
    name="jboss.web:service=WebServer">
        ...
    <attribute name="Config">
      <Server>
         <Service name = "JBoss-Tomcat">
        ...
            <Connector
className="org.apache.ajp.tomcat4.Ajp13Connector"
               port="8009" minProcessors="5" maxProcessors="75"
               enableLookups="true" redirectPort="8443"
               acceptCount="10" debug="0" tomcatAuthentication="false">
<!--<Listener className="org.apache.ajp.tomcat4.config.ApacheConfig"
        configHome="../server/default/conf/jk"
        workersConfig="workers.properties"
        jkLog="../../logs/mod_jk.log"
        jkDebug="info"
        jkWorker="worker1"
        forwardAll="true"
        noRoot="false"
        append="true"/>
-->
        </Connector>
         </Service>
      </Server>
    </attribute>
  </mbean>
</server>


-------------------------------------------------------
This SF.net email is sponsored by: VM Ware
With VMware you can run multiple operating systems on a single machine.
WITHOUT REBOOTING! Mix Linux / Windows / Novell virtual machines at the
same time. Free trial click here: http://www.vmware.com/wl/offer/345/0
_______________________________________________
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to