vote up 3 vote down star

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" ?

flag
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 Sep 29 '08 at 18:45

2 Answers

vote up 1 vote down

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

link|flag
vote up 0 vote down

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|flag
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

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.