NetworkAccessPointMBean sip

The networkAccessPoints/sip endpoint lists all the channels available for a SIP port.

URL Syntax

For a GET:

/management/weblogic/latest/serverConfig/servers/<server_name>/networkAccessPoints/sip

For a POST:

/management/weblogic/latest/edit/servers/<server_name>/networkAccessPoints/sip

HTTP Methods

  • GET
  • POST

Examples

Example 17-5 Access the networkAccessPoints endpoint

curl -u '<user>:<password>' \
  "http://10.0.0.1:7001/management/weblogic/latest/serverConfig/servers/managed-server1/networkAccessPoints/sip"

Example reponse:

{
    "links": [
        {
            "rel": "parent",
            "href": "http:\/\/10.0.0.1:7001\/management\/weblogic\/latest\/serverConfig\/servers\/managed-server1\/networkAccessPoints"
        },
        {
            "rel": "self",
            "href": "http:\/\/10.0.0.1:7001\/management\/weblogic\/latest\/serverConfig\/servers\/managed-server1\/networkAccessPoints\/sip"
        },
        {
            "rel": "canonical",
            "href": "http:\/\/10.0.0.1:7001\/management\/weblogic\/latest\/serverConfig\/servers\/managed-server1\/networkAccessPoints\/sip"
        }
    ],
    "identity": [
        "servers",
        "managed-server1",
        "networkAccessPoints",
        "sip"
    ],
    "hostnameVerificationIgnored": false,
    "httpEnabledForThisProtocol": false,
    "notes": null,
    "hostnameVerifier": null,
    "publicPort": 5060,
    "idleConnectionTimeout": 65,
    "resolveDNSName": false,
    "privateKeyAlias": null,
    "type": "NetworkAccessPoint",
    "inboundCertificateValidation": "BuiltinSSLValidationOnly",
    "customPrivateKeyPassPhrase": null,
    "proxyPort": 80,
    "protocol": "sip",
    "tunnelingClientTimeoutSecs": 40,
    "tunnelingEnabled": false,
    "listenAddress": "sample-domain1-managed-server1",
    "acceptBacklog": 300,
    "connectTimeout": 0,
    "id": 0,
    "maxMessageSize": 10000000,
    "proxyAddress": null,
    "outboundPrivateKeyAlias": null,
    "outboundPrivateKeyEnabled": false,
    "twoWaySSLEnabled": false,
    "tags": [],
    "outboundCertificateValidation": "BuiltinSSLValidationOnly",
    "completeMessageTimeout": 60,
    "clientCertificateEnforced": false,
    "loginTimeoutMillis": 5000,
    "name": "sip",
    "outboundPrivateKeyPassPhrase": null,
    "publicAddress": "sample-domain1-managed-server1",
    "enabled": true,
    "clusterAddress": "sample-domain1-managed-server1",
    "timeoutConnectionWithPendingResponses": false,
    "customPrivateKeyAlias": null,
    "tunnelingClientPingSecs": 45,
    "allowUnencryptedNullCipher": false,
    "useFastSerialization": false,
    "dynamicallyCreated": false,
    "privateKeyPassPhrase": null,
    "SSLv2HelloEnabled": true,
    "customIdentityKeyStoreFileName": null,
    "excludedCiphersuites": [
        "TLS_RSA_*",
        "*_CBC_*"
    ],
    "maxConnectedClients": 2147483647,
    "customIdentityKeyStorePassPhrase": null,
    "ciphersuites": [],
    "outboundEnabled": true,
    "channelIdentityCustomized": false,
    "clientInitSecureRenegotiationAccepted": false,
    "minimumTLSProtocolVersion": "TLSv1.2",
    "channelWeight": 50,
    "maxBackoffBetweenFailures": 10000,
    "listenPort": 5060,
    "customIdentityKeyStoreType": null
}

Example 17-6 Update the networkAccessPoints endpoint

The command below shows how to update the publicPort parameter for this MBean.

Note:

The serverConfig portion of the URL changes to edit when sending a POST to update the configuration.
curl -X POST \
  -u '<user>:<password>' \
  -d '{"publicPort":5062}' \
  -H "X-Requested-By: MyClient" \
  -H "Accept: application/json" \
  -H "Content-Type: application/json" \
  "http://10.0.0.1/management/weblogic/latest/edit/servers/managed-server1/networkAccessPoints/sip"