Versions Compared

Key

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

Introduction 

This is the Tenant Key Configuration (in provision configuration) provides is a configuration by the environment. SOAJS gateway makes common fields and service-specific configurations available to service.configuration by environment. This is the JSON object you can edit under key configuration from the SOAJS Console UI. The config is an object with a sub-object per environments where you can add a "commonFields" object and an object per service name. for example "urac" for URAC service. The SOAJS gateway makes "commonFields" and  the service name object of the request service available in the header of the request aka soajsinjectedobject. 

Configuration Sample

Code Block
titleConfiguration sample
linenumberstrue
collapsetrue
"config": {	
	"%env_name%": {
		"commonFields": {...},
		"oauth": {...},
		"multitenant": {...}
	}
}

...