I have deployed a WebLogic Cluster in WL 10.3, with EJBs and JMS. There are one admin server and two managed nodes.
I have a Web Application in a .war file, so it has been deployed on the managed nodes by “all the cluster nodes” option.
I access to the application in each node, with URLs: http://localhost:7101/myApp and httop://localhost:7201/myApp. They work.
So, my question is: how can I configure a single URL (http://localhost:8000/myApp or something like that) to make the cluster transparent for the final user? In this way, the user writes http://calhost:8000/myApp and there is something that maps the two nodes, makes load balancing, etc., but transparent for the user.
Thanks in advance. Best regards
If you have a load balancer, you can get the load balancer to do this. But I don’t think this is what you were looking for.
There are two other options:
The approach of using the HTTP proxy application is less recommended, but could be considered if you do not want to put a dedicated load balancer, or a web server that proxies requests to the cluster.