Manifest File Elements
This topic shows the default manifest file created by the Speech Web Application Project Wizard for an English language application, and describes each element in the file.
For information about modifying the manifest file to support non-English language applications, see Supporting non-English Resources.
Default Manifest File
<?xml version="1.0" encoding="utf-8"?>
<manifest>
<application name="SpeechWebApplication1" frontpage="Default.aspx">
<resourceset type="TelephonyRecognizer">
<resource src = "Grammars/Library.grxml"/>
<resource src = "Grammars/SpeechWebApplication1.grxml"/>
<!-- Add other grammar resources here -->
</resourceset>
<resourceset type="Voice">
<resource src = "Prompts/SpeechWebApplication1Prompts.prompts"/>
<!-- Add other prompt resources here-->
</resourceset>
<!-- The following section provides example manifest entries to use when
specifying resources for multi-language applications.
U.S. English
<resourceset type="TelephonyRecognizer">
<resource src="Add your U.S. English grammar resource here"/>
</resourceset>
<resourceset type="Voice">
<resource src ="Add your U.S. English prompt resource here"/>
</resourceset>
U.S. Spanish
<resourceset type="es-US_TelephonyRecognizer">
<resource src="Add your U.S. Spanish grammar resource here"/>
</resourceset>
<resourceset type="es-US_Voice">
<resource src="Add your U.S. Spanish prompt resource here"/>
</resourceset>
Canadian French
<resourceset type="fr-CA_TelephonyRecognizer">
<resource src="Add your Canadian French grammar resource here"/>
</resourceset>
<resourceset type="fr-CA_Voice">
<resource src="Add your Canadian French prompt resource here"/>
</resourceset>
-->
</application>
</manifest>
Manifest Element Descriptions
See the topics in the following table.
To | See |
---|---|
Get more information on the application element. | application Element |
Get more information on the manifest element. | manifest Element |
Get more information on the resourceset element. | resourceset Element |
Get more information on the resource element. | resource Element |
See Also
About Application Manifest Files | Deploying Speech Applications | Managing Application Resources | Components of Application Deployment