<< < 39 40 41 42 43 44 45 46 47 48 49 > >>   Sort: Rank

FYIcenter.com Online Tools
FYIcenter.com Online Tools: FYIcenter JSON Validator and Formatter FYIcenter JSON to XML Converter FYIcenter XML to JSON Converter
2017-12-05, 3306🔥, 0💬

'set-backend-service' Policy Statement
How to use the "set-backend-service" Policy Statement for an Azure API service operation? 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: FYIcen...
2017-12-04, 6047🔥, 0💬

'{{...}}' Liquid Codes in 'set-body' Policy Statement
How to use "{{...}}" Liquid Codes in "set-body" Policy Statement? The "{{...}}" Liquid Codes in "set-body" Policy Statement allows you to insert object properties of the original request in JSON format and object properties of the built-in "context" object. For example, the following "set-body" buil...
2017-12-04, 4645🔥, 0💬

'xsl-transform' Azure API Policy Statement
How to use "xsl-transform" Azure API Policy Statement? The "xsl-transform" Policy Statement allows you to apply an XSL transformation to XML in the body of the inbound request or outbound response. The "xsl-transform" Policy Statement uses the following syntax: &lt;xsl-transform&gt; &lt;...
2017-12-04, 3961🔥, 0💬

Policy to Control Backend Service
Where to find tutorials on creating Policy to control backend service on Azure API Management Policy? Here is a list of tutorials to answer many frequently asked questions compiled by FYIcenter.com team on creating Policy to control backend service on Azure API Management Policy. 'set-backend-servic...
2017-12-04, 1930🔥, 0💬

Atom "feed/author" Element
What is the Atom "feed/author" element? How To Generate a "feed/author" element? The &lt;author&gt; element is not a required sub-element of the &lt;feed&gt; element. However, it is required to have a feed author element, if one of the feed entries does not have an author element. Th...
2017-11-29, 1463🔥, 0💬

Atom "feed/updated" Element
What is the Atom "feed/updated" element? How To Generate a "feed/updated" element? The &lt;updated&gt; element is a required sub-element of the &lt;feed&gt; element. The Atom specification requires that you provide a data and a time of when this feed was updated. There is no problem ...
2017-11-29, 1436🔥, 0💬

Atom "feed/category" Element
What is the Atom "feed/category" element? How To Generate a "feed/category" element? The &lt;category&gt; element is not a required sub-element of the &lt;feed&gt; element. However, it is recommended to have one or more &lt;category&gt; elements to provide classifications for...
2017-11-29, 1354🔥, 0💬

Atom "feed/link" Element
What is the Atom "feed/link" element? How To Generate a "feed/link" element? The &lt;link&gt; element is not a required sub-element of the &lt;feed&gt; element. But it is strongly recommended that you provide a link element with rel="self" for each of your feed documents. The rule fo...
2017-11-29, 1234🔥, 0💬

Atom "feed/entry/link" Element
What is the Atom "feed/entry/link" element? How To Generate a "feed/entry/link" element? The &lt;link&gt; element is not a required sub-element of the &lt;entry&gt; element. But it is strongly recommended that you provide a link element with rel="alternate" for each of your feed entr...
2017-11-29, 1223🔥, 0💬

Tools to Create Atom Feed Files
Are there any tools to Create Atom Feed Files? Obviously, there are many tools to create Atom Feed files: Using Atom on-line scrapers - On-line scrapers are on-line services that can analyze your Web pages and convert the result into Atom feed files automatically. All you need to do is to provide th...
2017-11-25, 2044🔥, 0💬

DTD for Atom XML Files
Is There Any DTD File to Validate Atom Feed XML Files? A DTD (Document Type Definitions) file contains a set of definitions of XML elements and attributes to form a new XML based specification. The same DTD file can be used to validate XML files that comply with the new specification. Atom feed is a...
2017-11-25, 1592🔥, 0💬

