Configure Overload Protection Event Handlers

Use the REST API endpoint below to configure the overload protection event handlers. 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/eventHandlers/eventHandlerCreateForm

For the POST or DELETE:

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

HTTP Methods

  • GET
  • POST
  • DELETE

Parameters

Table 17-8 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:
.../eventHandlers/eventHandlerCreateForm?links=create
fields Set to an enumerated list of the fields to return. For example:
.../eventHandlers/eventHandlerCreateForm?links=none&fields=enabled

Examples

Example 17-25 Get the Overload Protection Event Handlers CreateForm

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

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

Example response:

{
    "attributes": null,
    "eventHandlerName": null,
    "name": null
}

Example 17-26 Create an Overload Protection Event Handler

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/eventHandlers/eventHandlers'

The contents of config.json:

{   
  "name": "control-traffic-handler",
  "attributes": "ControlTrafficHandler",
  "eventHandlerName": "com.bea.wcp.sip.engine.server.olp.handler.ControlTrafficHandler"
}

Example 17-27 Get the Attributes of the Overload Protection Event Handler

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

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

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/eventHandlers/eventHandlers/control-traffic-handler'

An examples response:

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