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

by aliasg
Thu Mar 11, 2010 12:47 am
Forum: Plum DEV Q&A
Topic: Time out after 3 minutes
Replies: 6
Views: 7766

<subdialog fetchtimeout="180s" name="subSaveRecording" src="fnMisc.aspx" namelist="CardID Recording Subject AudioDuration FunctionID" method="post" enctype="multipart/form-data" /> Above, "Recording" is recording variable holding a recording of an hour. Subject is 10 second recording. Following is ...
by aliasg
Wed Mar 10, 2010 11:20 am
Forum: Plum DEV Q&A
Topic: Time out after 3 minutes
Replies: 6
Views: 7766

This is not about the record tag. This is about submit tag I m submitting recorded files to be saved on our server using submit. If recording is small up to 30-40 file is submitted in 3minutes but if file is full one hour long, file is not submitted in 3minutes that is maximum value for time out hen...
by aliasg
Wed Mar 10, 2010 7:43 am
Forum: Plum DEV Q&A
Topic: Time out after 3 minutes
Replies: 6
Views: 7766

I m being timed out and getting bad fetch error as a result. Catching this bad fetch and resubmitting is not a workable solution since that can lead user to wait for another 3 minutes without any surety of success.
by aliasg
Wed Mar 10, 2010 7:00 am
Forum: Plum DEV Q&A
Topic: Time out after 3 minutes
Replies: 6
Views: 7766

Time out after 3 minutes

Hi, I am recording dictation from user for an hour long and submitting it to my server. The file size of one hour recording is around 35 MB. I have set the maximum value(in fetchtimeout) to upload this file to my server from plum. i.e 18000. But the file is not upload in even 3 minutes. What option ...
by aliasg
Thu Dec 03, 2009 5:07 am
Forum: Plum DEV Q&A
Topic: Record maxtime calculation and assignment
Replies: 7
Views: 9240

Yes.

Yes, infact this is the only glitch left in my issue log. Here is code in a .aspx page. <record name="userrecording" maxtime="<%=Maxtime * 60 %>s" finalsilence="30s" dtmfterm="true" beep="true" type="audio/x-wav"> Following is its output from call log. see maxtime=3600s <record name="userrecording" ...
by aliasg
Tue Dec 01, 2009 8:19 am
Forum: Plum DEV Q&A
Topic: Digits length
Replies: 1
Views: 3731

Digits length

Hi,

I am using

Code: Select all

 <field name="iCardNumber" type="digits?length=10">
But it also accept 98765432103210 as 9876543210 when entered in flow. I need to get no match event for input of greater than ten digits.

Any help?
by aliasg
Tue Dec 01, 2009 4:44 am
Forum: Plum DEV Q&A
Topic: Record maxtime calculation and assignment
Replies: 7
Views: 9240

Thanks for the reply but that didn't solved my problem. Infact both of your reply meant the same that maxtime can't be set to a variable thats what I complaint for. :) I needed it that way. Now I have to change my app design to cover this deficiency. But now I am facing another problem. I am using <...
by aliasg
Thu Nov 26, 2009 12:26 am
Forum: Plum DEV Q&A
Topic: Record maxtime calculation and assignment
Replies: 7
Views: 9240

I can't print it from server every time. This variable is retrieved from server using sub dialog several time on this page.
by aliasg
Tue Nov 24, 2009 9:17 am
Forum: Plum DEV Q&A
Topic: Record maxtime calculation and assignment
Replies: 7
Views: 9240

Record maxtime calculation and assignment

Hi, I need to calculate and assign maxtime of the record before user could actually record a message. I am using following code to achieve this but its not working. <?xml version="1.0"?> <vxml version="2.0"> <var name="prevAuthorizedMins" expr="5" /> <var name="mrt" expr="prevAuthorizedMins * 60 + '...
by aliasg
Tue Nov 17, 2009 7:36 am
Forum: Plum DEV Q&A
Topic: Scheduler to update sever after specific time interval.
Replies: 5
Views: 7013

I just noticed, a call from ivr to our server after error.badfetch timesout everytime.
i.e

Get disconnected after an error.badfetch error,
Redial immediately, the first call from ivr to our server times out everytime. If i redial after a mins or so, it works.
by aliasg
Tue Nov 17, 2009 1:12 am
Forum: Plum iOn Q&A
Topic: Random time out for even just page transfer
Replies: 5
Views: 24097

No, I am not using any fetch timeout. That means default 30s is in place. Timeout occurs for a page that is even hardly of 1k size. 30s is not little for such page load.
by aliasg
Mon Nov 16, 2009 9:03 am
Forum: Plum iOn Q&A
Topic: Random time out for even just page transfer
Replies: 5
Views: 24097

Random time out for even just page transfer

Hi I am currently facing random and very frequent timeouts on my applications. The timeout occurs randomly on different places mostly when switching the menus. So there is just a page transfer. I have checked my IIS logs as well and was not able to trace server call that is being timed out. That mea...
by aliasg
Thu Nov 12, 2009 1:56 pm
Forum: Plum DEV Q&A
Topic: Scheduler to update sever after specific time interval.
Replies: 5
Views: 7013

Thanks for reply. I already feared that it is not possible. Anyway, Following is the scenario I am trying to develop solution for. My users log in using card and pin number. Each card has a specific time value that is continuously deducted during IVR call(not at the end of call). IVR also plays long...
by aliasg
Thu Nov 12, 2009 4:28 am
Forum: Plum DEV Q&A
Topic: Scheduler to update sever after specific time interval.
Replies: 5
Views: 7013

Scheduler to update sever after specific time interval.

Hi, I need to schedule and repeat database update call while listening to long recording. ie If user starts listening a long recording, I want that time to be continuously deducted during the call and my Backend database updated after every 1 min asynchronously. So possibly there will be a timer run...
by aliasg
Mon Aug 10, 2009 11:48 pm
Forum: Plum DEV Q&A
Topic: Delay after taking user input.
Replies: 3
Views: 5051

Hi, Thanks for the reply. Just make it this way, I just want to collect choices from user which could be 1 or 2. So "Say or enter any number of length 5. " will become "Enter 1 or 2." and "digits?length=5" becomes "digits?length=1". Same way if you collect 20 or 30 and make ?length=2 it will again w...