Is there an implementation of AJP protocole in Java ? - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T12:23:36Zhttp://stackoverflow.com/feeds/question/149662http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/149662/is-there-an-implementation-of-ajp-protocole-in-java3Is there an implementation of AJP protocole in Java ? Zappa2008-09-29T17:02:59Z2008-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#1502580Answer by xmjx for Is there an implementation of AJP protocole in Java ? xmjx2008-09-29T19:26:01Z2008-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#1521561Answer by Nikhil Kashyap for Is there an implementation of AJP protocole in Java ? Nikhil Kashyap2008-09-30T07:58:03Z2008-09-30T07:58:03Z<p>Doesn't the tomcat-ajp.jar present in %TOMCAT_HOME%/server/lib have the AJP implementation?</p>