|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
Stop making mediocre tutorials.The best tutorials are video! Camtasia Studio makes it easy to create engaging, buzz-building screen videos at any size, in any popular format. Download the free trial!
|
|
#1
|
|||
|
|||
|
Does any body know about VXML.?
I tried putting in simple program but it says the code is wrong. can anyone tell me what is wrong with this? <?xml version=”1.0”?> <vxml version="2.0"> <form> <block>Hello, world!</block> </form> </vxml> This is supposed to be correct. |
|
#2
|
||||
|
||||
|
Code:
<?xml version="1.0" encoding="UTF-8"?> <vxml xmlns="http://www.w3.org/2001/vxml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.w3.org/2001/vxml http://www.w3.org/TR/voicexml20/vxml.xsd" version="2.0"> <form> <block>Hello World!</block> </form> </vxml> You are missing all of the name-space declarations. Read the specs and they will tell you what you need to know http://www.w3.org/TR/voicexml20/ |
![]() |
| Viewing: Dev Shed Forums > Programming Languages - More > XML Programming > Vxml |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|