Configure Application Router
Use the REST API endpoint below to configure the Application Router.
URL Syntax
For a GET:
/management/weblogic/latest/serverConfig/customResources/sipserver/customResource/appRouter
For a POST:
management/weblogic/latest/edit/customResources/sipserver/customResource/appRouter
HTTP Methods
- GET
- POST
- DELETE
Parameters
Table 17-3 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-14 Get the Application Router configuration
curl -u 'weblogic:<password>' \
"http://10.0.0.1:7001/management/weblogic/latest/serverConfig/customResources/sipserver/customResource/appRouter"
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/appRouter"
},
{
"rel": "canonical",
"href": "http://10.0.0.1:7001/management/weblogic/latest/edit/customResources/sipserver/customResource/appRouter"
},
{
"rel": "create-form",
"href": "http://10.0.0.1:7001/management/weblogic/latest/edit/customResources/sipserver/customResource/appRouterCreateForm"
}
],
"identity": [
"customResources",
"sipserver",
"customResource",
"appRouter"
],
"useJsonForm": false,
"appRouterConfigData": "",
"jsonFileName": "",
"name": null,
"useCustomAppRouter": false,
"customAppRouterJarFileName": "",
"defaultApplicationName": ""
}
Example 17-15 Create a custom resource
Send a POST request to create a custom Application Router.
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/appRouter"
The contents of config.json:
{
"useJsonForm": false,
"appRouterConfigData": "",
"jsonFileName": "appRouter.json",
"useCustomAppRouter": false,
"customAppRouterJarFileName": "customRouter.jar",
"defaultApplicationName": "AppRouter"
}