Description

Reset the runtime properties of a SOAP service in the web application of a deployed ABL application back to the default values.

HTTP Operation

DELETE

URI

host_name:port/oemanager/applications/ABL_app_name/webapps/Web_app_name/transports/soap/oeservices/SoapServiceName/properties

Content-Type

application/vnd.progress+json

Response codes

200 Success
500 Unexpected Server Error

Command-line example

curl -X DELETE -u username:password -v
http://localhost:16680/oemanager/server/oeservices/ROOT/transports/soap/service/TestService2/properties
-H "Content-Type: application/vnd.progress+json"

ABL HTTP client example

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

resp = OpenEdge.Net.HTTP.ClientBuilder:Build():Client
   :Execute(OpenEdge.Net.HTTP.RequestBuilder
      :Delete('http://localhost:16680/oemanager/server/oeservices/ROOT/transports/soap/service/TestService2/properties')
      :UsingBasicAuthentication(new OpenEdge.Net.HTTP.Credentials('PASOE Manager Application', 'username', 'password'))
      :Request
   ).

Response body example

{   
        "result": "",   
        "operation": "RESET SOAP TRANSPORT PROPERTIES",   
        "versionStr": null,   
        "versionNo": 1,   
        "errmsg": "", 
        "outcome": "SUCCESS"
}