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 20 matches
- Wed Jan 30, 2008 11:45 am
- Forum: Plum DEV Q&A
- Topic: reading logs
- Replies: 1
- Views: 4352
reading logs
Can I get the last 5 logs and all xml details.
- Fri Nov 09, 2007 8:08 am
- Forum: Plum DEV Q&A
- Topic: Tranfer Call - Play Message to Callie
- Replies: 1
- Views: 4855
Tranfer Call - Play Message to Callie
Can I play a message to the person that is being transfered to or have them accept the call?
- Wed Nov 07, 2007 12:03 am
- Forum: Plum DEV Q&A
- Topic: more out bound and transfer questions
- Replies: 1
- Views: 4807
more out bound and transfer questions
Transfer: Are we able to use "blind" transfers with the hosted system.
Outbound / Transfer: What is the max the hosted system can handle at one time?
Outbound / Transfer: What is the max the hosted system can handle at one time?
- Fri Oct 26, 2007 10:10 am
- Forum: Plum DEV Q&A
- Topic: recording calls and can't play the wav file
- Replies: 1
- Views: 4859
I solved the issue, thanks
thanks
- Fri Oct 26, 2007 8:32 am
- Forum: Plum DEV Q&A
- Topic: recording calls and can't play the wav file
- Replies: 1
- Views: 4859
recording calls and can't play the wav file
I'm recording calls using the script below and sending the data to the web server. The is uploaded without issue, but I can't play it. Both window media and quick time do not reconize the file type. I've tried several types of audio including audio/x-wav and basic. <?xml version="1.0"?> <vxml versio...
- Wed Oct 17, 2007 3:52 pm
- Forum: Plum DEV Q&A
- Topic: Outbound and Transfer call
- Replies: 3
- Views: 7555
Re: outbound and transfer call
will you please provide a sample of the filled option. what I'm trying to do is allow the person that receives the call to press a button that processes something and the person on the receiving end of the transfer to press a button to process something that. Imagine playing a game and you want each...
- Wed Oct 17, 2007 3:04 pm
- Forum: Plum DEV Q&A
- Topic: Outbound and Transfer call
- Replies: 3
- Views: 7555
Outbound and Transfer call
I want to place an out bound call and then transfer the call to another line. I know I'll be billed double, but I want to understand how it will work. Outbound: When I place this call the system auto executes a vxml script. this script can it then transfer a call. Second, Can I dissconnect the call ...
- Tue Sep 11, 2007 12:54 pm
- Forum: Plum DEV Q&A
- Topic: dtmf grammer
- Replies: 7
- Views: 12951
fixed the issue
thanks: I fixed it. It was a missing plus sign.
- Tue Sep 11, 2007 12:42 pm
- Forum: Plum DEV Q&A
- Topic: dtmf grammer
- Replies: 7
- Views: 12951
call log
still getting the error. Can it come from the start "*" in the item tag. I'm simply trying to allow the user to press 1,2, or * and process based on that Tue 11 Sep 2007 01:39:52 PM EDT: Call Start Event: ANII 3017892092 DNIS 9301 VURL http://hosting.plumgroup.com/plumvp/director.vxml DocumentParser...
- Tue Sep 11, 2007 10:13 am
- Forum: Plum DEV Q&A
- Topic: dtmf grammer
- Replies: 7
- Views: 12951
more sample
Sorry, I was trying everything and posed the code with voice. Below is more of the code. I've tired it all... I've even created a non inlined piece of code and that doesn't work. <form id="Bidding"> <block> <prompt>The Current Bid is <say-as interpret-as="currency"><value expr="document.CurrentBidAm...
- Tue Sep 11, 2007 8:52 am
- Forum: Plum DEV Q&A
- Topic: dtmf grammer
- Replies: 7
- Views: 12951
still having issues
I get the following error Loading Builtin grammar: builtin:grammar/digits Loading Builtin grammar: builtin:dtmf/digits Loading Builtin grammar: builtin:grammar/digits Loading Builtin grammar: builtin:dtmf/digits GrammarManager::CreateGrammarFromString(application/srgs xml): --------- <?xml version='...
- Sat Sep 08, 2007 10:26 pm
- Forum: Plum DEV Q&A
- Topic: dtmf grammer
- Replies: 7
- Views: 12951
dtmf grammer
I can't seem to get this to work: <form> <field name="UserConfirm"><prompt> Press 1 to place press 2 to reenter, or press star to cancel </prompt> <grammar type="application/x-gsl" mode="dtmf"> <![CDATA[ [ [dtmf-1] {<cmd "confirm">} [dtmf-2] {<cmd "change">} [dtmf-star] {<cmd "quit">} ] ]]> </gramma...
- Sat Sep 08, 2007 7:23 am
- Forum: Plum DEV Q&A
- Topic: speaking numbers
- Replies: 1
- Views: 5077
speaking numbers
I have a varable with a long number in it. How can I get the system to speak one number at a time. I've tried say-as phone and still nothing. I can parse the number on the server, but really had to do it that way.
- Tue Sep 04, 2007 9:18 pm
- Forum: Plum DEV Q&A
- Topic: 3 VXML Questions (menu's, wait audio, variable scope)
- Replies: 5
- Views: 10172
issue #3
above you will also see issue #1 documented: the flow is like this: List 1: apples peaches robots List 2: balls toys radios I want the user to be able to select a list then hear the first item. after hearing the first item I want them to select one of 4 options. 1) Go forward to the next item 2) Go ...
- Tue Sep 04, 2007 9:08 pm
- Forum: Plum DEV Q&A
- Topic: 3 VXML Questions (menu's, wait audio, variable scope)
- Replies: 5
- Views: 10172
code for issue 1
issue #1: code: neither item seems to work uri or document.uri <vxml version="2.0" xmlns="http://www.w3.org/2001/vxml"> <var name="uri" expr="'PhoneProcessReqTest.asp'" /> <catch event="connection.disconnect.hangup"> <goto next="HangUp.asp" /> </catch> <form> <block> <prompt> Welcome </prompt> <goto...