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 23 matches

by herzow
Tue Oct 20, 2009 5:55 pm
Forum: Plum DEV Q&A
Topic: Long time until first prompt
Replies: 1
Views: 4056

Long time until first prompt

It seems like it takes forever until I here the first recorded prompt. How can I make sure most of my members I'm calling don't hang up because of the dead air in the beginning? Here is my script: <?xml version="1.0" ?> <vxml version="2.0"> <form id="main"> <record finalsilence="1000ms"> <noinput> <...
by herzow
Fri Oct 16, 2009 4:14 pm
Forum: Plum DEV Q&A
Topic: Please help with the following
Replies: 1
Views: 8138

Please help with the following

I need to accomplish two more things. 1. In the code below when I play the machine message I need to implement a "finalsilence" somehow so that I leave the message on a machine. 2. In the code below when I play the regular message I need to learn how to do a transer to another number. Like a press 1...
by herzow
Fri Oct 16, 2009 4:10 pm
Forum: Plum DEV Q&A
Topic: This script not working to leave VoiceMail - Please Help!
Replies: 4
Views: 8239

I scrapped this idea.

Because the reading I did said the answering machine detection wasn't a perfect system. Which is understandable.

Please close ticket.
by herzow
Fri Oct 16, 2009 4:08 pm
Forum: Plum DEV Q&A
Topic: How dod I only accept digits
Replies: 1
Views: 3555

I figured this out.

I added <prompt timeout="4s" bargein="false">


and it appears to work.

Please close ticket
by herzow
Fri Oct 16, 2009 3:36 pm
Forum: Plum DEV Q&A
Topic: How dod I only accept digits
Replies: 1
Views: 3555

How dod I only accept digits

The following script allows their voice to interupt and cause it to repeat. strXML = "<?xml version=""1.0""?>" & _ "<vxml version=""2.0"">" & _ "<form>" & _ "<field name=""myprompt"" type=""digits"">" & _ "<grammar type=""application/x-jsgf"" mode=""dtmf"">(0|1|2|3|4|5|6|7|8|9|""#""|""*"")</grammar>...
by herzow
Fri Oct 16, 2009 2:32 pm
Forum: Plum DEV Q&A
Topic: This script not working to leave VoiceMail - Please Help!
Replies: 4
Views: 8239

Problem with Verizon or Voicemail systems

I'm populating the callee_type by doing the following: It works for answering machines and my landline, but it's not working for my voicemail on my cellphone or any other cell phones. strCallee_Type = Request.Form("callee_type") strXML = "<?xml version=""1.0""?>" & _ "<vxml version=""2.0"">" & _ "<f...
by herzow
Fri Oct 16, 2009 12:10 pm
Forum: Plum DEV Q&A
Topic: This script not working to leave VoiceMail - Please Help!
Replies: 4
Views: 8239

This script not working to leave VoiceMail - Please Help!

<?xml version="1.0" ?> <vxml version="2.0"> <form id="mainmenu"> <var name="callee_type" expr="''" /> <record cond="callee_type=='answeringmachine'" finalsilence="4000ms" /> <block> <prompt cond="callee_type=='answeringmachine'">THIS IS AN ANSWERING MACHINE</prompt> <prompt cond="callee_type!='answe...
by herzow
Wed Sep 30, 2009 7:44 pm
Forum: Plum DEV Q&A
Topic: Detect Answering Machine or VoiceMail
Replies: 11
Views: 22507

I left out some server side code.

strCallee_Type = Request.QueryString("callee_type")

--FOR THIS LINE THAT GENERATED
"<var name=""callee_type"" expr=""'" & strCallee_Type & "'"" />" & _
by herzow
Wed Sep 30, 2009 7:43 pm
Forum: Plum DEV Q&A
Topic: Detect Answering Machine or VoiceMail
Replies: 11
Views: 22507

I thought I had it. Please look at this code.

What am I missing below. It works for the "REGULAR CALL", but not hte "ANSWERING MACHINE". <?xml version="1.0" ?> <vxml version="2.0"> <form id="mainmenu"> <var name="callee_type" expr="''" /> <record cond="callee_type=='answeringmachine'" finalsilence="4000ms" /> <block> <prompt cond="callee_type==...
by herzow
Wed Sep 30, 2009 6:49 pm
Forum: Plum DEV Q&A
Topic: Detect Answering Machine or VoiceMail
Replies: 11
Views: 22507

ASPX Please

Thank you. This looks like it might work. What does the top part of this file look like in ASPX <?php header("Content-type: text/xml"); echo("<?xml version=\"1.0\"?>\n"); $calleetype = $_POST['callee_type']; ?> <vxml version="2.0"> <form id="mainmenu"> <var name="callee_type" expr="'<?= $calleetype ...
by herzow
Wed Sep 30, 2009 6:29 pm
Forum: Plum DEV Q&A
Topic: result_url question
Replies: 4
Views: 5959

Thank you.

Thank you
by herzow
Wed Sep 30, 2009 3:16 pm
Forum: Plum DEV Q&A
Topic: Audio files
Replies: 2
Views: 4383

Thank you.

Thank you.
by herzow
Wed Sep 30, 2009 2:12 pm
Forum: Plum DEV Q&A
Topic: Audio files
Replies: 2
Views: 4383

Audio files

My Audio files seem to be out of wack.

I deleted one earlier today and recorded two new ones. One has the same file name. One the system they play corectly, but when I make a call it's playing the old one.

-Bill
by herzow
Wed Sep 30, 2009 2:09 pm
Forum: Plum DEV Q&A
Topic: result_url question
Replies: 4
Views: 5959

Email Notifications

My system right now is setup to send emails whenever my result URL is hit.

I'm getting two per call.

One with NO DATA

and a second with the results.
by herzow
Wed Sep 30, 2009 2:05 pm
Forum: Plum DEV Q&A
Topic: Detect Answering Machine or VoiceMail
Replies: 11
Views: 22507

I think this is working...

Does this look like a VXML that is a best practice for what I am trying to do. <?xml version="1.0" ?> - <vxml version="2.0"> - <form> <var name="callee_type" expr="'answeringmachine'" /> - <record cond="callee_type=='answeringmachine'" finalsilence="2000ms"> - <noinput> - <prompt> <audio src="http:/...