I have a WS Server based on a cluster WebLogic (11 version). And try to answer with a 503 http code.
response.setStatus(503);
Request is handled by custom HttpFilter
When i execute my service from browser on admin node of the server. I recieve an error message:
No backend servers available
And i see in logs that my filter was executed 4-5 times
When i execute my service on specific node of the cluster i receive a bode of the response (which i specified in the code) and my service was launched only one times
What behaviour is the right? And how i can control number of service starts? (from admin node)