Tools, FAQ, Tutorials:
'set-backend-service' Policy Statement
How to use the "set-backend-service" Policy Statement for an Azure API service operation?
✍: FYIcenter.com
The "set-backend-service" Policy Statement is actually overriding
the API setting "Web service URL" to specify the backend service base URL.
For example, if you create an API with the following settings:
FYIcenter.com User API Web service URL: http://dev.fyicenter.com/rest Web API URL: https://fyi.azure-api.net/v1/rest
You can override the above backend web service URL with the following "set-backend-service" statement in the inbound policy:
<inbound> <set-backend-service base-url="http://dev.fyicenter.com/v1/rest" /> </inbound>
⇒ 'rewrite-uri' Policy Statement
⇐ Policy to Control Backend Service
2017-12-04, 6919🔥, 0💬
Popular Posts:
How To Remove Slashes on Submitted Input Values in PHP? By default, when input values are submitted ...
How to convert a JSON text string to an XML document with PHP language? Currently, there is no built...
What's Wrong with "while ($c=fgetc($f)) {}" in PHP? If you are using "while ($c=fgetc($f)) {}" to lo...
Can Multiple Paragraphs Be Included in a List Item? Yes. You can include multiple paragraphs in a si...
How to register and get an application ID from Azure AD? The first step to use Azure AD is to regist...