I have a web application ( A )that runs on 3 Weblogic Instances and a web application ( B )that runs on 1 of those 8 Weblogic instances.
I want a link from Application A to redirect to Application B, regardless of which Server Weblogic it is coming from.
Server 1 has application A and application B, servers 2 and 3 only have Application A.
right now it does this ( where the # is the number of the server ):
A1 -> B1
A2 -> B2
A3 -> B3
I want it to do this:
A1 -> B1
A2 -> B1
A3 -> B1
How do I configure the obj.conf to accomplish this?