| VoiceXML 2.1 Development Guide | Home | Frameset Home |
|
| ANNOTATIONS: EXISTING POSTS |
d_sunith
|
|
| <?xml version="1.0" encoding="UTF-8"?>
<ccxml version="1.0"> <eventhandler> <!-- Lets handle the incoming call --> <transition event="connection.CONNECTION_ALERTING" name="evt"> <log expr="'The caller ID is ' + evt.callerid + '.'"/> <if cond="evt.callerid == '8315551234'"> <accept/> <else/> <reject/> </if> </transition> <!-- Lets answer the call --> <transition event="connection.CONNECTION_CONNECTED"> <log expr="'Call was answered. We are going to start a dialog.'"/> <dialogstart src="'hello.vxml'"/> </transition> </eventhandler> </ccxml> |
|
d_sunith
|
|
| <?xml version="1.0"?>
<!DOCTYPE vxml PUBLIC '-//Nuance/DTD VoiceXML 1.0//EN' 'http://voicexml.nuance.com/dtd/nuancevoicexml-1-2.dtd' > <vxml version="1.0"> <form id="Form"> <block> Hello World. <exit/> </block> </form> </vxml> |
|
VoxeoDante
|
|
| Hello d_sunith,
We noticed that you posted some code here. Do you have a question about this code, or it's use? The title if the thread leads me to believe you would like to know how to map this code to the evolution site, is that true? Please clarify what you are looking for, and we will do our best to get you some answers. Regards, Dante Vitulano |
| login |
|