Tools, FAQ, Tutorials:
Policy to Echo the Request Body Only
How to write a policy to echo the request body only?
✍: FYIcenter.com
Here is a policy that echoes the request body only:
<!-- Echo-Policy.xml Copyright (c) FYIcenter.com --> <policies> <inbound> </inbound> <backend> </backend> <outbound> <return-response> <set-status code="200" reason="Ok"/> <set-body>@(context.Request.Body.As<string>())</set-body> </return-response> </outbound> <on-error> </on-error> </policies>
If you specify this policy to your API operation, the client request will not be forwarded to any backend services.
Azure will return the request body as the response body with a status code of 200.
Â
2017-10-23, 1298👍, 0💬
Popular Posts:
How to use the "rewrite-uri" Policy Statement for an Azure API service operation? The "rewrite-uri" ...
Where to find tutorials on Microsoft Azure services? Here is a large collection of tutorials to answ...
How to create the Hello-3.0.epub package? I have all required files to create Hello-3.0.epub. To cre...
What are the differences of Differences of evaluateTransaction() and submitTransaction() of the fabr...
How To Loop through an Array without Using "foreach" in PHP? PHP offers the following functions to a...