I currently have a node server deployed in PCF that periodically makes GET requests to other applications in PCF.
Some of the applications are in the same domain, and those GET requests are working; however, when I make requests to apps in a different domain, they timeout.
To summarize:
MyApplication = NodeJS server running at MyApp.apps.dev.company.int
DevApplication = Application running at DevApp.apps.dev.company.int
ProdApplication = Application running at ProdApp.apps.prod.company.int
GET Requests from MyApplication to DevApplication work,
but GET requests from MyApplication to ProdApplication do not.
GET requests from localhost work for both DevApplication and ProdApplication.
What is causing this issue, and how can I resolve it?