Software AG Products 10.7 | Integrating On-Premises and Cloud Applications | Integration Server Built-In Services | JDBC Folder | Summary of Elements in this Folder | pub.jdbc:getPoolInfo
 
pub.jdbc:getPoolInfo
WmPublic. Returns run-time information about the JDBC pool associated with a specified functional alias.
Input Parameters
functionalAlias
String Name of the Integration Server functional alias for which you want to obtain JDBC information.
getConnectionWait
String Optional. Number of milliseconds the service will wait to obtain a connection to a JDBC connection pool. The default is 10 seconds (10000 milliseconds). If a connection is not obtained within this time, the service ends with a status of fail.
Output Parameters
minConnections
String The minimum number of connections the pool can have.
maxConnections
String The maximum number of connections the pool can have.
totalConnections
String The total number of connections currently in the pool. This number includes connections that are already in use and connections that are available for use.
availableConnections
String The number of connections that are available for use.
status
String A status indicating whether the service was able to connect to the pool. A value of:
*Active indicates that the service was able to connect to the JDBC pool.
*Inactive indicates that the service was not able to connect to the JDBC pool or an invalid functional alias was specified. If the attempt to connect to the JDBC pool failed with a SQLException, the service might throw an exception. If the service does not throw an exception, it will return a message in the message variable.
message
String. Conditional. Returned only if the service was not able to connect to the JDBC pool. Contains one of the following explanations:
Invalid functional alias.
An invalid or non-existent functional alias was specified with the functionalAlias input parameter.
No pool is associated with this function or the pool
may have failed during initialization.
A valid functional alias was specified, but no pool is associated with the functional alias, or the pool did not properly initialize.