Is there any alternative for API chaining?

Not applicable

Hello ALL,

I am looking for an alternative for api-chaining which could work in Apigee older version. I am migrating api-proxies from Apigee cloud to Apigee older version, I am stuck in this migration as the api-chaining is not working in Apigee how can I solve this.

Thanks in advance

Solved Solved
1 3 540
1 ACCEPTED SOLUTION

API proxy Chaining APIs is simply a "fast-path" to allow one proxy to call another, without incurring the overhead of a new network call.

Without API proxy Chaining, you can simply have one proxy call another, via the https interface. Just have the chained proxy listen on a vhost , and invoke the chained proxy that way. Via a HTTPTargetConnection, instead of a LocalTargetConnection.

View solution in original post

3 REPLIES 3

API proxy Chaining APIs is simply a "fast-path" to allow one proxy to call another, without incurring the overhead of a new network call.

Without API proxy Chaining, you can simply have one proxy call another, via the https interface. Just have the chained proxy listen on a vhost , and invoke the chained proxy that way. Via a HTTPTargetConnection, instead of a LocalTargetConnection.

I am new to apigee, I have understood what you are saying. It would be helpful for me if you provide some example on it.