You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@cocoon.apache.org by AK...@burntsand.com on 2001/02/12 19:48:28 UTC

VoiceXML Application using Cocoon

I was interested in setting up a VoiceXML application using the Cocoon
framework.
 
Here's what it does - it allows a visually impaired user to dial into a
telephone number
to hear the latest headline news.  The headline news (which the user hears)
, is initially
aquired from an XML newsfeed (like moreover.com) and then transformed using
Cocoon's XSLT engine into VoiceXML.
 
What I was interested in knowing is how can I aquire the XML news feed and
make
it available to the Cocoon framework as an XML Document.
 
Any feedback on this will be greatly appreciated.
 
Thanks
 
AYUB KHAN

1500, 1075 West Georgia Street
Vancouver, B.C.   V6E 3C9

(604) 642-2329   Off.
AKhan@burntsand.com <ma...@burntsand.com>  

 <http://www.burntsand.com/>  

Re: VoiceXML Application using Cocoon

Posted by S�rgio Carvalho <sc...@criticalsoftware.com>.
Assuming you can get the data via http, you could use the xinclude processor, or the util taglib for XSP (I guess the inclusion tag is util:include-uri). There are samples for both in the standard install.

--
Sergio Carvalho
---------------
scarvalho@criticalsoftware.com

If at first you don't succeed, skydiving is not for you

Re: VoiceXML Application using Cocoon

Posted by Donald Ball <ba...@webslingerZ.com>.
On Mon, 12 Feb 2001 AKhan@burntsand.com wrote:

> What I was interested in knowing is how can I aquire the XML news feed
> and make it available to the Cocoon framework as an XML Document.

read the faq on including xml from other sources. short answer - you can
do it dynamically from any source with xsp, you can do it from files with
xinclude, you can do it just in xslt with document().

- donald