We've Moved! Please visit our new and improved forum over at our new portal: https://portal.plumvoice.com/hc/en-us/community/topics

Doctype error when validating vxml file

Questions and answers about IVR programming for Plum DEV

Moderators: admin, support

Post Reply
w2gi
Posts: 46
Joined: Fri Jun 26, 2009 1:35 pm

Doctype error when validating vxml file

Post by w2gi »

Hi,
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.

support
Posts: 3632
Joined: Mon Jun 02, 2003 3:47 pm
Location: Boston, MA
Contact:

IVR code validator fixed

Post by support »

Hi,

Thanks for pointing this out.

We have resolved this issue and your code should now be validated correctly.

Regards,
Plum Support

Post Reply