Is there an implementation of AJP protocole in Java ? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T12:23:36Z http://stackoverflow.com/feeds/question/149662 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/149662/is-there-an-implementation-of-ajp-protocole-in-java 3 Is there an implementation of AJP protocole in Java ? Zappa 2008-09-29T17:02:59Z 2008-09-30T07:58:03Z <p>From Apache, you can use the "mod_jk" module to send http requests to Tomcat using the "AJP" protocole, which is far more efficient that http itself.</p> <p>I want to do the same, but from a Java program. I want to use "AJP" because of its good performances (and Tomcat is not bad after all).</p> <p>Of course, "google is my friend" (but I didn't find what I was looking for).</p> <p>So my question is :</p> <p>Do someone know about a Java implementation of the client side of "AJP" ? </p> http://stackoverflow.com/questions/149662/is-there-an-implementation-of-ajp-protocole-in-java/150258#150258 0 Answer by xmjx for Is there an implementation of AJP protocole in Java ? xmjx 2008-09-29T19:26:01Z 2008-09-29T19:26:01Z <p>Whithout any real idea, but have you looked into Tomcat's source code, yet? Maybe Tomcat doesn't just implement the receiving end of AJP.</p> http://stackoverflow.com/questions/149662/is-there-an-implementation-of-ajp-protocole-in-java/152156#152156 1 Answer by Nikhil Kashyap for Is there an implementation of AJP protocole in Java ? Nikhil Kashyap 2008-09-30T07:58:03Z 2008-09-30T07:58:03Z <p>Doesn't the tomcat-ajp.jar present in %TOMCAT_HOME%/server/lib have the AJP implementation?</p>