This shows you the differences between two versions of the page.
voicexml:properties:documentmaxage [2014/06/02 14:27] jennifer added meta description |
voicexml:properties:documentmaxage [2019/09/17 12:29] |
||
---|---|---|---|
Line 1: | Line 1: | ||
- | {{description>documentmaxage VoiceXML property details | documentmaxage tells the vxml platform the maximum age for cached documents.}} | ||
- | =====documentmaxage===== | ||
- | |||
- | **Default Value:** NULL | ||
- | |||
- | Tells the platform the maximum acceptable age, in seconds, of cached documents. Setting "documentmaxage" to NULL allows the platform to honor expiration time set by the web server. | ||
- | |||
- | ====Example==== | ||
- | <code> | ||
- | <?xml version="1.0"?> | ||
- | <vxml version="2.0"> | ||
- | |||
- | <property name="documentmaxage" value="150s"/> | ||
- | <property name="documentmaxstale" value="25s"/> | ||
- | <form> | ||
- | <block> | ||
- | <goto next="myfile.vxml"/> | ||
- | </block> | ||
- | </form> | ||
- | </vxml> | ||
- | </code> | ||
- | |||
- | ====Explanation==== | ||
- | From this example, the "documentmaxage" value is set to 150 seconds and the "documentmaxstale" value is set to 25 seconds. This sets a global property that all document tags (<goto>, <submit>, etc.) have a maxage value of 150 seconds and a maxstale value of 25 seconds. So, since the file "myfile.vxml" is inside of a tag, it would have a maxage value of 150 seconds and a maxstale value of 25 seconds because of the "documentmaxage" and "documentmaxstale" properties. | ||
- | |||
- | ====Notes==== | ||
- | |||
- | None | ||