Description

Query the conf/openedge.properties file to get the configuration properties of an application. The information is specified in the AppServer.SessMgr.App_name section of openedge.properties.

HTTP Operation

GET

URI

//host_name:port/oemanager/applications/ABL_app_name/properties

Media type

application/vnd.progress+json

Response codes

200 Success
404 Resource Not Found
500 Unexpected Server Error

Command-line example

curl -X GET -u username:password -v http://localhost:16680/oemanager/applications/oepas1/properties

ABL HTTP client example

define variable resp as OpenEdge.Net.HTTP.IHttpResponse.

resp = OpenEdge.Net.HTTP.ClientBuilder:Build():Client
   :Execute(OpenEdge.Net.HTTP.RequestBuilder
      :Get('http://localhost:16680/oemanager/applications/oepas1/properties')
      :UsingBasicAuthentication(new OpenEdge.Net.HTTP.Credentials('PASOE Manager Application', 'username', 'password'))
      :Request
   ).

Request body example

NA

Response body example

{
   "operation":"GET BROKER PROPERTIES",
   "outcome":"SUCCESS",
   "result":{
      "defaultAgentWaitAfterStop":"30000",
      "allowRuntimeUpdates":"0",
      "idleConnectionTimeout":"300000",
      "brkrDebuggerEnabled":"0",
      "defrdLoggingLevel":"0",
      "idleResourceTimeout":"0",
      "publishDir":"C:\/OpenEdge\/WRK\/oepas1\/openedge",
      "statusEnabled":"1",
      "connectionWaitTimeout":"3000",
      "requestWaitTimeout":"15000",
      "maxConnectionsPerAgent":"200",
      "collectMetrics":"3",
      "updateProperties":"false",
      "agentLogFile":"C:\\OpenEdge\\WRK\\oepas1\/logs\/oepas1.agent.{yyyy-mm-dd}.log",
      "maxABLSessionsPerAgent":"200",
      "socketTimeout":"3000",
      "agentStartLimit":"1",
      "defaultAgentWaitToFinish":"30000",
      "ipver":"IPv4",
      "defrdLogNumLines":"0",
      "agentExecFile":"C:\\Progress\\OpenEdge\/bin\/_mproapsv",
      "defrdLogEntryTypes":"",
      "idleAgentTimeout":"1800000",
      "agentLogEntryTypes":"ASPlumbing,DB.Connects",
      "minAgents":"1",
      "agentStartupParam":"-T \"C:\\OpenEdge\\WRK\\oepas1\/temp\" -db C:\\OpenEdge\\WRK\\database\\sports2020.db",
      "maxAgents":"2",
      "agentListenerTimeout":"300000",
      "numInitialAgents":"1",
      "agentLoggingLevel":"2",
      "agentWatchdogTimeout":"3000",
      "idleSessionTimeout":"300000",
      "applications":"oepas1"
   },
   "errmsg":"",
   "versionStr":"v12.1.0 ( 2019-08-07 )",
   "versionNo":1
}