Eu configurei o apache 2.4.6 em 80 e criei um arquivo especial em /etc/httpd/conf.d/Test.conf com os parâmetros abaixo.
<Location /integration/worklistapp/faces>
SetHandler weblogic-handler
WebLogicCluster 172.16.112.xxx:7001,172.16.112.xxx:7001
WLCookieName JSESSIONID_SOA
MatchExpression *.jspx
</Location>
<Location /workflow>
SetHandler weblogic-handler
WebLogicCluster 172.16.112.xxx:7001,172.16.112.xxx:7001
WLCookieName JSESSIONID_SOA
MatchExpression *.jspx
</Location>
Eu incluí este arquivo no meu arquivo de configuração principal do apache como Include conf.d/Test.conf
. A conectividade é estabelecida para os servidores de aplicativos necessários com a porta 7001 e eu sou capaz de fazer telnet.
Quando eu estou usando curl CLI cmd para acessar minha URL, seu loop de volta para o meu servidor apache em vez de servidor 172.16.xx.xxx:7001 /.......// p>
# curl -k http://172.16.101.xx:80/integration/worklistapp/faces/
<html><head><title>302 Moved Temporarily</title></head>
<body bgcolor="#FFFFFF">
<p>This document you requested has moved temporarily.</p>
<p>It's now at <a href="http://172.16.101.xx/integration/worklistapp/faces/login.jspx">http://172.16.101.xx/integration/worklistapp/faces/login.jspx</a>.</p>
</body></html>
Qualquer ajuda pode ser apreciada.
Tags apache-httpd