Invoking a Configuration Service
Admin Console provides an interface to define a set of key value pairs at the server level and the client level. You can find the interface at Quantum Fabric Console > Admin Console > Settings > Configurable Parameters > Client App Properties.
You can configure the client specific properties in the server, so that client application can pull and consume the updated properties at runtime.
// Sample code to fetch the client app properties from server. function configTest() { var config = client.getConfigurationService(); config.getAllClientAppProperties( function(res) { kony.print("client key value pairs retrieved : " + JSON.stringify(res)); }, function(err) { kony.print(" Failed to retrieve client key value pairs : " + JSON.stringify(err)); } ); }