Get topics service properties
Your application can retrieve the Oracle Empirica Topics server version and other properties by using the getTopicsServiceProperties task.
The getTopicsServiceProperties task returns the TopicsServiceProperties value object with the following fields:serverVersion—The version of the Oracle Empirica Topics server. If your API version is greater than the Oracle Empirica Topics server version, you might experience compatibility issues. attachMaxRows—Defines the maximum number of rows in a TABLE attachment that your application can add. Your application is responsible for truncating the rows in a table to this value before sending it to the server.attachMaxMegabytes—Defines the maximum megabytes of any attachment. The topics service throws a TopicsServiceException if your application attempts to add an attachment greater than the attachMaxMegabytes value in megabytes.
TopicsServiceProperties JSON
{
"serverVersion": “integer”,
"attachMaxRows": “integer”,
"attachMaxMegabytes": “integer”
}
Parent topic: Tasks