Try OpenEdge Now
skip to main content
Administration Guide
REST API Reference for oemanager.war : Transport management : List deployed services (SOAP/REST)
 

List deployed services (SOAP/REST)

Description

Get a list all the deployed SOAP or REST services in a Web application deployed in an ABL application.

HTTP Operation

GET

URI

//host_name:port/oemanager/applications/App_name/webapps/Web_app_name/transports/{soap|rest}/oeservices

Media type

application/vnd.progress+json

Response codes

200 Success
500 Unexpected Server Error

Request body

NA

Command-line example (SOAP)

curl -X GET -v http://localhost:16680/oemanager/applications/pas1/webapps/ROOT/transports/soap/oeservices

Response body example(SOAP)

{
"result": {
"OESoapServiceDesc": [
{
"archiveLocation": "/webapps/ROOT/WEB-INF/adapters/soap/ROOT/SimpleTest.wsdl",
"archiveName": "SimpleTest.wsm",
"accessUrl": "urn:nxgas:simpletestsf",
"oetype": "SOAP_DESCRIPTOR",
"version": "11.5.0",
"description": "PAS OpenEdge SOAP Service Artifact",
"name": "SimpleTest",
"state": "ENABLED",
"type": "OPENEDGE"
}
]
},
"operation": "GET SOAP TRANSPORT DESCRIPTORS",
"versionStr": "PASOE 11.5.0",
"versionNo": 1,
"outcome": "SUCCESS",
"errmsg": ""
}

Command-line example (REST)

curl -X GET -v http://localhost:16680/oemanager/applications/pas1/webapps/ROOT/transports/rest/oeservices

Response body example(REST)

{
"result": {
"OERestServiceDesc": [
{
"archiveLocation": "/webapps/ROOT/WEB-INF/adapters/rest/_oepingService/_oepingService.paar",
"archiveName": "_oepingService.paar",
"accessUrl": "/rest/_oepingService",
"oetype": "REST_DESCRIPTOR",
"version": "11.5.0",
"description": "PAS OpenEdge REST Service Descriptor",
"name": "_oepingService",
"type": "OPENEDGE",
"uri": "http://localhost:16680/rest/_oepingService"
}
]
},
"operation": "GET REST TRANSPORT DESCRIPTORS",
"versionStr": "PASOE 11.5.0",
"versionNo": 1,
"outcome": "SUCCESS",
"errmsg": ""
}