Try OpenEdge Now
skip to main content
Administration Guide
REST API Reference for oemanager.war : Session management : Get current request information
 

Get current request information

Description

Query an ABL application to get a list of all the requests currently in process.

HTTP Operation

GET

URI

//host_name:port/oemanager/applications/ABL_app_name/requests

Media type

application/vnd.progress+json

Response codes

200 Success
500 Unexpected Server Error

Command-line example

curl -X GET -v http://localhost:16680/oemanager/applications/oepas1/requests

Request body example

NA

Response body example

{
"operation":"GET ACTIVE REQUESTS ON SERVER",
"result":
{
"Request":
[
{
"requestElapsedTime":1889,
"requestStartTimeStamp":"2014-09-17T10:11:26.934-0400",
"requestState":"RUNNING",
"requestID":"xfJqPACGU4jqE4pd0Auzwg",
"sessionID":"8DvBtOplRHijAj7NcSAQKw"
}
]
},
"outcome":"SUCCESS",
"errmsg":"",
"versionStr":"PASOE 11.5.0",
"versionNo":1
}