jsonString | String JSON content in a string to convert to a document (IData object). | |
decodeRealAsDouble | String Optional. Converts real numbers from jsonString to either a Float or Double Java wrapper type. Set to: true to convert real numbers to Double Java wrapper types. This is the default. false to convert real numbers to Float Java wrapper types. Note: The decodeRealAsDouble parameter overrides the value specified by the watt.server.json.decodeRealAsDouble server configuration parameter. If no value is supplied for decodeRealAsDouble, Integration Serveruses the value set in watt.server.json.decodeRealAsDouble. For more information about watt.server.json.decodeRealAsDouble, see webMethods Integration Server Administrator’s Guide. | |
decodeRealAsString | String Optional. Converts real numbers in the jsonStream to String. Set to: true to convert real numbers to String. false to not convert real numbers to String. The real numbers are then converted to either Float or Double Java wrapper type depending on the values specified in decodeRealAsDouble. This is the default. Note: The decodeRealAsString parameter overrides the value specified by the watt.server.json.decodeRealAsString server configuration parameter. If no value is supplied for decodeRealAsString, Integration Server uses the value set in watt.server.json.decodeRealAsString. For more information about watt.server.json.decodeRealAsString, see webMethods Integration Server Administrator’s Guide. | |
decodeIntegerAsLong | String Optional. Converts integers from jsonString to either a Long or Integer Java wrapper type. Set to: true to convert integers to Long Java wrapper types. This is the default. false to convert integers to Integer Java wrapper types. Note: The decodeRealAsDouble parameter overrides the value specified by the watt.server.json.decodeIntegerAsLong server configuration parameter. If no value is supplied for decodeIntegerAsLong, Integration Server uses the value specified in the watt.server.json.decodeIntegerAsLong property. For more information about watt.server.json.decodeIntegerAsLong, see webMethods Integration Server Administrator’s Guide. | |
decodeNullRootAsEmpty | String Optional. Converts a null value that Integration Server retrieves from JSON content to either IData or empty IData. Set to: true to convert the null value to empty IData. The subsequent encoding of empty IData creates a JSON text of “{}”. This JSON content is different from the original JSON content (null) as the original null value gets converted to JSON text of "{}". false to convert the null value to IData. This is the default. |
document | Document Document (IData object) resulting from the conversion of jsonString. |