When validating the vxml I am getting " failed to load external entity "/usr/local/plumvp/vxml.dtd" in Entity, line: 2 "; but the vxml works fine.
Code: Select all
line 2: <!DOCTYPE vxml PUBLIC "-//The Plum Group//DTD VOICEXML 2.1//EN" "/usr/local/plumvp/vxml.dtd">
Code: Select all
1 <?xml version="1.0"?>
3 <vxml version="2.0">
4 <form id="firstform">
5 <block>
6 <prompt>
7 Jumping to the third form.
8 </prompt>
9 <!-- A "#" symbol followed by an identifier specifies a -->
10 <!-- form or menu ID to jump to. -->
11 <goto next="#thirdform"/>
12 </block>
13 </form>
14 <form id="secondform">
15 <block>
16 <prompt>
17 Disconnecting.
18 </prompt>
19 <disconnect/>
20 </block>
21 </form>
22 <form id="thirdform">
23 <block>
24 <prompt>
25 Jumping to the second form.
26 </prompt>
27 <goto next="#secondform"/>
28 </block>
29 </form>
30 </vxml>
I was not getting this yesterday.