Hi,
Can anyone please help me on this? Existing implementation:- In tomcat6.0.43 version, I have enabled the ssl on AJP connector by following the below steps 1) I did override the class "org.apache.jk.common.ChannelSocket" to "AjpSslChannelSocket extends ChannelSocket " to enable ssl on ajp port. 2) This overridden "AjpSslChannelSocket" class I have configured in server.xml file as below. <Connector address="xx.xx.xx.xx" class.channelSocket=" org.apache.jk.common. AjpSslChannelSocket " enableLookups="false" maxThreads="150" port="8009" protocol="AJP/1.3" tomcatAuthentication="false"/> I believe, it is a AJP java connector(ChannelSocket) implementation which comes with tomcat6.0.43. am I correct? what kind of ajp connector implementation on class “org.apache.jk.common.ChannelSocket” (APR,NIO,…)? Migration to:- Currently I have to do the same on tomcat8.0.33 version to replicate the above implemention to enable ssl on AJP port. 1) When I look at the tomcat8.0.33 source code, I don’t find any “org.apache.jk” package. Did “org.apache.jk” replaced with any package? 2) It looks like the ajp connector attribute (class.channelSocket) also not available in tomcat8.0.33. Do we have any similar attribute to configure customized connector implementation class? 3) Finally the class “ChannelSocket” is also missing in tomcat8.0.33. What class has to be customized in tomcat8.0.33 to enable ssl on ajp port similar to above mentioned tomcat6.0.43 implementation? Much appreciated, please advise me. Thank Venkata