Tools, FAQ, Tutorials:
The Default Policy
What is the default policy for an Azure API operation?
✍: FYIcenter.com
The default policy for an Azure API operation is the following:
<!-- Default-Policy.xml
Copyright (c) FYIcenter.com
-->
<policies>
<inbound>
</inbound>
<backend>
<forward-request />
</backend>
<outbound>
</outbound>
<on-error>
</on-error>
</policies>
If you specify this policy to your API operation, the client request will be forwarded as is to the backend service.
The only thing changed by the Azure is that the public base URL is replaced by the backend base URL.
2023-03-27, ∼2557🔥, 1💬
Popular Posts:
How to install "The Windows SDK version 8.1"? I need to build my Visual Studio C++ applications. If ...
How to how to use matched string and groups in replacements with re.sub()? When calling the re.sub()...
How To Truncate an Array in PHP? If you want to remove a chunk of values from an array, you can use ...
How to use "xsl-transform" Azure API Policy Statement? The "xsl-transform" Policy Statement allows y...
How to use the "forward-request" Policy Statement to call the backend service for an Azure API servi...