Sun Java System Application Server 9.1 and Apache

Hi,I'm running Sun Java App Server 9.1, now I want to redirect the incoming traffic from an apache machine to the App Server.Which is the procedure? I did it before between Tomcat and Apache, I will appreciate your comments.Best regards,Gerardo
[280 byte] By [CodeCRa] at [2007-11-26 16:38:10]
# 1

Gerardo,

You may already have found the solution, but you can use ProxyPass and ProxyPassReverse in your apache config to forward traffic back to your appserver. For example, in your apache httpd.conf file:

ProxyPass /app1 http://10.0.1.100:8080/app1

ProxyPassReverse /app1 http://10.0.1.100:8080/app1

ProxyPass will hide your appserver and port details and use your apache server's address. Naturally, your httpd executable will need to have mod_proxy loaded up.

Henry

BigBellya at 2007-7-8 23:04:56 > top of Java-index,Enterprise & Remote Computing,Enterprise Technologies...