JSON_CONTENT
or the JSON_CONTENT_FILE
parameter; these correspond to the JSON to parse.
JsonToDataLogLevel
parameter in the web.config
file to 0
to deactivate logs, 1
for error logs, 2
for information logs, or 3
for debug logs; the default value is 0
.
JSON_CONTENT
JSON_CONTENT_FILE
person.address.street
DATA_STREET
160 Guy Street
person.address.zipcode
DATA_ZIPCODE
J4G 1U4
person.age
DATA_AGE
30
person.name
DATA_NAME
John
|
(using the APP_JSONPATH_DELIMITER
IN parameter). At the same time, we are also getting Elizabeth's age and date of birth. To get the information, the following parameters must be defined:APP_JSONPATH_DELIMITER
|
PARAM1__JSONPATH
person.children[?(@.name == 'Charles')].children[*].children[?(@.age > 7)].name
DATA1_VALUE
(value will be: George|Charlotte
)AGE__JSONPATH
$.person.age
AGE
AGE_VALUE
(value will be: 85
)DOB__JSONPATH
$.person.dob
DOB
DOB_VALUE
(value will be: 1937-09-23T00:00:00Z
)PARAM1__JSONPATH
parameter name, the PARAM1
name is not relevant, but it must be followed by the __JSONPATH
suffix (two underscores are used in the suffix).
PARAM1__JSONPATH
parameter as in the example above).
AGE__JSONPATH
and AGE
parameters as in the example above).
APP_JSONPATH_DELIMITER
is a comma (,
) when this parameter is not defined.