Hello everybody
Im using Apache as a ReverseProxy but Im getting an error.
I have a public url for the Portal, www.xxx.com, this url is translated to our internal server yyy.zzz.net, but our internal server has two listening ports, one for Java requests and one for ABAP request (were using webdynpro ABAP). So we have these sentences:
ProxyPass /irj http://yyy.zzz.net:50000/irj
ProxyPassReverse /irj http://yyy.zzz.net:50000/irj
ProxyPass /sap http://yyy.zzz.net:8000/sap
ProxyPassReverse /sap http://yyy.zzz.net:8000/sap
Also we have a RewiteRule:
RewriteRule / http://yyy.zzz.net:50000/irj/portal
With this configuration we have a problem when the portals tries to show a webdynpro ABAP because its created with the following url http://yyy.zzz.net:8000/sap/bc/wepdynpro/sap/zaaaaaaaa and the browser cannot show this page because it uses an internal server name (not public).
How can be replace yyy.zzz.net:8000 for www.xxx.com with an Apache?
Thank you in adavanced.