I am trying to understand the Oracle Service Bus Load Balancing. I have:
- One weblogic server 10.3.6.0, with
- 3 Managed servers (
lb
,osb1
,osb2
):- 2 Managed servers are in cluster configuration:
osb1
- with port 7101 andosb2
- with port 7202
- The manager Server called
lb
was configured as proxy server with port 7301.
- 2 Managed servers are in cluster configuration:
Using Eclipse, I have done a "Hello World" application ( I used a proxy service and wsdl). But when I go to browser with http://localhost:7301/osb-101-helloworld/HelloWorld the application is not working,
If I go to http://localhost:7001/osb-101-helloworld/HelloWorld
the application works and I can see the code using ?wsdl
instruction at the end of the URL. Code displays the following information:
<WL5G3N0:service name="HelloWorld">
<WL5G3N0:port binding="WL5G3N1:HelloWorldSOAP" name="HelloWorldSOAP">
<WL5G3N2:address location="http://gaia:7001/osb-101-helloworld/HelloWorld"/>
**gaia is the server name.**
The 7001 port is used by AdminServer.
I am using this blog Oracle Fusion Middleware - Oracle Service Bus & SOA Suite--Gang Of Two : OSB Clustering & Load Balancer as a guide, but I don't know how to make the "hello world" application work using correct manager server (7301 - proxyserver).