Currently, we have OIM (Oracle Identity Manager) APIs hosted on AWS EC2 instance which can be accessed via Network Load Balancer (t3://abc.xyz.mno:14000).
We are trying to connect to above mentioned Network Load Balancer from our Java application which is deployed inside a docker container (war file) hosted on AWS ECS fargate.
All entities are in same VPC, under same subnet.
But we are getting below error:
Failed to login/connect to OIM using user: admin. Please contact app support providing the following message:
java.io.IOException: Timed out while attempting to establish connection to :t3://abc.xyz.mno:14000
We are able to connect successfully from our docker container to another DB (same VPC, same subnet as ECS and Load Balancer) hosted on EC2 instance without any additional config at docker /container end.
Also, we are able to connect to OIM APIs (t3://abc.xyz.mno:14000) from our local code (simple deploying war file in tomcat server) as well. Same war file is put in the ECS container.
Any suggestion, feedback, help will be highly appreciated.