Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • service.xml Files loaded during the session startup
  • factory.xml Files providing configuration to the default IFactory implementation
  • CCS Managers loaded by the IStartupManager
  • Database Connections
  • Database Aliases 
  • Name of the Application Config file (.applicationsettings, .restapplicationsettings)
  • Static Properties (e.g. FrameworkSettings:DebugMode)
  • Custom Log Entries
  • SESSION:EXPORT

...

  • Either as a single JSON string value, providing the name of the JSON configuration file (e.g. .applicationsettings or .restapplicationsettings)
  • As a JSON Object, providing name/value pairs with the configuration values, basically embedding the .applicationsettings/.restapplicationsettings file into the JSON configuration file. 

Database Connections

Code Block
languagejs
"inheritDatabases": false,
"databases": {
    "sports2000": "-db C:/Work/SmartComponents4NET/121_64/DB/Sports2000/sports2000.db",
    "icfdb": "-db C:/Work/SmartComponents4NET/121_64/DB/icfdb/icfdb",
    "SmartDB": "-db c:/Work/SmartComponents4NET/121_64/DB/SmartDB/SmartDB"    
}

Services

The loadServices array can define services in two ways, combinations are supported:

...