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

Search found 3555 matches

by support
Fri Aug 15, 2003 8:06 pm
Forum: Plum DEV Q&A
Topic: Playing Windows Media Format
Replies: 1
Views: 5708

Please contact IVR sales department for more information

There are currently no plans to support windows streaming media, but support may be added in the near future provided there is demand for it. The next IVR platform release will support mp3 format (platform release 2.4.2) It's recommended that you contact our sales department to inquire about our cus...
by support
Wed Aug 06, 2003 8:17 am
Forum: Plum DEV Q&A
Topic: How can I generate dynamic menus and other voiceXML construc
Replies: 7
Views: 15381

More Information is needed to answer your IVR question

Your question is unclear...could you please give a more detailed description? If you seek answers to a different question, please post them under a new IVR topic.

Thank You.

:wink:
by support
Sun Jul 20, 2003 6:29 pm
Forum: Plum DEV Q&A
Topic: why doesn't the <property> tag I defined in my applica
Replies: 1
Views: 6026

IVR example using a property tag document scope

Where are you putting the IVR tag? It's possible it may be in the wrong location, and out of scope. To give a <property> tag document scope (active for the given vxml document), it should be one level below the <vxml> tag. Heres an IVR example: <?xml version="1.0" ?> <vxml version="2.0"> <property n...
by support
Sun Jun 29, 2003 11:51 am
Forum: Plum DEV FAQs
Topic: How do I use the star or pound key in <grammar> tags?
Replies: 0
Views: 17601

using the asterisk (star key) or pound keys in grammar tags

Often times, the function keys (* and #) are used to provide additional functionality in voice vxml applications. Here's a simple grammar tag example that specifies the star key, using jsgf (the default grammar type): <grammar>"*"</grammar> Here is the same grammar tag, specified with regexp instead...
by support
Tue Jun 24, 2003 11:25 am
Forum: Plum iOn FAQs
Topic: Why won't my ISDN system properly do a transfer when a comma
Replies: 0
Views: 17228

Why won't my ISDN system properly do a transfer when a comma

While a "," in a dialing string represents a 1.5 second pause for analog and channelized T1 systems, it has a different meaning on ISDN systems which can vary from deployment to deployment. A "," should not be used within a dialing string on an ISDN system.
by support
Tue Jun 24, 2003 8:49 am
Forum: Plum iOn Q&A
Topic: Issue restarting plum
Replies: 1
Views: 5347

Re: Issue restarting plum IVR platform

If you're making changes to the IVR application assigned to a DNIS, you shouldn't have to restart the IVR platform at all. If, however, you're making changes to the DNIS assigned to a channel, a restart is necessary. The bug mentioned is specific to channelized T1 systems. The Dialogic drivers do no...
by support
Thu Jun 19, 2003 8:45 pm
Forum: Plum iOn Q&A
Topic: Does the platform handle each channel as a separate process?
Replies: 1
Views: 5706

Plum IVR Platform processes

The Plum IVR Platform is multi-threaded and runs as a daemonized process. Each channel is handled by a separate thread. Also, both the speech recognition engine and the text to speech engine run as separate processes. Speech recognition and TTS service requests are passed through socket connections,...
by support
Thu Jun 19, 2003 8:38 pm
Forum: Plum DEV Q&A
Topic: Do you have VoiceXML sample applications available?
Replies: 1
Views: 5998

Sample IVR applications and code available from Plum

Sample IVR applications and IVR code, along with complete VoiceXML DTD's and developer tools are available from Plum. To obtain an IVR developers kit, please contact us at support@plumvoice.com
by support
Thu Jun 19, 2003 1:51 pm
Forum: Plum DEV Q&A
Topic: Sound conversion question.
Replies: 5
Views: 12269

IVR developers at Plum use SoX for conversions

Here's what IVR developers at Plum use for converting 8 bit u-law headerless files to wav:

Code: Select all

sox -r 8000 -U -b -t raw recording.raw recording.wav
by support
Thu Jun 19, 2003 1:50 pm
Forum: Plum DEV Q&A
Topic: Sound conversion question.
Replies: 5
Views: 12269

Playing recorded u-law audio files using the IVR platform

To play recorded audio files, the Plum Voice Platform first checks the MIME type of the source file returned by the IVR application server. If no MIME type is returned, then the IVR platform checks the file extension to infer the file format. If you're having trouble playing back recorded 8 bit u-la...
by support
Wed Jun 18, 2003 11:36 am
Forum: Plum DEV FAQs
Topic: Why doesn't the <sayas> tag work with Plum Voice platf
Replies: 0
Views: 17721

Why doesn't the <sayas> tag work with Plum Voice platf

The plum voice platform is compliant with vxml version 2.0

The <sayas> is deprecated in the w3c standard committe's official specification for v2.0;
Plum Voice therefore does not use this tag. Use <say-as> instead.
by support
Wed Jun 18, 2003 9:02 am
Forum: Plum DEV FAQs
Topic: What's the difference between the <disconnect> tag and
Replies: 0
Views: 18111

What's the difference between the <disconnect> tag and

<disconnect> causes the interpreter to disconnect from the user and throws a connection.disconnect.hangup event, which may be caught to do cleanup processing, e.g.. <exit> returns control to the interpreter context, basically just ending the call. Since the <exit> element does not throw an "exit" ev...
by support
Mon Jun 16, 2003 2:01 pm
Forum: Plum iOn FAQs
Topic: How are cookies handled?
Replies: 0
Views: 17410

How are cookies handled?

A new cookie jar is created on a per session basis. Thus, cookies are maintained for the life of a single call and destroyed at the end of the call. An alternative to cookies for maintaining state information throughout the life of a single call session is to use the root document feature of VoiceXM...
by support
Mon Jun 16, 2003 1:16 pm
Forum: Plum DEV FAQs
Topic: Does the Plum Voice Platform support mixed initiative?
Replies: 1
Views: 19013

Does the Plum Voice Platform support mixed initiative?

The Plum Voice Platform currently does not support mixed initiative (as of release 2.4.1). However, that feature is expected to be implemented for the 2.4.2 release.
by support
Mon Jun 16, 2003 1:15 pm
Forum: Plum DEV FAQs
Topic: How can I access a caller's ID or DNIS in my VoiceXML applic
Replies: 0
Views: 18799

How can I access a caller's ID or DNIS in my VoiceXML applic

The session variable "session.telephone.ani" can be used to access the phone number of the caller (typically available from most phone numbers in North America). <vxml version="2.0" xmlns="http://www.w3.org/2001/vxml"> <form id="ani_test"> <block> <prompt> You are calling from phone number <say-as t...