I want to use REST because it is so much faster, even on localhost. I don't know why and have posted about this before; well, I commented on a post where somebody has the same problem. It takes a minimum of 30 seconds to login. It takes the same to save a function. The post you pointed me to gave me what I needed. It all boils down to using POST with JSON and `this.getProperty("prop_name", "default_value")` to get the property. I've only done a proof of concept using strings. It would be so nice if this supported server side JS. But, yeah: this.getProperty("prop") was the key to moving forward. I just wanted to know how for future ops as well - especially setup for automation testing.
/* 1st form
var inn = this.getInnovator();
return inn.newResult("Hello World");
*/
// 2nd form - this.getProperty can get from a JSON property passed into call.
Innovator inn = this.getInnovator();
string to = this.getProperty("hello_to", "World"); // default to "World"
return inn.newResult("Hello " + to + "!");