Answered by:
IIS to multiple weblogic server

Question
-
User-1476396806 posted
Hello All,
I am looking for a solution/suggestion on how to proxy requests from a single IIS ( hosting a single url ) to two differnt weblogic servers.
Currently, I am using IISforward and IISproxy dll to proxy one weblogic url from IIS. Now the requirement is to do the same with a second url. Is there any option ?
Note : there are two different weblogic server.
Any help would be greatly appreciated.
Saturday, March 16, 2013 9:30 AM
Answers
-
User-736660370 posted
For IIS 5-6, it looks like Apache Tomcat Connector (JK 1.2) is a clean solution. This is an IIS ISAPI filter which allows IIS to act as a reverse proxy for other web servers. It uses Apache JServ Protocol (AJP) to communicate with the app server actually serving requests. Both Tomcat and Jetty implement AJP. URLs are mapped with regex-like config to a particular AJP server instance.
- Overview: http://www.iisadmin.co.uk/?p=40&page=3
- IIS Config: http://tomcat.apache.org/connectors-doc/reference/iis.html
- Mapping Config: http://tomcat.apache.org/connectors-doc/reference/workers.html
This ISAPI plug-in also works with IIS 7.x, but in that case the Application Request Routing (see marked answer) should be considered as it might work better with non-AJP servers.
http://stackoverflow.com/questions/4369117/reverse-proxy-on-windows
- Marked as answer by Anonymous Tuesday, September 28, 2021 12:00 AM
Monday, March 25, 2013 10:47 PM
All replies
-
Wednesday, March 20, 2013 10:25 AM
-
User-1476396806 posted
Thanks.
But I am running on IIS 6. ARR can only be installed above IIS 7 i think.
Thursday, March 21, 2013 5:38 PM -
User-736660370 posted
For IIS 5-6, it looks like Apache Tomcat Connector (JK 1.2) is a clean solution. This is an IIS ISAPI filter which allows IIS to act as a reverse proxy for other web servers. It uses Apache JServ Protocol (AJP) to communicate with the app server actually serving requests. Both Tomcat and Jetty implement AJP. URLs are mapped with regex-like config to a particular AJP server instance.
- Overview: http://www.iisadmin.co.uk/?p=40&page=3
- IIS Config: http://tomcat.apache.org/connectors-doc/reference/iis.html
- Mapping Config: http://tomcat.apache.org/connectors-doc/reference/workers.html
This ISAPI plug-in also works with IIS 7.x, but in that case the Application Request Routing (see marked answer) should be considered as it might work better with non-AJP servers.
http://stackoverflow.com/questions/4369117/reverse-proxy-on-windows
- Marked as answer by Anonymous Tuesday, September 28, 2021 12:00 AM
Monday, March 25, 2013 10:47 PM