Atom Online Validators
Are there any online Atom Validators on the Web? If you created an Atom feed file yourself, and want to know if the file meets the Atom 1.0 standards or not, you can validate your feed file using the following methods: Using the on-line validator provided by http://validator.w3.org/feed/ . Using the...
2017-11-25, 1485🔥, 0💬

Atom "feed/entry/summary" Element
What is the Atom "feed/entry/summary" element? How To Generate a "feed/entry/summary" element? The &lt;summary&gt; element is not a required sub-element of the &lt;entry&gt; element. But it is strongly recommended that you provide a summary element for each of your feed entries. You ...
2017-11-25, 1336🔥, 0💬

Atom "feed/entry/title" Element
What is the Atom "feed/entry/title" element? How To Generate a "feed/entry/title" element? The &lt;title&gt; element is a required sub-element of the &lt;entry&gt; element. The title element should contain a short but human readable title of the feed entry. You should follow the same...
2017-11-25, 1324🔥, 0💬

FYIcenter JSON Validator and Formatter
FYIcenter JSON Validator and Formatter is an online tool that checks for syntax errors of JSON text string and converts it to a pretty format.
2017-11-25, 3306🔥, 2💬

💬 2017-11-25 Eric: Agree.

💬 2017-08-13 Neil: Not too bad!

Use '@(...)' Expressions in XML Attributes
When using "@(...)" expressions in XML attributes as part of an policy statement, do I need to worry about string quotations? If you are using a "@(...)" expression in XML attributes as part of an policy statement, and string literals are used in the "@(...)" expression, the syntax of the final poli...
2017-11-12, 2271🔥, 0💬

Use &amp;amp; in '@(...)' Expressions
How to enter &amp;amp; entity in '@(...)' expressions? If you want to enter the &amp;amp; sequence in a '@(...)' expressions, you must enter it as &amp;amp;amp;. This is because all XML entities will be decoded immediately, when Azure process the policy XML document. For example, the fol...
2017-11-12, 2267🔥, 0💬

Use &amp; Sign in '@(...)' Expressions
How to enter &amp; sign in '@(...)' expressions? &amp; signs can be entered in '@(...)' expressions directly. For example, the following "set-variable" policy statement uses a "@(...)" expression that contains a &amp; sign: &lt;set-variable name="name" value="@("John &amp; Sons")...
2017-11-12, 2243🔥, 0💬

Use &lt; Sign in '@(...)' Expressions
How to enter &lt; sign in '@(...)' expressions? &lt; signs can be entered in '@(...)' expressions directly. For example, the following "set-variable" policy statement uses a "@(...)" expression that contains a &lt; sign as the Boolean operator: &lt;set-variable name="isTrue" value="@...
2017-11-12, 2201🔥, 0💬

'xml-to-json' on Invalid XML
What will happen if "xml-to-json" policy statement is applied on an invalid XML document? If you apply the "xml-to-json" policy statement on the request or response body that has an invalid XML document, you will not receive any errors. What you will get is a string that looks like a corrupted XML d...
2017-11-12, 1850🔥, 0💬

RSS "channel/textInput" Element
What is the RSS "channel/textInput" element? The RSS "channel/textInput" element is an optional sub element of the "channel" element to specify a text input box that can be used to send data back to the channel. The RSS "channel/textInput" element contains the following sub elements. title - REQUIRE...
2017-11-11, 1652🔥, 0💬

RSS "channel" Element
What is the RSS "channel" element? The RSS "channel" element presents a group of RSS feed items generated by the same producer. The RSS "channel" element contains the following sub elements. title - REQUIRED. The name of your Website, if you are producing this RSS feed. For example: &lt;title&am...
2017-11-11, 1602🔥, 0💬

RSS "channel/item" Element
What is the RSS "channel/item" element? The RSS "channel/item" element is an optional sub element of the "channel" element to specify a news item of this RSS feed. The RSS "channel/item" element contains the following sub elements. title - REQUIRED, if "description" is not specified. The title of th...
2017-11-11, 1516🔥, 0💬

<< < 39 40 41 42 43 44 45 46 47 48 49 > >>   Sort: Rank