Configure Proxy
Use the REST API endpoint below to configure the proxy.
URL Syntax
For a GET:
/management/weblogic/latest/serverConfig/customResources/sipserver/customResource/proxy
For a POST:
management/weblogic/latest/edit/customResources/sipserver/customResource/proxy
HTTP Methods
- GET
- POST
- DELETE
Parameters
Table 17-4 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:
|
fields | Set to an enumerated list of the fields to return.
For
example:
|
Examples
Example 17-16 Get the Application Router configuration
curl -u 'weblogic:<password>' \
"http://10.0.0.1:7001/management/weblogic/latest/serverConfig/customResources/sipserver/customResource/proxy"
Example response:
{
"links": [
{
"rel": "parent",
"href": "http://10.0.0.1:7001/management/weblogic/latest/serverConfig/customResources/sipserver/customResource"
},
{
"rel": "self",
"href": "http://10.0.0.1:7001/management/weblogic/latest/serverConfig/customResources/sipserver/customResource/proxy"
},
{
"rel": "canonical",
"href": "http://10.0.0.1:7001/management/weblogic/latest/serverConfig/customResources/sipserver/customResource/proxy"
}
],
"identity": [
"customResources",
"sipserver",
"customResource",
"proxy"
],
"uris": [],
"name": null,
"routingPolicy": "proxy",
"proxyRequireOptions": null
}
Example 17-17 Create a custom resource
Send a POST request to create a custom proxy.
curl -X POST \
-u 'weblogic:<password>' \
-d@config.json \
-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/proxy"
The contents of config.json:
{
"uris": ["sip:oracle.com"],
"name": null,
"routingPolicy": "proxy",
"proxyRequireOptions": "test"
}