Configure SIP Security

Use the REST API endpoint below to configure SIP security. 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/sipSecurityCreateForm

For the POST or DELETE:

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

HTTP Methods

  • GET
  • POST
  • DELETE

Parameters

Table 17-11 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:
.../sipSecurityCreateForm?links=parent
fields Set to an enumerated list of the fields to return. For example:
.../sipSecurity?links=none&fields=trustedAuthenticationHosts

Examples

Example 17-34 Get the SIP Security CreateForm

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

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/sipSecurityCreateForm"
        },
        {
            "rel": "canonical",
            "href": "http://10.0.0.1:7001/management/weblogic/latest/edit/customResources/sipserver/customResource/sipSecurityCreateForm"
        },
        {
            "rel": "create",
            "href": "http://10.0.0.1:7001/management/weblogic/latest/edit/customResources/sipserver/customResource/sipSecurity"
        }
    ],
    "trustedAuthenticationHosts": null,
    "trustedChargingHosts": null
}

Example 17-35 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/sipSecurity'

The contents of config.json:

{
 "trustedAuthenticationHosts": [10.0.0.2],
 "trustedChargingHosts": [10.0.0.2]
}

Example 17-36 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/domainConfig/customResources/sipserver/customResource/sipSecurity'

An example response:

{
    "links": [
        {
            "rel": "parent",
            "href": "http://10.0.0.1:7001/management/weblogic/latest/domainConfig/customResources/sipserver/customResource"
        },
        {
            "rel": "self",
            "href": "http://10.0.0.1:7001/management/weblogic/latest/domainConfig/customResources/sipserver/customResource/sipSecurity"
        },
        {
            "rel": "canonical",
            "href": "http://10.0.0.1:7001/management/weblogic/latest/domainConfig/customResources/sipserver/customResource/sipSecurity"
        }
    ],
    "identity": [
        "customResources",
        "sipserver",
        "customResource",
        "sipSecurity"
    ],
    "trustedAuthenticationHosts": [
        "10.0.0.2"
    ],
    "name": null,
    "trustedChargingHosts": [
        "10.0.0.2"
    ]
}