Configure Connection Pools

Use the REST API endpoint below to configure connection reuse pools to minimize communication overhead with a Session Border Controller or Serving Call Session Control Function (S-CSCF). 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/connectionReusePoolCreateForm

For the POST or DELETE:

/management/weblogic/latest/edit/customResources/sipserver/customResource/connectionReusePools

HTTP Methods

  • GET
  • POST
  • DELETE

Parameters

Table 17-13 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:
.../connectionReusePoolCreateForm?links=none
fields Set to an enumerated list of the fields to return. For example:
.../connectionReusePools?links=none&fields=destinationPort

Examples

Example 17-40 Get the Connection Reuse Pools CreateForm

curl -u weblogic:<password> \
  'http://10.0.0.1:7001/management/weblogic/latest/edit/customResources/sipserver/customResource/connectionReusePoolCreateForm'

Example response:

{
    "links": [
        {
            "rel": "parent",
            "href": "http://10.0.0.1:7001/management/weblogic/latest/edit/customResources/sipserver/customResource"
        },
        {
            "rel": "self",
            "href": "http://10.0.0.1:7001/management/weblogic/latest/edit/customResources/sipserver/customResource/connectionReusePoolCreateForm"
        },
        {
            "rel": "canonical",
            "href": "http://10.0.0.1:7001/management/weblogic/latest/edit/customResources/sipserver/customResource/connectionReusePoolCreateForm"
        },
        {
            "rel": "create",
            "href": "http://10.0.0.1:7001/management/weblogic/latest/edit/customResources/sipserver/customResource/connectionReusePools"
        }
    ],
    "destinationPort": 0,
    "maximumConnections": 0,
    "destination": null,
    "poolName": null
}

Example 17-41 Create a custom resource

Send a POST request to create the connection reuse pool.

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

The contents of config.json:

{   
  "destinationPort": 35071,
  "maximumConnections": 1,
  "destination": "10.10.10.11",
  "poolName": "ConnPool-1"
}

Example 17-42 Retrieve the created resource

After the resource has been created, send a GET request to view its links and attributes.

curl -u weblogic:<password> \
  'http://10.0.0.1:7001/management/weblogic/latest/edit/customResources/sipserver/customResource/connectionReusePools'

An example response:

{
    "links": [
        {
            "rel": "parent",
            "href": "http://10.0.0.1:7001/management/weblogic/latest/edit/customResources/sipserver/customResource"
        },
        {
            "rel": "self",
            "href": "http://10.0.0.1:7001/management/weblogic/latest/edit/customResources/sipserver/customResource/connectionReusePools"
        },
        {
            "rel": "canonical",
            "href": "http://10.0.0.1:7001/management/weblogic/latest/edit/customResources/sipserver/customResource/connectionReusePools"
        },
        {
            "rel": "create-form",
            "href": "http://10.0.0.1:7001/management/weblogic/latest/edit/customResources/sipserver/customResource/connectionReusePoolCreateForm"
        }
    ],
    "items": [
        {
            "links": [
                {
                    "rel": "self",
                    "href": "http://10.0.0.1:7001/management/weblogic/latest/edit/customResources/sipserver/customResource/connectionReusePools/ConnPool-1"
                },
                {
                    "rel": "canonical",
                    "href": "http://10.0.0.1:7001/management/weblogic/latest/edit/customResources/sipserver/customResource/connectionReusePools/ConnPool-1"
                }
            ],
            "identity": [
                "customResources",
                "sipserver",
                "customResource",
                "connectionReusePools",
                "ConnPool-1"
            ],
            "destinationPort": 35071,
            "maximumConnections": 1,
            "destination": "10.10.10.11",
            "poolName": "ConnPool-1"
        }
    ]
}