Kyle wrote: > It sems (to me anyway) that tomcat 5.5.9 has changed in recent months > and documentation is in somewhat of a transition period. > So, I'm now a little lost w/r to integrating an AJP connector for Apache. > > In TC v4.1, server.xml had a connector; > > <Connector className="org.apache.ajp.tomcat4.Ajp13Connector" port="8019" > enableLookups="false" redirectPort="8453" acceptCount="500" > minProcessors="10" > maxProcessors="200"/> > > But the only information I can find for TC 5.5 is; > > <Connector port="8019" > enableLookups="false" redirectPort="8453" > protocol="AJP/1.3" /> > > I did find one mention of a > className="org.apache.ajp.tomcat.Ajp13Connector", but I can't find this > Class in any jar file I've looked in so far. > > Is className really no longer necessary, needed or required?? Is the > connector now bundled/integrated with Tomcat???
There was a big clean up on the connectors between 4.x and 5.x. A lot of the old, deprecated connectors were removed including org.apache.ajp.tomcat4.Ajp13Connector The Coyote connector is now used for HTTP and AJP. As documented at http://tomcat.apache.org/tomcat-5.5-doc/config/ajp.html className is no longer required. You are correct that you must specify AJP as the protocol. Note that jk2 has also been deprecated and many features of jk2 ported back to jk. > > MTiA > > Kyle > > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]