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

by vikas
Tue Mar 21, 2017 5:29 pm
Forum: Plum DEV Q&A
Topic: Log displaying partial value of variable
Replies: 1
Views: 4605

Log displaying partial value of variable

hi We have a code where we are assigning a XML string to a variable and later displaying it using <log> tag. However I see that only a part of xml string gets printed in log. Is there any length limitation that I am running into? Kindly let me know. <assign name="submitData" expr="'<verifyCardReques...
by vikas
Fri Feb 24, 2017 2:25 pm
Forum: Plum DEV Q&A
Topic: JSON API Call
Replies: 1
Views: 5177

JSON API Call

Hi Plum

I am calling an API that sends & receives data in JSON format using the <data> tag.
How can I set request headers without using PHP or any scripting language?

Regards
Vikas
by vikas
Fri Jan 06, 2017 6:44 pm
Forum: Plum DEV Q&A
Topic: soaptester - any documents or examples
Replies: 1
Views: 4523

soaptester - any documents or examples

Where can I find more document / examples on Soaptester utility.
I am using below URL.

It asks for WSDL location. Do I need to upload my WSDL?
Currently I have my WSDL locally on my laptop.

http://www.plumvoice.com/soaptester/
by vikas
Mon Oct 17, 2016 11:12 pm
Forum: Plum DEV Q&A
Topic: Error from Javascript function
Replies: 1
Views: 4827

Error from Javascript function

In our preprod environment we got below error TypeError: errorEmailMessage has no properties line 1 When executing below code. <assign name="errorEmailMessage" expr="ErrorDesc"/> <var name="vordelCodeIndexNbr" expr="errorEmailMessage.lastIndexOf('AAA')"/> This code was working sometime back. Has the...
by vikas
Thu Aug 18, 2016 5:22 pm
Forum: Plum DEV Q&A
Topic: <foreach> Loop not working
Replies: 6
Views: 11010

Re: <foreach> Loop not working

I was able to fix it finally by removing below section of code from my Javascript which was creating Array var trxDate = new Date(str_date); var days_en = ["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"]; var days_es = ["doh-MEEN-goh","LOOH-nayss","MAHR-tayss","mee-AIR-coh-la...
by vikas
Thu Aug 18, 2016 3:24 pm
Forum: Plum DEV Q&A
Topic: <foreach> Loop not working
Replies: 6
Views: 11010

Re: <foreach> Loop not working

It works if I use the "transactions" array provided by you so that means there is something wrong with the input data which is causing <foreach> to skip. However it is still not clear what is wrong with the Array data. In the same code I have added below debug statements. Now I can see that the "sub...
by vikas
Thu Aug 18, 2016 1:00 pm
Forum: Plum DEV Q&A
Topic: <foreach> Loop not working
Replies: 6
Views: 11010

Re: <foreach> Loop not working

did anyone got a chance to look into it? Thanks.
by vikas
Wed Aug 17, 2016 1:51 pm
Forum: Plum DEV Q&A
Topic: <foreach> Loop not working
Replies: 6
Views: 11010

Re: <foreach> Loop not working

Yes, I tried removing <if> condition; it still doesn't work. I am sending the code - there are 3 parts 1) VXML code 2) Javascript which creates the array 3) The input to Javascript (<xml> data from an API) VXML code <block name="sayTransactions" cond="index < transactions.length"> <assign name="subA...
by vikas
Tue Aug 16, 2016 6:53 pm
Forum: Plum DEV Q&A
Topic: <foreach> Loop not working
Replies: 6
Views: 11010

<foreach> Loop not working

Hi In my code I need to iterate through an Array for which I am using <foreach> tag but this doesn't seem to be working. Not sure what I am missing. I have verified that the array is not empty still the call doesn't enter the foreach loop. I have pasted a section of my code below. The only line that...
by vikas
Thu Jul 07, 2016 3:33 pm
Forum: Plum DEV Q&A
Topic: Issue playing French text (AT&T TTS engine)
Replies: 2
Views: 6446

Re: Issue playing French text (AT&T TTS engine)

Thanks. It worked.
by vikas
Fri Jul 01, 2016 4:09 pm
Forum: Plum DEV Q&A
Topic: Issue playing French text (AT&T TTS engine)
Replies: 2
Views: 6446

Issue playing French text (AT&T TTS engine)

Hi I am facing issue when trying to play out French text as TTS. The engine starts playing the Tags instead of playing the text also it doesn't read out the complete text in French. On doing some research I found that the issue is the punctuation mark ( ’ ) in the text. I tried to escape these punct...
by vikas
Mon May 09, 2016 12:49 pm
Forum: Plum DEV Q&A
Topic: Variable to store Error no & Error message
Replies: 1
Views: 5746

Variable to store Error no & Error message

Hi Plum Looking at below log "errno: 205 uri" occurred. Is there any session variable which stores this value of errno: 205? Also any variable which stores the error message i.e. “Parse error in file https://apipp.blackhawknetwork.com/VolumeOrderProcessing/v1/card/transaction/cardHolderActivation", ...
by vikas
Fri Apr 29, 2016 10:58 am
Forum: Plum DEV Q&A
Topic: Rest API - enctype & rawexpr
Replies: 3
Views: 8072

Re: Rest API - enctype & rawexpr

Thanks for reply.

Please let me know the response type that is supported by Plum at this point.

Also let me know am I right using "enctype" for JSON request. or is there some other attribute that I need to set for JSON request?
How is 'rawexpr' attribute used?
by vikas
Thu Apr 28, 2016 8:20 pm
Forum: Plum DEV Q&A
Topic: Rest API - enctype & rawexpr
Replies: 3
Views: 8072

Rest API - enctype & rawexpr

Hi Plum I have a requirement to invoke a REST API for which both request & response have a format as "application/json". Relevant section of WADL from REST API is pasted below. In order to implement it I am using <data> tag and setting enctype as "application/json" but still I am getting error as "U...
by vikas
Thu Apr 21, 2016 12:39 am
Forum: Plum DEV Q&A
Topic: Token initiated call by clicking a button on a Web page
Replies: 5
Views: 10293

Re: Token initiated call by clicking a button on a Web page

Thanks. Yes, it's working after I changed the handler setting on my IIS server to allow POST. However I have few more doubts. 1) I am using an HTML page with a Submit button to post to the queuecall.php. After clicking the "Submit" button on my HTML page the web browser transitions to "http://outbou...