How to configure Target Endpoint's containing localhost and port in apigee?

StackOverflow https://stackoverflow.com/questions/22334373

  •  13-06-2023
  •  | 
  •  

Question

I have created a very simple RESTful service and deployed it on my local tomcat server. I would like to create and configure an API proxy and test it out using Apigee. While trying to creating a new API proxy it does not allow me to point me to url endpoint containing containing localhost and port information.

http://localhost:8080/PageNameService/ /**** DOES NOT WORK ***/
http://weather.yahooapis.com           /***** WORKS ************/

Does this mean that you cannot configure Target Endpoint URL's that contain localhost and ports in apigee ? Please guide.

Était-ce utile?

La solution

Apigee Edge is hosted on a 4G cloud infrastructure and would accept a backend url for which it can act as a facade and pass on the traffic processed by it. It would not be able to connect to your tomcat server with localhost:8080. You can give any globally accessible complete URL's(it can have domain names or even ip addresses with correct ports is fine.)

Autres conseils

I solved this need by using ngrok. I am able to route calls from Edge to my local machine. Absolutely love ngork! :-)

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top