Heads Up :
The post you are writing will appear in a public forum. Please ensure all content is appropriate for public consumption. Review the employee guidelines for the community here.
This particular TAG value is CASE SENSITIVE in that IPv4Address does not work..and the returned error is "no good": <faultcode>soapenv:Server</faultcode> <faultstring>unknown</faultstring>The value for SelectBy IP should be IPV4Addre...
Non-reactive Debugging of Script doesn't workAnyone having issues with XML Documents loading in 9.0.2? Attached is a Holiday Script that worked in 8.5.1SU3..saved properly in CCX 9.0.2 and don't work now..I'll attach to see if someone can Confirm...
I need to be able to Speak a Date in such as January 20, 1990 and populate a String Variable with the result (granted my Grammars are straight) however, The Get Digit String step won't do this for me (and I don't have a test environment yet). What S...
I have a Get Digit String in an ASR enabled script where the user either enters their Account Number via Touch Tones or Speech; if the user uses Touch Tones, I need to just move on to the next step in the script; however, if the user uses Voice I nee...
This is for UCCX 8.5.1THIS IS NOT AN HTTP TRIGGERI need to be able to WRITE to an XML file via HTTP (straight up HTTP at this point e.g. http://<ip address>/*.xml); I know my web server is working as I can Load the Data of the XML file into a Create ...
Ok..let's forget about Documents right now..1 Step @ a Time because it sounds to me like you are firing in the Dark with a blindfold on..Can you Provide for me..Paste or what not..the RAW Data you are Receiving Back from the POST Request...
If you are receiving a Response String such as that..converting that to JSON would be unnecessary unless you need to pass it along to someone else in that format...
Otherwise, just parse that string using RegEx
String qs = "ResponseCode=.....";...
xapi.command(string, object) returns a Promise so if you use the pattern below you won't have to worry about the potential of leaking memory with setTimeout...let me know if it works for you..
return xapi.command(str, obj).then(function(result1) {
...
I saw this and decided to poke around for a few minutes
My guess is the "[{}]" is "unparsed" so
Use a DO Step
{
// Convert the "Unparsed" Data to an actual JSON Array
net.minidev.json.JSONArray jArr = (net.minidev.json.JSONArray) net.minidev....