[UXP] [SOAP] Unable to get data in scriptResult
Hello,
I'm using indesign server 2023 with SOAP to send and get back data from documents.
Using JSX it worked fine and I was able to get back the data in the response within the <scriptResult> tag.
Since I switched to UXP and idjs the <scriptResult> always comes back empty even though <errorNumber> is 0.
Even a script like the one below or just a "return 1" script does not seem to work for the result.
os = require('os');
app.consoleout(os.release());
script = require('uxp').script;
app.consoleout(JSON.stringify(script.executionContext));
return script.setResult("Hello World");
Did anyone successfully use SOAP and got back a response with the correct data ?
Thanks for the help
