Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Archived » Voicetools » Auto-generated VXML from creating "new" VXML file incorrect
Auto-generated VXML from creating "new" VXML file incorrect [message #15988] Tue, 17 October 2006 18:20 Go to next message
Stan Rivera is currently offline Stan RiveraFriend
Messages: 36
Registered: July 2009
Member
When you create a "new" VXML file via "File->New->Other->Voice->VoiceXML
File", the resulting VXML is not correct. The xmlns attribute of the
<vxml> is showing up as xmlns="http://www/w3/org/2001/vxml", but it should
be xmlns="http://www.w3.org/2001/vxml". In other words, there should not
be a "/" between "www" and "w3", and between "w3" and "org".

Is there already a fix out there for this? If so, how do I get it? If
not, how do I fix it?

Thanks,

Stan
Re: Auto-generated VXML from creating "new" VXML file incorrect [message #16006 is a reply to message #15988] Thu, 19 October 2006 20:19 Go to previous message
Stan Rivera is currently offline Stan RiveraFriend
Messages: 36
Registered: July 2009
Member
Found the problem:
org.eclipse.vtp.editor --> src --> org.eclipse.vtp.editor.internal.wizards
-->NewFileContentGenerator.java -->writeNamespaceAttribute()

This method (in version 1.1 of the class) has the following:
String namespace = "http://www/w3/org/2001/vxml"; //$NON-NLS-1$

It should be:
String namespace = "http://www.w3.org/2001/vxml"; //$NON-NLS-1$

I have the plug-in checked-out. Do I just make the change and do
Team->commit for this change to take affect in the repository?

Thanks,
Stan
Re: Auto-generated VXML from creating "new" VXML file incorrect [message #575578 is a reply to message #15988] Thu, 19 October 2006 20:19 Go to previous message
Stan Rivera is currently offline Stan RiveraFriend
Messages: 36
Registered: July 2009
Member
Found the problem:
org.eclipse.vtp.editor --> src --> org.eclipse.vtp.editor.internal.wizards
-->NewFileContentGenerator.java -->writeNamespaceAttribute()

This method (in version 1.1 of the class) has the following:
String namespace = "http://www/w3/org/2001/vxml"; //$NON-NLS-1$

It should be:
String namespace = "http://www.w3.org/2001/vxml"; //$NON-NLS-1$

I have the plug-in checked-out. Do I just make the change and do
Team->commit for this change to take affect in the repository?

Thanks,
Stan
Previous Topic:Deploying VTP updates - but need a little direction
Next Topic:Open Vxml Perspective.
Goto Forum:
  


Current Time: Thu Mar 28 13:45:16 GMT 2024

Powered by FUDForum. Page generated in 0.03450 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top