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.
Â
2017-10-23, 1187👍, 0💬
Popular Posts:
What Is Azure API Management Service? Azure API Management as a turnkey solution for publishing APIs...
Where to get a real Atom XML example? You can follow this tutorial to get a real Atom XML example: 1...
Where to find tutorials on Python programming language? I want to learn Python. Here is a large coll...
How To Read a File in Binary Mode in PHP? If you have a file that stores binary data, like an execut...
How to dump (or encode, serialize) a Python object into a JSON string using json.dumps()? The json.d...