Configure Overload Protection Actions

Use the REST API endpoint below to configure the overload protection actions. A GET request to the CreateForm URL retrieves both the default parameters and the create URL. Send a POST request to the create URL to create the child MBean.

URL Syntax

For the GET:

/management/weblogic/latest/edit/customResources/sipserver/customResource/overloadProtection/actions/actionCreateForm

For the POST or DELETE:

/management/weblogic/latest/edit/customResources/sipserver/customResource/overloadProtection/actions/actions

HTTP Methods

  • GET
  • POST
  • DELETE

Parameters

Table 17-9 URL Parameters

Names Description
links Set to none if you want to remove the links from the response. Set to an enumerated list of the links to return. For example:
.../actions/actionCreateForm?links=create
fields Set to an enumerated list of the fields to return. For example:
.../actions/actionCreateForm?links=none&fields=enabled

Examples

Example 17-28 Get the Overload Protection Actions CreateForm

The example below returns the required parameters to create the overload protection action without any of the links.

curl -u weblogic:<password> \
  'http://10.0.0.1:7001/management/weblogic/latest/edit/customResources/sipserver/customResource/overloadProtection/actions/actionCreateForm?links=none'

Example response:

{
    "actionType": null,
    "attributes": null,
    "eventHandler": null,
    "actionName": null,
    "name": null
}

Example 17-29 Create an Overload Protection Action

curl -X POST \
  -d@config.xml \
  -u weblogic:<password> \
  -H 'X-Requested-By: MyClient' \
  -H 'Accept: application/json' \
  -H 'Content-Type: application/json' \
  'http://10.0.0.1:7001/management/weblogic/latest/edit/customResources/sipserver/customResource/overloadProtection/actions/actions'

The contents of config.json:

{   
  "actionType": "reject-traffic",
  "name": "reject",
  "attributes": "ControlTrafficHandler",
  "eventHandler": "com.bea.wcp.sip.engine.server.olp.handler.ControlTrafficHandler",
  "actionName": "reject"
}

Example 17-30 Get the Attributes of the Overload Protection Action

First, make a GET request to the actions/actions URL to retrieve links at which you can view actions information.

curl -u 'weblogic:<password>' \
  "http://10.0.0.1:7001/management/weblogic/latest/serverConfig/customResources/sipserver/customResource/overloadProtection/actions/actions"

Next, make a GET request to the links returned under the items parameter:

curl -u weblogic:<password> \
  'http://10.0.0.1:7001/management/weblogic/latest/serverConfig/customResources/sipserver/customResource/overloadProtection/actions/actions/reject'

An examples response:

{
    "links": [
        {
            "rel": "parent",
            "href": "http://10.0.0.1:7001/management/weblogic/latest/serverConfig/customResources/sipserver/customResource/overloadProtection/actions/actions"
        },
        {
            "rel": "self",
            "href": "http://10.0.0.1:7001/management/weblogic/latest/serverConfig/customResources/sipserver/customResource/overloadProtection/actions/actions/reject"
        },
        {
            "rel": "canonical",
            "href": "http://10.0.0.1:7001/management/weblogic/latest/serverConfig/customResources/sipserver/customResource/overloadProtection/actions/actions/reject"
        }
    ],
    "identity": [
        "customResources",
        "sipserver",
        "customResource",
        "overloadProtection",
        "actions",
        "actions",
        "reject"
    ],
    "actionType": "reject-traffic",
    "name": "reject",
    "attributes": "ControlTrafficHandler",
    "eventHandler": "com.bea.wcp.sip.engine.server.olp.handler.ControlTrafficHandler",
    "actionName": "reject"
}