Configure Cluster Load Balancer

Use the REST API endpoint below to configure a cluster load balancer. 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/clusterLoadbalancerMapCreateForm

For the POST or DELETE:

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

HTTP Methods

  • GET
  • POST
  • DELETE

Parameters

Table 17-14 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:
.../clusterLoadbalancerMapCreateForm?links=none
fields Set to an enumerated list of the fields to return. For example:
.../clusterLoadbalancerMaps?links=none&fields=sipUri

Examples

Example 17-43 Get the CreateForm

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

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/clusterLoadbalancerMapCreateForm"
        },
        {
            "rel": "canonical",
            "href": "http://10.0.0.1:7001/management/weblogic/latest/edit/customResources/sipserver/customResource/clusterLoadbalancerMapCreateForm"
        },
        {
            "rel": "create",
            "href": "http://10.0.0.1:7001/management/weblogic/latest/edit/customResources/sipserver/customResource/clusterLoadbalancerMaps"
        }
    ],
    "sipUri": null,
    "clusterName": null
}

Example 17-44 Create a custom resource

Send a POST request to create the SIP security element.

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

The contents of config.json:

{   
  "sipUri": "sip:oracle.com",
  "clusterName": "Cluster-0"
}

Example 17-45 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/clusterLoadbalancerMaps'

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/clusterLoadbalancerMaps"
        },
        {
            "rel": "canonical",
            "href": "http://10.0.0.1:7001/management/weblogic/latest/edit/customResources/sipserver/customResource/clusterLoadbalancerMaps"
        },
        {
            "rel": "create-form",
            "href": "http://10.0.0.1:7001/management/weblogic/latest/edit/customResources/sipserver/customResource/clusterLoadbalancerMapCreateForm"
        }
    ],
    "items": [
        {
            "links": [
                {
                    "rel": "self",
                    "href": "http://10.0.0.1:7001/management/weblogic/latest/edit/customResources/sipserver/customResource/clusterLoadbalancerMaps/Cluster-0"
                },
                {
                    "rel": "canonical",
                    "href": "http://10.0.0.1:7001/management/weblogic/latest/edit/customResources/sipserver/customResource/clusterLoadbalancerMaps/Cluster-0"
                }
            ],
            "identity": [
                "customResources",
                "sipserver",
                "customResource",
                "clusterLoadbalancerMaps",
                "Cluster-0"
            ],
            "clusterName": "Cluster-0",
            "name": null,
            "sipUri": "sip:oracle.com"
        }
    ]
}