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.

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).

Of course, "google is my friend" (but I didn't find what I was looking for).

So my question is :

Do someone know about a Java implementation of the client side of "AJP" ?

link|improve this question
I won't give this as an answer (to keep the question appear as unanswered) but note: If you are sooner or later communicating through the internet, you'll probably get firewall issues. As http clients are definitely more in use you'll get more robust implementations (and better support) there. – Olaf Kock Sep 29 '08 at 18:45
feedback

2 Answers

Doesn't the tomcat-ajp.jar present in %TOMCAT_HOME%/server/lib have the AJP implementation?

link|improve this answer
feedback

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.

link|improve this answer
Unfortunately, it looks like tomcat only receives- the sending side is written in C as an apache module. – Tim Howland Sep 30 '08 at 14:35
feedback

Your Answer

 
or
required, but never shown