Re: XMLForm - VoiceXML

2002-10-15 Thread apurva zaveri


--- Ivelin Ivanov [EMAIL PROTECTED] wrote:
 
 elements in XMLForm do not have to start with /.
 It is just used for clarity in the examples.
 You can try just city.

You are right trying just city works. So there is no
problem.


 
 What are the limitations for names of VXML forms?

/ in a field is certainly a limitation in IBM
voiceXML browser(as it gives a processing error). And
IBM voiceXML browser v3.1 supports W3C's voiceXML 2.0
grammer format. I think it will also be a problem for
Nuance voice browser and VoiceGenie's voice browser
but I am not sure. I shall get back after finding more
about it (if there are any other limitations).


-Apurva
 
 
 - Original Message - 
 From: apurva zaveri [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Sunday, October 13, 2002 9:08 PM
 Subject: XMLForm - VoiceXML
 
 
  This is a serious problem about the use of XMLForm
 in
  VoiceXML. While experimenting with XMLForm to
 generate
  VoiceXML this a problem that I faced.
  
  Since in XMLForm all the name of the fields begins
  with / in HTML 
  
  select name=/city is not a problem
  
  while in VXML
  
  field name=/city is an error.
  
  What can be done?
  
  -Apurva Zaveri
  
  
  
  __
  Do you Yahoo!?
  Faith Hill - Exclusive Performances, Videos  More
  http://faith.yahoo.com
  
 

-
  Please check that your question  has not already
 been answered in the
  FAQ before posting.
 http://xml.apache.org/cocoon/faq/index.html
  
  To unsubscribe, e-mail:
 [EMAIL PROTECTED]
  For additional commands, e-mail:  
 [EMAIL PROTECTED]
  
 
 

-
 Please check that your question  has not already
 been answered in the
 FAQ before posting.
 http://xml.apache.org/cocoon/faq/index.html
 
 To unsubscribe, e-mail:
 [EMAIL PROTECTED]
 For additional commands, e-mail:  
 [EMAIL PROTECTED]
 


__
Do you Yahoo!?
Faith Hill - Exclusive Performances, Videos  More
http://faith.yahoo.com

-
Please check that your question  has not already been answered in the
FAQ before posting. http://xml.apache.org/cocoon/faq/index.html

To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail:   [EMAIL PROTECTED]




Re: XMLForm - VoiceXML

2002-10-14 Thread apurva zaveri

One more thing to mention.

I am working on creating wizard2vxml.xsl and
xmlform2vxml.xsl for VoiceXML 2.0 for XMLForm.

Is it Necessary to have “/” in the field name (html
input variable name) like : select name=/city
this?

Would this be fine?

select name=city

I am using bean not dom for XMLForm


--- apurva zaveri [EMAIL PROTECTED] wrote:
 This is a serious problem about the use of XMLForm
 in
 VoiceXML. While experimenting with XMLForm to
 generate
 VoiceXML this a problem that I faced.
 
 Since in XMLForm all the name of the fields begins
 with / in HTML 
 
 select name=/city is not a problem
 
 while in VXML
 
 field name=/city is an error.
 
 What can be done?
 
 -Apurva Zaveri
 
 
 
 __
 Do you Yahoo!?
 Faith Hill - Exclusive Performances, Videos  More
 http://faith.yahoo.com
 

-
 Please check that your question  has not already
 been answered in the
 FAQ before posting.
 http://xml.apache.org/cocoon/faq/index.html
 
 To unsubscribe, e-mail:
 [EMAIL PROTECTED]
 For additional commands, e-mail:  
 [EMAIL PROTECTED]
 


__
Do you Yahoo!?
Faith Hill - Exclusive Performances, Videos  More
http://faith.yahoo.com

-
Please check that your question  has not already been answered in the
FAQ before posting. http://xml.apache.org/cocoon/faq/index.html

To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail:   [EMAIL PROTECTED]




Re: XMLForm - VoiceXML

2002-10-14 Thread J.Pietschmann

apurva zaveri wrote:
 One more thing to mention.
 
 I am working on creating wizard2vxml.xsl and
 xmlform2vxml.xsl for VoiceXML 2.0 for XMLForm.
 
 Is it Necessary to have “/” in the field name (html
 input variable name) like : select name=/city
 this?

If you do a transformation, why can't you strip the
leading slash while transforming?

J.Pietschmann


-
Please check that your question  has not already been answered in the
FAQ before posting. http://xml.apache.org/cocoon/faq/index.html

To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail:   [EMAIL PROTECTED]




Re: XMLForm - VoiceXML

2002-10-14 Thread Ivelin Ivanov


elements in XMLForm do not have to start with /.
It is just used for clarity in the examples.
You can try just city.

What are the limitations for names of VXML forms?


- Original Message - 
From: apurva zaveri [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Sunday, October 13, 2002 9:08 PM
Subject: XMLForm - VoiceXML


 This is a serious problem about the use of XMLForm in
 VoiceXML. While experimenting with XMLForm to generate
 VoiceXML this a problem that I faced.
 
 Since in XMLForm all the name of the fields begins
 with / in HTML 
 
 select name=/city is not a problem
 
 while in VXML
 
 field name=/city is an error.
 
 What can be done?
 
 -Apurva Zaveri
 
 
 
 __
 Do you Yahoo!?
 Faith Hill - Exclusive Performances, Videos  More
 http://faith.yahoo.com
 
 -
 Please check that your question  has not already been answered in the
 FAQ before posting. http://xml.apache.org/cocoon/faq/index.html
 
 To unsubscribe, e-mail: [EMAIL PROTECTED]
 For additional commands, e-mail:   [EMAIL PROTECTED]
 


-
Please check that your question  has not already been answered in the
FAQ before posting. http://xml.apache.org/cocoon/faq/index.html

To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail:   [EMAIL PROTECTED]




Re: XMLForm - VoiceXML

2002-10-14 Thread Ivelin Ivanov


select name=city

Would be just fine if your bean has a get/setCity()

- Original Message - 
From: apurva zaveri [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Monday, October 14, 2002 7:59 AM
Subject: Re: XMLForm - VoiceXML


One more thing to mention.

I am working on creating wizard2vxml.xsl and
xmlform2vxml.xsl for VoiceXML 2.0 for XMLForm.

Is it Necessary to have / in the field name (html
input variable name) like : select name=/city
this?

Would this be fine?

select name=city

I am using bean not dom for XMLForm


--- apurva zaveri [EMAIL PROTECTED] wrote:
 This is a serious problem about the use of XMLForm
 in
 VoiceXML. While experimenting with XMLForm to
 generate
 VoiceXML this a problem that I faced.
 
 Since in XMLForm all the name of the fields begins
 with / in HTML 
 
 select name=/city is not a problem
 
 while in VXML
 
 field name=/city is an error.
 
 What can be done?
 
 -Apurva Zaveri
 
 
 
 __
 Do you Yahoo!?
 Faith Hill - Exclusive Performances, Videos  More
 http://faith.yahoo.com
 

-
 Please check that your question  has not already
 been answered in the
 FAQ before posting.
 http://xml.apache.org/cocoon/faq/index.html
 
 To unsubscribe, e-mail:
 [EMAIL PROTECTED]
 For additional commands, e-mail:  
 [EMAIL PROTECTED]
 


__
Do you Yahoo!?
Faith Hill - Exclusive Performances, Videos  More
http://faith.yahoo.com

-
Please check that your question  has not already been answered in the
FAQ before posting. http://xml.apache.org/cocoon/faq/index.html

To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail:   [EMAIL PROTECTED]



-
Please check that your question  has not already been answered in the
FAQ before posting. http://xml.apache.org/cocoon/faq/index.html

To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail:   [EMAIL PROTECTED]




XMLForm - VoiceXML

2002-10-13 Thread apurva zaveri

This is a serious problem about the use of XMLForm in
VoiceXML. While experimenting with XMLForm to generate
VoiceXML this a problem that I faced.

Since in XMLForm all the name of the fields begins
with / in HTML 

select name=/city is not a problem

while in VXML

field name=/city is an error.

What can be done?

-Apurva Zaveri



__
Do you Yahoo!?
Faith Hill - Exclusive Performances, Videos  More
http://faith.yahoo.com

-
Please check that your question  has not already been answered in the
FAQ before posting. http://xml.apache.org/cocoon/faq/index.html

To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail:   [EMAIL PROTECTED]