Example 3: Node running on AIX with reco and text-to-speech

In this example, one voice response node is defined. The Reco and TTS Service definitions are also not included.

# Voice response node running on AIX
# Using a NodeClassPath because there is a test version of the
# application in mybeans.jar in use on another node.
# The pizzas application is started automatically,
# but the myapp application is not.
NodeName=VRNode1
  VRNode=yes
  NodeDefLocale=en_US
  NumToApp=*,welcome
  NumToApp=123456,pizzas
  NumToApp=123457,myapp
  NodeClassPath=/j/prod/mybeans.jar:/j/prod/pizzas.jar
  #
# RECO AND TTS SERVICES AVAILABLE ON THIS NODE
# Two speech recognition services are defined (ViaVoiceAIX and
# ANotherAIX).
# One text-to-speech service is defined (FirstByteAIX).
  RecoService=ViaVoiceAIX
  RecoService=ANotherAIX
  TTSService=FirstByteAIX
#
# RECO AND TTS DEFINITIONS TO BE USED BY APPLICATIONS
# ViaVoice is defined as the speech recognition technology to use for
# all languages, but this example shows how you would specify a
# different technology for one language.
# ViaVoice is used for all other languages.
  RecoDefinition=*,ViaVoice
  RecoDefinition=xx_YY,ANother
#
# FirstByte is defined as the text to speech technology to use for
# all languages, but this example shows how you would specify a
# different technology for two languages.
# FirstByte is used for all other languages.
  TTSDefinition=xx_YY,ANother
  TTSDefinition=aa_BB,ANother
  TTSDefinition=*,FirstByte
;
HostName=amigo
  IPName=amigo.hursley.ibm.com
  Node=VRNode1
;