NetworkAccessPointMBean sips
The networkAccessPoints/sips
endpoint lists all the
channels available for the secured SIP ports.
URL Syntax
For a GET:
/management/weblogic/latest/serverConfig/servers/<server_name>/networkAccessPoints/sips
For a POST:
/management/weblogic/latest/edit/servers/<server_name>/networkAccessPoints/sips
HTTP Methods
- GET
- POST
Examples
Example 17-7 Access the networkAccessPoints/sips endpoint
curl -u '<user>:<password>' \
"http://10.0.0.1:7001/management/weblogic/latest/serverConfig/servers/managed-server1/networkAccessPoints/sips"
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\/sips"
},
{
"rel": "canonical",
"href": "http:\/\/10.0.0.1:7001\/management\/weblogic\/latest\/serverConfig\/servers\/managed-server1\/networkAccessPoints\/sips"
}
],
"identity": [
"servers",
"managed-server1",
"networkAccessPoints",
"sips"
],
"hostnameVerificationIgnored": false,
"httpEnabledForThisProtocol": false,
"notes": null,
"hostnameVerifier": null,
"publicPort": 5061,
"idleConnectionTimeout": 65,
"resolveDNSName": false,
"privateKeyAlias": null,
"type": "NetworkAccessPoint",
"inboundCertificateValidation": "BuiltinSSLValidationOnly",
"customPrivateKeyPassPhrase": null,
"proxyPort": 80,
"protocol": "sips",
"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": 25000,
"name": "sips",
"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": 5061,
"customIdentityKeyStoreType": null
}
Example 17-8 Update the networkAccessPoints endpoint
The command below shows how to update the publicPort parameter for this MBean.
Note:
TheserverConfig
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/sips"