Forum Moderators: phranque
We are using Apache 2.0.58 from apache.org.
Added Bea weblogic module to http.conf for Apache to redirect anything with "test" in the url to Bea weblogic - on a different server.
<<<<<<<<<< part of http.conf >>>>>>>>>>>>>>>
LoadModule weblogic_module modules/mod_wl_20.so
#BEA Application.
<Location /test>
SetHandler weblogic-handler
WebLogicHost localhost
WebLogicPort 8001
SetHandler weblogic-handler
</Location>
Everything gets redirected and is working great... but when it encounters a .jsp page which creates parameters to be passed to the url (see URL Eg. below) it fails with error: "Page cannot be displayed".
<<<<<<<<<<<<<< URL Eg. <<<<<<<<<<<<<<<<<<
URL - [appserv:8001...]
Note that this app runs fine on just BEA framework.
So am I missing something in the configuration to re-direct? Why is it failing just on the dynamically created URL parameters?
Thanks!
But Thanks to one of the threads in this forum... I discovered that our server was throwing - page cannot be displayed when I typed the application context root without the "/".
Resolving this issue automatically resolved the other one!
Thanks!