The name and http-equiv attributes are mutually exclusive. When specifying a meta element, one of these attributes is required.
The information specified using the meta element is programmatically available as read-only variables named session.meta.name. This feature is a Tellme extension.
<?xml version="1.0"?>
<vxml version="2.1"
xmlns="http://www.w3.org/2001/vxml">
<meta name="author" content="John Smith" />
<meta name="version" content="2.5.1" />
<form>
<block>
This application was written by
<value expr="session.meta.author" />
The version is <value expr="session.meta.version" />
<exit />
</block>
</form>
</vxml>