When the VoiceXML application completes, the CCXML application that launched it receives a dialog.exit event.
<var name="varOne" expr="'ONE'"/> <var name="varTwo" expr="'TWO'"/> <exit namelist="varOne varTwo"/>
<transition event="dialog.exit" name="evt"> <log expr="'Namelist = '+evt.namelist'"/> <!-- This results in the string "Namelist = varOne varTwo" being logged --> <log expr="'varOne (returned from VoiceXML) = '+evt.values.varOne"/> <!-- This results in the string "varOne (returned from VoiceXML) = ONE" being logged --> <log expr="'varTwo (returned from VoiceXML) = '+evt.values.varTwo"/> <!-- This results in the string "varTwo (returned from VoiceXML) = TWO" being logged --> </transition>