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

by soso
Thu Dec 11, 2008 11:54 am
Forum: Plum DEV Q&A
Topic: subdialog problem
Replies: 4
Views: 6282

Ok. Thansk for your answer. I'll try it.
by soso
Thu Dec 11, 2008 10:34 am
Forum: Plum DEV Q&A
Topic: subdialog problem
Replies: 4
Views: 6282

subdialog problem

Hi,

On my voicexml application, I want to write the confirmation option. To do this, I'll make a subdialog. But I've a problem.

I would like to :

enter a phone number, and confirm by press #. Another begin another choice.

Can you help me?

Thanks by advance.

[/code]
by soso
Thu Nov 27, 2008 5:18 am
Forum: Plum DEV Q&A
Topic: Key pound problem
Replies: 1
Views: 3464

Key pound problem

Hi, I try to create an application like this: <property name="timeout" value="10s"/> <property name="inputmodes" value="dtmf"/> <property name="bargin" value="false" /> <field name="saisie_msg"> <grammar root="saisie_msg" type="application/srgs+xml" mode="dtmf"> <rule id="digit" scope="public"> <one...
by soso
Wed Nov 05, 2008 5:05 am
Forum: Plum DEV Q&A
Topic: Grammars doesn't work
Replies: 4
Views: 5966

Hi,

Thanks for your answer. That's working...

I've many fields wich runs like this methods, but with some differences.

Example:

- only numerics chars, with #
- or #
- only 10 characters for phone number (for example).

Is it possible to create an external link to file, and how?
by soso
Tue Nov 04, 2008 9:40 am
Forum: Plum DEV Q&A
Topic: Grammars doesn't work
Replies: 4
Views: 5966

The #digit rule is like this: <rule id="digit" scope="public"> <one-of> <item> 0 </item> <item> 1 </item> <item> 2 </item> <item> 3 </item> <item> 4 </item> <item> 5 </item> <item> 6 </item> <item> 7 </item> <item> 8 </item> <item> 9 </item> </one-of> </rule>
by soso
Tue Nov 04, 2008 9:37 am
Forum: Plum DEV Q&A
Topic: Grammars doesn't work
Replies: 4
Views: 5966

Grammars doesn't work

Hi, I've a problem with a grammars. I woule like a grammars wich have : - only numerics chars (0.9) x 255 and terminate by #, - or only #, - or only *#. I create this rule but it doesn't work: <rule id="confirm_msg" scope="public"> <one-of> <item> <item repeat="0-255"> <ruleref uri="#digit"/> </item...
by soso
Thu Oct 30, 2008 9:27 am
Forum: Plum DEV Q&A
Topic: Passing voicexml variable to asp
Replies: 1
Views: 5352

Passing voicexml variable to asp

Hi, I've this code: <form id="input"> <field name="number" type="digits?maxlength=11"> <audio src="media/number.wav" /> <grammar src="grammars/service.grxml#number" type="application/srgs+xml"/> </field> <filled namelist="number"> <% Dim number As String As String = %> <value expr="number1" /> <% If...
by soso
Tue Aug 19, 2008 3:54 am
Forum: Plum DEV Q&A
Topic: Problem when add 1 to variable
Replies: 1
Views: 3489

Problem when add 1 to variable

Hi,

Can you explain me why the result is '01' when add +1 to my variable?

I've this variable:

Code: Select all

<var name="essai" assign="0" />
After procedure:

Code: Select all

<assign name="essai" expr="essai+1"/>
And result is '01' instead '1'?

Why?

Thansk by advance.
by soso
Mon Aug 18, 2008 5:38 am
Forum: Plum DEV Q&A
Topic: Play each number of variable
Replies: 1
Views: 3760

Play each number of variable

Hi, I've a variable "tel", wich contains the phone number. I've audio file number. I would like to play the audio file wich each number of the phone number. How can I write this procedure with vxml? Exemple : phone number is 0601010101. I would to play : zero six zero one zero one zero one Thanks by...
by soso
Thu Aug 14, 2008 3:10 am
Forum: Plum DEV Q&A
Topic: Problem to write vxml code with # key
Replies: 1
Views: 3488

Problem to write vxml code with # key

Hi,

I've a problem with a grammar, with voicexml.

In my application, the user can enter # key, or input number, for send a message. If the user type #, is a specific message, otherwise, is the user message.

How can I translate to vxml?
by soso
Wed Jul 09, 2008 7:31 am
Forum: Plum DEV Q&A
Topic: Problem with subdialog
Replies: 1
Views: 3608

Problem with subdialog

Hi, I've a problem with a subdialog. I've this code: <field name="phonenumber" type="digits?minlength=6;maxlength=10"> <property name="inputmodes" value="dtmf" /> <nomatch> <audio src="media/hello1.wav" /> </nomatch> ... </noinput> </field> <subdialog name="checkresults" src="check_number.aspx" name...
by soso
Fri Jul 04, 2008 11:02 am
Forum: Plum DEV Q&A
Topic: Call vb .net function in vxml?
Replies: 1
Views: 3534

Call vb .net function in vxml?

Hi,

With an aspx page under vb, how do I call a function, with vxml?

Thanks.
by soso
Fri Jul 04, 2008 4:42 am
Forum: Plum DEV Q&A
Topic: Enter the call number in vxml
Replies: 1
Views: 3506

Enter the call number in vxml

Hi,

With vxml, how do i use the dtmf value?

I want to say:
Please enter the call number and type # to finish
Can you help to write this code with vxml?

Thanks.
by soso
Thu Jul 03, 2008 2:38 am
Forum: Plum DEV Q&A
Topic: How to log total length for each call?
Replies: 1
Views: 3519

How to log total length for each call?

Hi,

Can you tell me how may I save the total length call?

I would like to log this information.

Thanks by advance.
by soso
Wed Jul 02, 2008 1:08 pm
Forum: Plum DEV Q&A
Topic: Define date format
Replies: 4
Views: 5901

Ok, very thanks.