1 Resources

This documentation describes the Oracle WebLogic Server RESTful server runtime resources that are used to monitor the Administration Server or a Managed Server.

For a complete listing of the WLS REST reference documents and descriptions of their use, see Administering Oracle WebLogic Server with RESTful Management Services.

/management/weblogic

This resource is used to access different versions (if applicable) of the resources that are in this domain.

There are two versions: 12.2.1.0 (deprecated) and latest, where latest is another name for 12.2.1.1.0. For future releases, latest always refers to the most recent release.

All new MBean features have been added to the 12.2.1.1.0 and the 12.2.1.0 REST resources. Any MBean features that were deprecated in 12.2.1.1.0, will still be available using the 12.2.1.0 REST URLs, but not the 12.2.1.1.0 REST URLs.

To always use the latest resources, make sure to use latest in the URLs.Note that this might require updating a client when moving to a newer version of WebLogic Server. To fix the version so that an update is not required, use 12.2.1.1.0 in the URLs.

The resource supports the following methods:

GET

Get this collection of weblogic.management.rest.bean.model.Version instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.rest.bean.model.Version entities.

This method can return the following links:

  • uri=/management/weblogic rel=canonical

    This resource.

  • uri=/management/weblogic/12.2.1.1.0 rel=current

    Access the latest version of the WLS resources in the this domain.

  • uri=/management/weblogic rel=self

    This resource.

Example

Example 1   View the versions collection.

This example uses the GET method to display the version instances in this collection.

Example Request

curl -v \
--user admin:admin123 \
-H X-Requested-By:MyClient \
-H Accept:application/json \
-X GET http://localhost:7001/management/weblogic

Example Response

HTTP/1.1 200 OK

Response Body:
{
    "links": [
        {
            "rel": "self",
            "href": "http:\//localhost:7001/management/weblogic"
        },
        {
            "rel": "canonical",
            "href": "http:\//localhost:7001/management/weblogic"
        },
        {
            "rel": "current",
            "href": "http:\//localhost:7001/management/weblogic/12.2.1.0"
        }
    ],
    "items": [{
        "links": [
            {
                "rel": "self",
                "href": "http:\//localhost:7001/management/12.2.1.0"
            },
            {
                "rel": "canonical",
                "href": "http:\//localhost:7001/management/12.2.1.0"
            }
        ],
        "version": "12.2.1.0",
        "isLatest": true,
        "lifecycle": "active"
    }]
}

/management/weblogic/{version}

This resource describes the resource trees that are used to manage a WebLogic Server domain and its managed servers. The resource trees mimic the bean trees in WLST and allow you to view and edit configuration and monitor runtime behavior.

The resource supports the following methods:

GET

Get this weblogic.management.rest.bean.model.Version instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.rest.bean.model.Version entity.

This method can return the following links:

  • uri=/management/weblogic/{version} rel=canonical

    This resource.

  • uri=/management/weblogic/{version}/currentUser rel=currentUser

  • uri=/management/weblogic/{version}/domainConfig rel=domainConfig

  • uri=/management/weblogic/{version}/domainRuntime rel=domainRuntime

  • uri=/management/weblogic/{version}/edit rel=edit

  • uri=/management/weblogic rel=parent

    The parent resource of this resource.

  • uri=/management/weblogic/{version} rel=self

    This resource.

  • uri=/management/weblogic/{version}/serverConfig rel=serverConfig

  • uri=/management/weblogic/{version}/serverRuntime rel=serverRuntime

Example

Example 1   View the latest version.

This example uses the GET method to display the latest version.

Example Request

curl -v \
--user admin:admin123 \
-H X-Requested-By:MyClient \
-H Accept:application/json \
-X GET http://localhost:7001/management/weblogic/latest

Example Response

HTTP/1.1 200 OK

Response Body:
{
    "links": [
        {
            "rel": "parent",
            "href": "http:\//localhost:7001/management/weblogic"
        },
        {
            "rel": "self",
            "href": "http:\//localhost:7001/management/weblogic/latest"
        },
        {
            "rel": "canonical",
            "href": "http:\//localhost:7001/management/weblogic/latest"
        },
        {
            "rel": "edit",
            "href": "http:\//localhost:7001/management/weblogic/latest/edit"
        },
        {
            "rel": "domainConfig",
            "href": "http:\//localhost:7001/management/weblogic/latest/domainConfig"
        },
        {
            "rel": "domainRuntime",
            "href": "http:\//localhost:7001/management/weblogic/latest/domainRuntime"
        },
        {
            "rel": "serverRuntime",
            "href": "http:\//localhost:7001/management/weblogic/latest/serverRuntime"
        },
        {
            "rel": "serverConfig",
            "href": "http:\//localhost:7001/management/weblogic/latest/serverConfig"
        },
        {
            "rel": "currentUser",
            "href": "http:\//localhost:7001/management/weblogic/latest/currentUser"
        }
    ],
    "version": "12.2.1.0",
    "isLatest": true,
    "lifecycle": "active"
}
Example 2   View a specific version.

This example uses the GET method to display a specific version.

Example Request

curl -v \
--user admin:admin123 \
-H X-Requested-By:MyClient \
-H Accept:application/json \
-X GET http://localhost:7001/management/weblogic/12.2.1.0

Example Response

HTTP/1.1 200 OK

Response Body:
{
    "links": [
        {
            "rel": "parent",
            "href": "http:\//localhost:7001/management/weblogic"
        },
        {
            "rel": "self",
            "href": "http:\//localhost:7001/management/weblogic/12.2.1.0"
        },
        {
            "rel": "canonical",
            "href": "http:\//localhost:7001/management/weblogic/12.2.1.0"
        },
        {
            "rel": "edit",
            "href": "http:\//localhost:7001/management/weblogic/12.2.1.0/edit"
        },
        {
            "rel": "domainConfig",
            "href": "http:\//localhost:7001/management/weblogic/12.2.1.0/domainConfig"
        },
        {
            "rel": "domainRuntime",
            "href": "http:\//localhost:7001/management/weblogic/12.2.1.0/domainRuntime"
        },
        {
            "rel": "serverRuntime",
            "href": "http:\//localhost:7001/management/weblogic/12.2.1.0/serverRuntime"
        },
        {
            "rel": "serverConfig",
            "href": "http:\//localhost:7001/management/weblogic/12.2.1.0/serverConfig"
        },
        {
            "rel": "currentUser",
            "href": "http:\//localhost:7001/management/weblogic/12.2.1.0/currentUser"
        }
    ],
    "version": "12.2.1.0",
    "isLatest": true,
    "lifecycle": "active"
}

/management/weblogic/{version}/currentUser

This resource represents an authenticated user in the domain.

The resource supports the following methods:

GET

Get this weblogic.management.rest.bean.model.CurrentUser instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.rest.bean.model.CurrentUser entity.

This method can return the following links:

Example

Example 1   Viewing the weblogic.management.rest.bean.model.CurrentUser Instance

This example uses the GET method to view this weblogic.management.rest.bean.model.CurrentUser instance.

Example Request

curl -v \
--user admin:admin123 \
-H X-Requested-By:MyClient \
-H Accept:application/json \
-X GET http://localhost:7001/management/weblogic/latest/currentUser

Example Response

HTTP/1.1 200 OK

Response Body:
{
    "links": [
        {
            "rel": "parent",
            "href": "http:\//localhost:7001/management/weblogic/latest"
        },
        {
            "rel": "self",
            "href": "http:\//localhost:7001/management/weblogic/latest/currentUser"
        },
        {
            "rel": "canonical",
            "href": "http:\//localhost:7001/management/weblogic/latest/currentUser"
        }
    ],
    "partitionId": "0",
    "partitionName": "DOMAIN",
    "user": "admin"
}

/management/weblogic/{version}/serverRuntime

This resource is used to monitor the administration server and managed servers.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.ServerRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.ServerRuntimeMBean entity.

This method can return the following links:

Example

Example 1   Viewing the weblogic.management.runtime.ServerRuntimeMBean Instance

This example uses the GET method to view this weblogic.management.runtime.ServerRuntimeMBean instance.

Example Request

curl -v \
--user admin:admin123 \
-H X-Requested-By:MyClient \
-H Accept:application/json \
-X GET http://localhost:7001/management/weblogic/latest/serverRuntime?fields=name,openSocketsCurrentCount,overallHealthState,administrationURL&links=self

Example Response

HTTP/1.1 200 OK

Response Body:
{
    "links": [{
        "rel": "self",
        "href": "http:\//localhost:7001/management/weblogic/latest/serverRuntime"
    }],
    "openSocketsCurrentCount": 1,
    "administrationURL": "t3:\//localhost:7001",
    "overallHealthState": {
        "state": "ok",
        "subsystemName": null,
        "partitionName": null,
        "symptoms": []
    },
    "name": "AdminServer"
}

/management/weblogic/{version}/serverRuntime/applicationRuntimes

This resource manages a collection of weblogic.management.runtime.ApplicationRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.ApplicationRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.runtime.ApplicationRuntimeMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}

This resource manages a weblogic.management.runtime.ApplicationRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.ApplicationRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.ApplicationRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/classLoaderRuntime

This resource manages a weblogic.management.runtime.ClassLoaderRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.ClassLoaderRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/classRedefinitionRuntime

This resource manages a com.bea.wls.redef.runtime.ClassRedefinitionRuntimeMBean instance.

The resource supports the following methods:

GET

Get this com.bea.wls.redef.runtime.ClassRedefinitionRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a com.bea.wls.redef.runtime.ClassRedefinitionRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/classRedefinitionRuntime/classRedefinitionTasks

This resource manages a collection of com.bea.wls.redef.runtime.ClassRedefinitionTaskRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/classRedefinitionRuntime/classRedefinitionTasks/{name}

This resource manages a com.bea.wls.redef.runtime.ClassRedefinitionTaskRuntimeMBean instance.

The resource supports the following methods:

GET

Get this com.bea.wls.redef.runtime.ClassRedefinitionTaskRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/classRedefinitionRuntime/classRedefinitionTasks/{name}/cancel

The resource supports the following methods:

POST

Attempts to cancel this task.

An exception is thrown to indicate failure to cancel the task. Not all tasks can be cancelled.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/classRedefinitionRuntime/classRedefinitionTasks/{name}/subTasks

This resource manages a collection of weblogic.management.runtime.TaskRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/classRedefinitionRuntime/classRedefinitionTasks/{name}/subTasks/{name}

This resource manages a weblogic.management.runtime.TaskRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/classRedefinitionRuntime/classRedefinitionTasks/{name}/subTasks/{name}/cancel

The resource supports the following methods:

POST

Attempts to cancel this task.

An exception is thrown to indicate failure to cancel the task. Not all tasks can be cancelled.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/classRedefinitionRuntime/classRedefinitionTasks/{name}/subTasks/{name}/subTasks

This resource manages a collection of weblogic.management.runtime.TaskRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/classRedefinitionRuntime/classRedefinitionTasks/{name}/subTasks/{name}/subTasks/{name}

This resource manages a weblogic.management.runtime.TaskRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.TaskRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.TaskRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/classRedefinitionRuntime/classRedefinitionTasks/{name}/subTasks/{name}/subTasks/{name}/cancel

The resource supports the following methods:

POST

Attempts to cancel this task.

An exception is thrown to indicate failure to cancel the task. Not all tasks can be cancelled.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/classRedefinitionRuntime/redefineClasses

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Initiate a class redefinition cycle, which will identify classes which may have changed and then attempt to redefine them. Class redefinition will be performed asynchronously. The progress of the class redefinition process can be monitored with the returned task.

This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.

Roles

Admin

Response Body

Contains a JSON object with a com.bea.wls.redef.runtime.ClassRedefinitionTaskRuntimeMBean reference return field.

POST

Initiate a class redefinition cycle, to redefine only the specified classes from given module. Class redefinition will be performed asynchronously. The progress of the class redefinition process can be monitored with the returned task. If specified module name is null, any classes within the application (scoped to any modules as well as globally scoped classes) which are included in the list will be redefined.

This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

moduleName

Module from which the classes are to be redefined.

Type: string

classNames

Classes to be redefined.

Type: array of string

Response Body

Contains a JSON object with a com.bea.wls.redef.runtime.ClassRedefinitionTaskRuntimeMBean reference return field.

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/coherenceClusterRuntime

This resource manages a weblogic.management.runtime.CoherenceClusterRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.CoherenceClusterRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/componentRuntimes

This resource manages a collection of weblogic.management.runtime.ComponentRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.ComponentRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.runtime.ComponentRuntimeMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/componentRuntimes/{name}

This resource manages a weblogic.management.runtime.ComponentRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.ComponentRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/componentRuntimes/{name}/workManagerRuntimes

This resource manages a collection of weblogic.management.runtime.WorkManagerRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/componentRuntimes/{name}/workManagerRuntimes/{name}

This resource manages a weblogic.management.runtime.WorkManagerRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WorkManagerRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.WorkManagerRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/componentRuntimes/{name}/workManagerRuntimes/{name}/capacityRuntime

This resource manages a weblogic.management.runtime.CapacityRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/componentRuntimes/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MaxThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/componentRuntimes/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MinThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/componentRuntimes/{name}/workManagerRuntimes/{name}/requestClassRuntime

This resource manages a weblogic.management.runtime.RequestClassRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/getPersistenceUnitRuntime

The resource supports the following methods:

POST

Provides the PersistenceUnitRuntimeMBean for the application with the specified name.

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

unitName

unitName

Type: string

Response Body

Contains a JSON object with a weblogic.management.runtime.PersistenceUnitRuntimeMBean reference return field.

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/hasApplicationCache

The resource supports the following methods:

POST

Returns true if the application has an (EJB) Application Level Cache

Roles

Admin, Operator

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/libraryRuntimes

This resource manages a collection of weblogic.management.runtime.LibraryRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.LibraryRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.runtime.LibraryRuntimeMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/libraryRuntimes/{name}

This resource manages a weblogic.management.runtime.LibraryRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.LibraryRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/libraryRuntimes/{name}/referencingRuntimes

This resource manages a collection of weblogic.management.runtime.RuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.RuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/libraryRuntimes/{name}/referencingRuntimes/{name}

This resource manages a weblogic.management.runtime.RuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/managedExecutorServiceRuntimes

This resource manages a collection of weblogic.management.runtime.ManagedExecutorServiceRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.ManagedExecutorServiceRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/managedExecutorServiceRuntimes/{name}

This resource manages a weblogic.management.runtime.ManagedExecutorServiceRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/managedExecutorServiceRuntimes/{name}/workManager

This resource manages a weblogic.management.runtime.WorkManagerRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WorkManagerRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.WorkManagerRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/managedExecutorServiceRuntimes/{name}/workManager/capacityRuntime

This resource manages a weblogic.management.runtime.CapacityRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/managedExecutorServiceRuntimes/{name}/workManager/maxThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MaxThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/managedExecutorServiceRuntimes/{name}/workManager/minThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MinThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/managedExecutorServiceRuntimes/{name}/workManager/requestClassRuntime

This resource manages a weblogic.management.runtime.RequestClassRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/managedScheduledExecutorServiceRuntimes

This resource manages a collection of weblogic.management.runtime.ManagedScheduledExecutorServiceRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/managedScheduledExecutorServiceRuntimes/{name}

This resource manages a weblogic.management.runtime.ManagedScheduledExecutorServiceRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/managedScheduledExecutorServiceRuntimes/{name}/workManager

This resource manages a weblogic.management.runtime.WorkManagerRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WorkManagerRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.WorkManagerRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/managedScheduledExecutorServiceRuntimes/{name}/workManager/capacityRuntime

This resource manages a weblogic.management.runtime.CapacityRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/managedScheduledExecutorServiceRuntimes/{name}/workManager/maxThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MaxThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/managedScheduledExecutorServiceRuntimes/{name}/workManager/minThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MinThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/managedScheduledExecutorServiceRuntimes/{name}/workManager/requestClassRuntime

This resource manages a weblogic.management.runtime.RequestClassRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/managedThreadFactoryRuntimes

This resource manages a collection of weblogic.management.runtime.ManagedThreadFactoryRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.ManagedThreadFactoryRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/managedThreadFactoryRuntimes/{name}

This resource manages a weblogic.management.runtime.ManagedThreadFactoryRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/maxThreadsConstraintRuntimes

This resource manages a collection of weblogic.management.runtime.MaxThreadsConstraintRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.MaxThreadsConstraintRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/maxThreadsConstraintRuntimes/{name}

This resource manages a weblogic.management.runtime.MaxThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/minThreadsConstraintRuntimes

This resource manages a collection of weblogic.management.runtime.MinThreadsConstraintRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.MinThreadsConstraintRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/minThreadsConstraintRuntimes/{name}

This resource manages a weblogic.management.runtime.MinThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/optionalPackageRuntimes

This resource manages a collection of weblogic.management.runtime.LibraryRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.LibraryRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.runtime.LibraryRuntimeMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/optionalPackageRuntimes/{name}

This resource manages a weblogic.management.runtime.LibraryRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.LibraryRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/optionalPackageRuntimes/{name}/referencingRuntimes

This resource manages a collection of weblogic.management.runtime.RuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.RuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/optionalPackageRuntimes/{name}/referencingRuntimes/{name}

This resource manages a weblogic.management.runtime.RuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/persistenceUnitRuntimes

This resource manages a collection of weblogic.management.runtime.PersistenceUnitRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.PersistenceUnitRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/persistenceUnitRuntimes/{name}

This resource manages a weblogic.management.runtime.PersistenceUnitRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/queryCacheRuntimes

This resource manages a collection of weblogic.management.runtime.QueryCacheRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.QueryCacheRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.runtime.QueryCacheRuntimeMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/queryCacheRuntimes/{name}

This resource manages a weblogic.management.runtime.QueryCacheRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.QueryCacheRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/reInitializeApplicationCachesAndPools

The resource supports the following methods:

POST

If the application has an (EJB) Application Level Cache, then this method will reinitialize the cache and any of its associated pools to their startup time states if possible.

Roles

Admin, Operator

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/requestClassRuntimes

This resource manages a collection of weblogic.management.runtime.RequestClassRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.RequestClassRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.runtime.RequestClassRuntimeMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/requestClassRuntimes/{name}

This resource manages a weblogic.management.runtime.RequestClassRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/workManagerRuntimes

This resource manages a collection of weblogic.management.runtime.WorkManagerRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.WorkManagerRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.runtime.WorkManagerRuntimeMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/workManagerRuntimes/{name}

This resource manages a weblogic.management.runtime.WorkManagerRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WorkManagerRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.WorkManagerRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/workManagerRuntimes/{name}/capacityRuntime

This resource manages a weblogic.management.runtime.CapacityRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MaxThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MinThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/workManagerRuntimes/{name}/requestClassRuntime

This resource manages a weblogic.management.runtime.RequestClassRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/wseeV2Runtimes

This resource manages a collection of weblogic.management.runtime.WseeV2RuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.WseeV2RuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.runtime.WseeV2RuntimeMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/wseeV2Runtimes/{name}

This resource manages a weblogic.management.runtime.WseeV2RuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WseeV2RuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/wseeV2Runtimes/{name}/policyRuntime

This resource manages a weblogic.management.runtime.WseePolicyRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports

This resource manages a collection of weblogic.management.runtime.WseePortRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.WseePortRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}

This resource manages a weblogic.management.runtime.WseePortRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WseePortRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.WseePortRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}/aggregatedBaseOperations

This resource manages a weblogic.management.runtime.WseeAggregatableBaseOperationRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}/baseOperations

This resource manages a collection of weblogic.management.runtime.WseeBaseOperationRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}/baseOperations/{name}

This resource manages a weblogic.management.runtime.WseeBaseOperationRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}/clusterRouting

This resource manages a weblogic.management.runtime.WseeClusterRoutingRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}/handlers

This resource manages a collection of weblogic.management.runtime.WseeHandlerRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}/handlers/{name}

This resource manages a weblogic.management.runtime.WseeHandlerRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}/mc

This resource manages a weblogic.management.runtime.WseeMcRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}/operations

This resource manages a collection of weblogic.management.runtime.WseeOperationRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}/operations/{name}

This resource manages a weblogic.management.runtime.WseeOperationRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}/portPolicy

This resource manages a weblogic.management.runtime.WseePortPolicyRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}/wsrm

This resource manages a weblogic.management.runtime.WseeWsrmRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/asyncReplicationRuntime

This resource manages a weblogic.management.runtime.AsyncReplicationRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.AsyncReplicationRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.AsyncReplicationRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/batchJobRepositoryRuntime

This resource manages a weblogic.management.runtime.BatchJobRepositoryRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.BatchJobRepositoryRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.BatchJobRepositoryRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/bootPartition

The resource supports the following methods:

POST

Boots the partition

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

partitionName

name of the partition to boot

Type: string

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/classLoaderRuntime

This resource manages a weblogic.management.runtime.ClassLoaderRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.ClassLoaderRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.ClassLoaderRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/clusterRuntime

This resource manages a weblogic.management.runtime.ClusterRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.ClusterRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.ClusterRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/clusterRuntime/initiateResourceGroupMigration

The resource supports the following methods:

POST

Provides a synchronous method for initiating resource group migration.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

partitionName

partitionName

Type: string

resourceGroupName

resourceGroupName

Type: string

targetCluster

targetCluster

Type: string

timeout

timeout

Type: int

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/clusterRuntime/jobSchedulerRuntime

This resource manages a weblogic.management.runtime.JobSchedulerRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.JobSchedulerRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.JobSchedulerRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/clusterRuntime/jobSchedulerRuntime/executedJobs

This resource manages a collection of weblogic.management.runtime.JobRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.JobRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.runtime.JobRuntimeMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/clusterRuntime/jobSchedulerRuntime/executedJobs/{name}

This resource manages a weblogic.management.runtime.JobRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.JobRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/clusterRuntime/jobSchedulerRuntime/executedJobs/{name}/cancel

The resource supports the following methods:

POST

Cancel this job and prevent it from executing again in any server, not just this server.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/clusterRuntime/jobSchedulerRuntime/getJob

The resource supports the following methods:

POST

Return the JobRuntimeMBean corresponding to the specified ID. An ID is recorded in the WebLogic server logs whenever a new job is scheduled with the Job Scheduler.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

id

unique ID corresponding to a job

Type: string

Response Body

Contains a JSON object with a weblogic.management.runtime.JobRuntimeMBean reference return field.

/management/weblogic/{version}/serverRuntime/clusterRuntime/serverMigrationRuntime

This resource manages a weblogic.management.runtime.ServerMigrationRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.ServerMigrationRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.ServerMigrationRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/clusterRuntime/serverMigrationRuntime/migrationData

This resource manages a collection of weblogic.management.runtime.MigrationDataRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.MigrationDataRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/clusterRuntime/serverMigrationRuntime/migrationData/{name}

This resource manages a weblogic.management.runtime.MigrationDataRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/clusterRuntime/unicastMessaging

This resource manages a weblogic.management.runtime.UnicastMessagingRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.UnicastMessagingRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.UnicastMessagingRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/concurrentManagedObjectsRuntime

This resource manages a weblogic.management.runtime.ConcurrentManagedObjectsRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.ConcurrentManagedObjectsRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.ConcurrentManagedObjectsRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/concurrentManagedObjectsRuntime/managedExecutorServiceRuntimes

This resource manages a collection of weblogic.management.runtime.ManagedExecutorServiceRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.ManagedExecutorServiceRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/concurrentManagedObjectsRuntime/managedExecutorServiceRuntimes/{name}

This resource manages a weblogic.management.runtime.ManagedExecutorServiceRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/concurrentManagedObjectsRuntime/managedExecutorServiceRuntimes/{name}/workManager

This resource manages a weblogic.management.runtime.WorkManagerRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WorkManagerRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.WorkManagerRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/concurrentManagedObjectsRuntime/managedExecutorServiceRuntimes/{name}/workManager/capacityRuntime

This resource manages a weblogic.management.runtime.CapacityRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/concurrentManagedObjectsRuntime/managedExecutorServiceRuntimes/{name}/workManager/maxThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MaxThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/concurrentManagedObjectsRuntime/managedExecutorServiceRuntimes/{name}/workManager/minThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MinThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/concurrentManagedObjectsRuntime/managedExecutorServiceRuntimes/{name}/workManager/requestClassRuntime

This resource manages a weblogic.management.runtime.RequestClassRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/concurrentManagedObjectsRuntime/managedScheduledExecutorServiceRuntimes

This resource manages a collection of weblogic.management.runtime.ManagedScheduledExecutorServiceRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/concurrentManagedObjectsRuntime/managedScheduledExecutorServiceRuntimes/{name}

This resource manages a weblogic.management.runtime.ManagedScheduledExecutorServiceRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/concurrentManagedObjectsRuntime/managedScheduledExecutorServiceRuntimes/{name}/workManager

This resource manages a weblogic.management.runtime.WorkManagerRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WorkManagerRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.WorkManagerRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/concurrentManagedObjectsRuntime/managedScheduledExecutorServiceRuntimes/{name}/workManager/capacityRuntime

This resource manages a weblogic.management.runtime.CapacityRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/concurrentManagedObjectsRuntime/managedScheduledExecutorServiceRuntimes/{name}/workManager/maxThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MaxThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/concurrentManagedObjectsRuntime/managedScheduledExecutorServiceRuntimes/{name}/workManager/minThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MinThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/concurrentManagedObjectsRuntime/managedScheduledExecutorServiceRuntimes/{name}/workManager/requestClassRuntime

This resource manages a weblogic.management.runtime.RequestClassRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/concurrentManagedObjectsRuntime/managedThreadFactoryRuntimes

This resource manages a collection of weblogic.management.runtime.ManagedThreadFactoryRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.ManagedThreadFactoryRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/concurrentManagedObjectsRuntime/managedThreadFactoryRuntimes/{name}

This resource manages a weblogic.management.runtime.ManagedThreadFactoryRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime

This resource manages a weblogic.management.runtime.ConnectorServiceRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.ConnectorServiceRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.ConnectorServiceRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs

This resource manages a collection of weblogic.management.runtime.ConnectorComponentRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.ConnectorComponentRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.runtime.ConnectorComponentRuntimeMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}

This resource manages a weblogic.management.runtime.ConnectorComponentRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.ConnectorComponentRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.ConnectorComponentRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectionPools

This resource manages a collection of weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}

This resource manages a weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/connections

This resource manages a collection of weblogic.management.runtime.ConnectorConnectionRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/connections/{name}

This resource manages a weblogic.management.runtime.ConnectorConnectionRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/connections/{name}/delete

The resource supports the following methods:

POST

Provides a way to manually close a connection through the console.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/connections/{name}/hasError

The resource supports the following methods:

POST

Return a flag indicating whether the connection has an error or not. A "true" is returned if there is an error.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/connections/{name}/testConnection

The resource supports the following methods:

POST

Test the connection. Returns true if the test was successful.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/ensureLogOpened

The resource supports the following methods:

POST

Ensures that that the output stream to the underlying is opened if it got closed previously due to errors.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/flushLog

The resource supports the following methods:

POST

Flushes the buffer to the log file on disk.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/forceLogRotation

The resource supports the following methods:

POST

Forces the rotation of the underlying log immediately.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/forceReset

The resource supports the following methods:

POST

Force immediately discard all used/unused connections and recreate connection pool (and using new configuration if user update the pool's configuration).

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/logRuntime

This resource manages a weblogic.management.runtime.LogRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/logRuntime/ensureLogOpened

The resource supports the following methods:

POST

Ensures that that the output stream to the underlying is opened if it got closed previously due to errors.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/logRuntime/flushLog

The resource supports the following methods:

POST

Flushes the buffer to the log file on disk.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/logRuntime/forceLogRotation

The resource supports the following methods:

POST

Forces the rotation of the underlying log immediately.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/reset

The resource supports the following methods:

POST

Reset connection pool Discard all unused connections and recreate connection pool (and using new configuration if user update the pool's configuration) if no connection from pool is reserved by client application. If any connection from the connection pool is currently in use, the operation fails and false will be returned, otherwise all connections will be reset and true will be returned.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/testPool

The resource supports the following methods:

POST

Test all the available connections in the pool. Returns true if all the connections passed the test and false it at least one failed the test.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime

This resource manages a weblogic.management.runtime.ConnectorServiceRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.ConnectorServiceRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.ConnectorServiceRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/getInboundConnections

The resource supports the following methods:

POST

Returns runtime information for the specified inbound connection. A null is returned if the inbound connection is not found.

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

messageListenerType

Message listener type.

Type: string

Response Body

Contains a JSON object with a array of weblogic.management.runtime.ConnectorInboundRuntimeMBean references return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/getRA

The resource supports the following methods:

POST

Returns the runtime information of the resource adapter specified by the given JNDI name. A null is returned if the resource adapter cannot be found. This function returns the active RA if multiple versions of the resource adapters has been deployed

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

key

The JNDI name of the resource adapter.

Type: string

Response Body

Contains a JSON object with a weblogic.management.runtime.ConnectorComponentRuntimeMBean reference return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs

This resource manages a collection of weblogic.management.runtime.ConnectorComponentRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}

This resource manages a weblogic.management.runtime.ConnectorComponentRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.ConnectorComponentRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.ConnectorComponentRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools

This resource manages a collection of weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}

This resource manages a weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/connections

This resource manages a collection of weblogic.management.runtime.ConnectorConnectionRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/connections/{name}

This resource manages a weblogic.management.runtime.ConnectorConnectionRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.ConnectorConnectionRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.ConnectorConnectionRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/connections/{name}/delete

The resource supports the following methods:

POST

Provides a way to manually close a connection through the console.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/connections/{name}/hasError

The resource supports the following methods:

POST

Return a flag indicating whether the connection has an error or not. A "true" is returned if there is an error.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/connections/{name}/testConnection

The resource supports the following methods:

POST

Test the connection. Returns true if the test was successful.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/ensureLogOpened

The resource supports the following methods:

POST

Ensures that that the output stream to the underlying is opened if it got closed previously due to errors.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/flushLog

The resource supports the following methods:

POST

Flushes the buffer to the log file on disk.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/forceLogRotation

The resource supports the following methods:

POST

Forces the rotation of the underlying log immediately.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/forceReset

The resource supports the following methods:

POST

Force immediately discard all used/unused connections and recreate connection pool (and using new configuration if user update the pool's configuration).

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/logRuntime

This resource manages a weblogic.management.runtime.LogRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.LogRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/logRuntime/ensureLogOpened

The resource supports the following methods:

POST

Ensures that that the output stream to the underlying is opened if it got closed previously due to errors.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/logRuntime/flushLog

The resource supports the following methods:

POST

Flushes the buffer to the log file on disk.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/logRuntime/forceLogRotation

The resource supports the following methods:

POST

Forces the rotation of the underlying log immediately.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/reset

The resource supports the following methods:

POST

Reset connection pool Discard all unused connections and recreate connection pool (and using new configuration if user update the pool's configuration) if no connection from pool is reserved by client application. If any connection from the connection pool is currently in use, the operation fails and false will be returned, otherwise all connections will be reset and true will be returned.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/testPool

The resource supports the following methods:

POST

Test all the available connections in the pool. Returns true if all the connections passed the test and false it at least one failed the test.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorWorkManagerRuntime

This resource manages a weblogic.management.runtime.ConnectorWorkManagerRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/getConfiguration

The resource supports the following methods:

POST

Return the xml string representing the RA configuration. The xml corresponding to the version specified is returned.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

version

String

Type: string

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/getConnectionPool

The resource supports the following methods:

POST

Returns a ConnectorConnectionPoolRuntimeMBean that represents the statistics for a connection pool. The pool that is accessed in this call must be part of the resource adapter that is being accessed. A null is returned if the JNDI name or resource-link name is not found.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

key

JNDI name or resource-link name of the connection pool.

Type: string

Response Body

Contains a JSON object with a weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean reference return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/getInboundConnection

The resource supports the following methods:

POST

Runtime information for the specified inbound connection. A null is returned if the inbound connection is not found in the resource adapter.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

messageListenerType

Message listener type.

Type: string

Response Body

Contains a JSON object with a weblogic.management.runtime.ConnectorInboundRuntimeMBean reference return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/getSchema

The resource supports the following methods:

POST

Get the schema for RA configuration based on the version that is provided. Return null if the version is not found. The current supported version is "1.0"

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

version

String

Type: string

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections

This resource manages a collection of weblogic.management.runtime.ConnectorInboundRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}

This resource manages a weblogic.management.runtime.ConnectorInboundRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes

This resource manages a collection of weblogic.management.runtime.MessageDrivenEJBRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}

This resource manages a weblogic.management.runtime.MessageDrivenEJBRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.MessageDrivenEJBRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.MessageDrivenEJBRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime

This resource manages a weblogic.management.runtime.EJBPoolRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime/initializePool

The resource supports the following methods:

POST

Instructs the Pool to initialize itself to its configured startup time size.

This is a synchronous and will wait until the pool is initialized before returning.

Roles

Admin, Operator

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resources

This resource manages a collection of weblogic.management.runtime.RuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resources/{name}

This resource manages a weblogic.management.runtime.RuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resume

The resource supports the following methods:

POST

Resumes the specific type of MDB by calling start on the JMS Connection.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/suspend

The resource supports the following methods:

POST

Suspends the specific type of MDB by calling stop on the JMS Connection.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime

This resource manages a weblogic.management.runtime.EJBTimerRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime/activateDisabledTimers

The resource supports the following methods:

POST

Activate any temporarily disabled timers.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/transactionRuntime

This resource manages a weblogic.management.runtime.EJBTransactionRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/resume

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Resumes the specified type of activity for this resource adapter

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

Response Body

Contains an empty JSON object.

POST

Resumes the specified type of activity for this resource adapter

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

props

Properties to pass on to the RA or null

Type: java.util.Properties

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/resumeAll

The resource supports the following methods:

POST

Resumes all activities of this resource adapter.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/suspend

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Suspends the specified type of activity for this resource adapter

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

props

Properties to pass on to the RA or null

Type: java.util.Properties

Response Body

Contains an empty JSON object.

POST

Suspend a particular type of activity for this resource adapter

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/suspendAll

The resource supports the following methods:

POST

Resumes all activities of this resource adapter.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime

This resource manages a weblogic.management.runtime.WorkManagerRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WorkManagerRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.WorkManagerRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime/capacityRuntime

This resource manages a weblogic.management.runtime.CapacityRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime/maxThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MaxThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime/minThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MinThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime/requestClassRuntime

This resource manages a weblogic.management.runtime.RequestClassRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes

This resource manages a collection of weblogic.management.runtime.WorkManagerRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name}

This resource manages a weblogic.management.runtime.WorkManagerRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WorkManagerRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.WorkManagerRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name}/capacityRuntime

This resource manages a weblogic.management.runtime.CapacityRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MaxThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MinThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name}/requestClassRuntime

This resource manages a weblogic.management.runtime.RequestClassRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs

This resource manages a collection of weblogic.management.runtime.ConnectorComponentRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}

This resource manages a weblogic.management.runtime.ConnectorComponentRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.ConnectorComponentRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.ConnectorComponentRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools

This resource manages a collection of weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}

This resource manages a weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/connections

This resource manages a collection of weblogic.management.runtime.ConnectorConnectionRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/connections/{name}

This resource manages a weblogic.management.runtime.ConnectorConnectionRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.ConnectorConnectionRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/connections/{name}/delete

The resource supports the following methods:

POST

Provides a way to manually close a connection through the console.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/connections/{name}/hasError

The resource supports the following methods:

POST

Return a flag indicating whether the connection has an error or not. A "true" is returned if there is an error.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/connections/{name}/testConnection

The resource supports the following methods:

POST

Test the connection. Returns true if the test was successful.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/ensureLogOpened

The resource supports the following methods:

POST

Ensures that that the output stream to the underlying is opened if it got closed previously due to errors.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/flushLog

The resource supports the following methods:

POST

Flushes the buffer to the log file on disk.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/forceLogRotation

The resource supports the following methods:

POST

Forces the rotation of the underlying log immediately.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/forceReset

The resource supports the following methods:

POST

Force immediately discard all used/unused connections and recreate connection pool (and using new configuration if user update the pool's configuration).

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/logRuntime

This resource manages a weblogic.management.runtime.LogRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.LogRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/logRuntime/ensureLogOpened

The resource supports the following methods:

POST

Ensures that that the output stream to the underlying is opened if it got closed previously due to errors.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/logRuntime/flushLog

The resource supports the following methods:

POST

Flushes the buffer to the log file on disk.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/logRuntime/forceLogRotation

The resource supports the following methods:

POST

Forces the rotation of the underlying log immediately.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/reset

The resource supports the following methods:

POST

Reset connection pool Discard all unused connections and recreate connection pool (and using new configuration if user update the pool's configuration) if no connection from pool is reserved by client application. If any connection from the connection pool is currently in use, the operation fails and false will be returned, otherwise all connections will be reset and true will be returned.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/testPool

The resource supports the following methods:

POST

Test all the available connections in the pool. Returns true if all the connections passed the test and false it at least one failed the test.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectorWorkManagerRuntime

This resource manages a weblogic.management.runtime.ConnectorWorkManagerRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/getConfiguration

The resource supports the following methods:

POST

Return the xml string representing the RA configuration. The xml corresponding to the version specified is returned.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

version

String

Type: string

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/getConnectionPool

The resource supports the following methods:

POST

Returns a ConnectorConnectionPoolRuntimeMBean that represents the statistics for a connection pool. The pool that is accessed in this call must be part of the resource adapter that is being accessed. A null is returned if the JNDI name or resource-link name is not found.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

key

JNDI name or resource-link name of the connection pool.

Type: string

Response Body

Contains a JSON object with a weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean reference return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/getInboundConnection

The resource supports the following methods:

POST

Runtime information for the specified inbound connection. A null is returned if the inbound connection is not found in the resource adapter.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

messageListenerType

Message listener type.

Type: string

Response Body

Contains a JSON object with a weblogic.management.runtime.ConnectorInboundRuntimeMBean reference return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/getSchema

The resource supports the following methods:

POST

Get the schema for RA configuration based on the version that is provided. Return null if the version is not found. The current supported version is "1.0"

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

version

String

Type: string

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections

This resource manages a collection of weblogic.management.runtime.ConnectorInboundRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}

This resource manages a weblogic.management.runtime.ConnectorInboundRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes

This resource manages a collection of weblogic.management.runtime.MessageDrivenEJBRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}

This resource manages a weblogic.management.runtime.MessageDrivenEJBRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.MessageDrivenEJBRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.MessageDrivenEJBRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime

This resource manages a weblogic.management.runtime.EJBPoolRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime/initializePool

The resource supports the following methods:

POST

Instructs the Pool to initialize itself to its configured startup time size.

This is a synchronous and will wait until the pool is initialized before returning.

Roles

Admin, Operator

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resources

This resource manages a collection of weblogic.management.runtime.RuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resources/{name}

This resource manages a weblogic.management.runtime.RuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resume

The resource supports the following methods:

POST

Resumes the specific type of MDB by calling start on the JMS Connection.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/suspend

The resource supports the following methods:

POST

Suspends the specific type of MDB by calling stop on the JMS Connection.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime

This resource manages a weblogic.management.runtime.EJBTimerRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime/activateDisabledTimers

The resource supports the following methods:

POST

Activate any temporarily disabled timers.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/transactionRuntime

This resource manages a weblogic.management.runtime.EJBTransactionRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/resume

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Resumes the specified type of activity for this resource adapter

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

Response Body

Contains an empty JSON object.

POST

Resumes the specified type of activity for this resource adapter

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

props

Properties to pass on to the RA or null

Type: java.util.Properties

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/resumeAll

The resource supports the following methods:

POST

Resumes all activities of this resource adapter.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/suspend

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Suspends the specified type of activity for this resource adapter

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

props

Properties to pass on to the RA or null

Type: java.util.Properties

Response Body

Contains an empty JSON object.

POST

Suspend a particular type of activity for this resource adapter

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/suspendAll

The resource supports the following methods:

POST

Resumes all activities of this resource adapter.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime

This resource manages a weblogic.management.runtime.WorkManagerRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WorkManagerRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.WorkManagerRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime/capacityRuntime

This resource manages a weblogic.management.runtime.CapacityRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime/maxThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MaxThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime/minThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MinThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime/requestClassRuntime

This resource manages a weblogic.management.runtime.RequestClassRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes

This resource manages a collection of weblogic.management.runtime.WorkManagerRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name}

This resource manages a weblogic.management.runtime.WorkManagerRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WorkManagerRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.WorkManagerRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name}/capacityRuntime

This resource manages a weblogic.management.runtime.CapacityRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MaxThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MinThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name}/requestClassRuntime

This resource manages a weblogic.management.runtime.RequestClassRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/resume

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Resumes the specified type of activity for all RAs

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

props

Properties to pass on to the RA or null

Type: java.util.Properties

Response Body

Contains an empty JSON object.

POST

Resumes the specified type of activity for all RAs.

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/resumeAll

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Resumes all activities of all resource adapters.

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

props

Properties to be passed to the resource adapters or null

Type: java.util.Properties

Response Body

Contains an empty JSON object.

POST

Resumes all activities of all resource adapters.

Roles

Admin, Operator

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/suspend

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Suspends the specified type of activity for all RAs

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

props

Properties to pass on to the RA or null

Type: java.util.Properties

Response Body

Contains an empty JSON object.

POST

Suspends the specified type of activity for all RAs.

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/suspendAll

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Suspends all activities of all resource adapters.

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

props

Properties to be passed to the resource adapters or null

Type: java.util.Properties

Response Body

Contains an empty JSON object.

POST

Suspends all activities of all resource adapters.

Roles

Admin, Operator

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/connectorWorkManagerRuntime

This resource manages a weblogic.management.runtime.ConnectorWorkManagerRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/getConfiguration

The resource supports the following methods:

POST

Return the xml string representing the RA configuration. The xml corresponding to the version specified is returned.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

version

String

Type: string

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/getConnectionPool

The resource supports the following methods:

POST

Returns a ConnectorConnectionPoolRuntimeMBean that represents the statistics for a connection pool. The pool that is accessed in this call must be part of the resource adapter that is being accessed. A null is returned if the JNDI name or resource-link name is not found.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

key

JNDI name or resource-link name of the connection pool.

Type: string

Response Body

Contains a JSON object with a weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean reference return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/getInboundConnection

The resource supports the following methods:

POST

Runtime information for the specified inbound connection. A null is returned if the inbound connection is not found in the resource adapter.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

messageListenerType

Message listener type.

Type: string

Response Body

Contains a JSON object with a weblogic.management.runtime.ConnectorInboundRuntimeMBean reference return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/getSchema

The resource supports the following methods:

POST

Get the schema for RA configuration based on the version that is provided. Return null if the version is not found. The current supported version is "1.0"

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

version

String

Type: string

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/inboundConnections

This resource manages a collection of weblogic.management.runtime.ConnectorInboundRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.ConnectorInboundRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}

This resource manages a weblogic.management.runtime.ConnectorInboundRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes

This resource manages a collection of weblogic.management.runtime.MessageDrivenEJBRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}

This resource manages a weblogic.management.runtime.MessageDrivenEJBRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.MessageDrivenEJBRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.MessageDrivenEJBRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime

This resource manages a weblogic.management.runtime.EJBPoolRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime/initializePool

The resource supports the following methods:

POST

Instructs the Pool to initialize itself to its configured startup time size.

This is a synchronous and will wait until the pool is initialized before returning.

Roles

Admin, Operator

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resources

This resource manages a collection of weblogic.management.runtime.RuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resources/{name}

This resource manages a weblogic.management.runtime.RuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resume

The resource supports the following methods:

POST

Resumes the specific type of MDB by calling start on the JMS Connection.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/suspend

The resource supports the following methods:

POST

Suspends the specific type of MDB by calling stop on the JMS Connection.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime

This resource manages a weblogic.management.runtime.EJBTimerRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime/activateDisabledTimers

The resource supports the following methods:

POST

Activate any temporarily disabled timers.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/transactionRuntime

This resource manages a weblogic.management.runtime.EJBTransactionRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/resume

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Resumes the specified type of activity for this resource adapter

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

Response Body

Contains an empty JSON object.

POST

Resumes the specified type of activity for this resource adapter

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

props

Properties to pass on to the RA or null

Type: java.util.Properties

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/resumeAll

The resource supports the following methods:

POST

Resumes all activities of this resource adapter.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/suspend

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Suspends the specified type of activity for this resource adapter

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

props

Properties to pass on to the RA or null

Type: java.util.Properties

Response Body

Contains an empty JSON object.

POST

Suspend a particular type of activity for this resource adapter

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/suspendAll

The resource supports the following methods:

POST

Resumes all activities of this resource adapter.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime

This resource manages a weblogic.management.runtime.WorkManagerRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WorkManagerRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime/capacityRuntime

This resource manages a weblogic.management.runtime.CapacityRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime/maxThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MaxThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime/minThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MinThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime/requestClassRuntime

This resource manages a weblogic.management.runtime.RequestClassRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes

This resource manages a collection of weblogic.management.runtime.WorkManagerRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.WorkManagerRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name}

This resource manages a weblogic.management.runtime.WorkManagerRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WorkManagerRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name}/capacityRuntime

This resource manages a weblogic.management.runtime.CapacityRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MaxThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MinThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name}/requestClassRuntime

This resource manages a weblogic.management.runtime.RequestClassRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/getInboundConnections

The resource supports the following methods:

POST

Returns runtime information for the specified inbound connection. A null is returned if the inbound connection is not found.

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

messageListenerType

Message listener type.

Type: string

Response Body

Contains a JSON object with a array of weblogic.management.runtime.ConnectorInboundRuntimeMBean references return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/getRA

The resource supports the following methods:

POST

Returns the runtime information of the resource adapter specified by the given JNDI name. A null is returned if the resource adapter cannot be found. This function returns the active RA if multiple versions of the resource adapters has been deployed

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

key

The JNDI name of the resource adapter.

Type: string

Response Body

Contains a JSON object with a weblogic.management.runtime.ConnectorComponentRuntimeMBean reference return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs

This resource manages a collection of weblogic.management.runtime.ConnectorComponentRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.ConnectorComponentRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.runtime.ConnectorComponentRuntimeMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}

This resource manages a weblogic.management.runtime.ConnectorComponentRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.ConnectorComponentRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.ConnectorComponentRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectionPools

This resource manages a collection of weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}

This resource manages a weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/connections

This resource manages a collection of weblogic.management.runtime.ConnectorConnectionRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/connections/{name}

This resource manages a weblogic.management.runtime.ConnectorConnectionRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/connections/{name}/delete

The resource supports the following methods:

POST

Provides a way to manually close a connection through the console.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/connections/{name}/hasError

The resource supports the following methods:

POST

Return a flag indicating whether the connection has an error or not. A "true" is returned if there is an error.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/connections/{name}/testConnection

The resource supports the following methods:

POST

Test the connection. Returns true if the test was successful.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/ensureLogOpened

The resource supports the following methods:

POST

Ensures that that the output stream to the underlying is opened if it got closed previously due to errors.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/flushLog

The resource supports the following methods:

POST

Flushes the buffer to the log file on disk.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/forceLogRotation

The resource supports the following methods:

POST

Forces the rotation of the underlying log immediately.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/forceReset

The resource supports the following methods:

POST

Force immediately discard all used/unused connections and recreate connection pool (and using new configuration if user update the pool's configuration).

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/logRuntime

This resource manages a weblogic.management.runtime.LogRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/logRuntime/ensureLogOpened

The resource supports the following methods:

POST

Ensures that that the output stream to the underlying is opened if it got closed previously due to errors.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/logRuntime/flushLog

The resource supports the following methods:

POST

Flushes the buffer to the log file on disk.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/logRuntime/forceLogRotation

The resource supports the following methods:

POST

Forces the rotation of the underlying log immediately.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/reset

The resource supports the following methods:

POST

Reset connection pool Discard all unused connections and recreate connection pool (and using new configuration if user update the pool's configuration) if no connection from pool is reserved by client application. If any connection from the connection pool is currently in use, the operation fails and false will be returned, otherwise all connections will be reset and true will be returned.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/testPool

The resource supports the following methods:

POST

Test all the available connections in the pool. Returns true if all the connections passed the test and false it at least one failed the test.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime

This resource manages a weblogic.management.runtime.ConnectorServiceRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.ConnectorServiceRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.ConnectorServiceRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs

This resource manages a collection of weblogic.management.runtime.ConnectorComponentRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}

This resource manages a weblogic.management.runtime.ConnectorComponentRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.ConnectorComponentRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.ConnectorComponentRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools

This resource manages a collection of weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}

This resource manages a weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/connections

This resource manages a collection of weblogic.management.runtime.ConnectorConnectionRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/connections/{name}

This resource manages a weblogic.management.runtime.ConnectorConnectionRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.ConnectorConnectionRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.ConnectorConnectionRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/connections/{name}/delete

The resource supports the following methods:

POST

Provides a way to manually close a connection through the console.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/connections/{name}/hasError

The resource supports the following methods:

POST

Return a flag indicating whether the connection has an error or not. A "true" is returned if there is an error.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/connections/{name}/testConnection

The resource supports the following methods:

POST

Test the connection. Returns true if the test was successful.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/ensureLogOpened

The resource supports the following methods:

POST

Ensures that that the output stream to the underlying is opened if it got closed previously due to errors.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/flushLog

The resource supports the following methods:

POST

Flushes the buffer to the log file on disk.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/forceLogRotation

The resource supports the following methods:

POST

Forces the rotation of the underlying log immediately.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/forceReset

The resource supports the following methods:

POST

Force immediately discard all used/unused connections and recreate connection pool (and using new configuration if user update the pool's configuration).

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/logRuntime

This resource manages a weblogic.management.runtime.LogRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.LogRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/logRuntime/ensureLogOpened

The resource supports the following methods:

POST

Ensures that that the output stream to the underlying is opened if it got closed previously due to errors.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/logRuntime/flushLog

The resource supports the following methods:

POST

Flushes the buffer to the log file on disk.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/logRuntime/forceLogRotation

The resource supports the following methods:

POST

Forces the rotation of the underlying log immediately.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/reset

The resource supports the following methods:

POST

Reset connection pool Discard all unused connections and recreate connection pool (and using new configuration if user update the pool's configuration) if no connection from pool is reserved by client application. If any connection from the connection pool is currently in use, the operation fails and false will be returned, otherwise all connections will be reset and true will be returned.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/testPool

The resource supports the following methods:

POST

Test all the available connections in the pool. Returns true if all the connections passed the test and false it at least one failed the test.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectorWorkManagerRuntime

This resource manages a weblogic.management.runtime.ConnectorWorkManagerRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/getConfiguration

The resource supports the following methods:

POST

Return the xml string representing the RA configuration. The xml corresponding to the version specified is returned.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

version

String

Type: string

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/getConnectionPool

The resource supports the following methods:

POST

Returns a ConnectorConnectionPoolRuntimeMBean that represents the statistics for a connection pool. The pool that is accessed in this call must be part of the resource adapter that is being accessed. A null is returned if the JNDI name or resource-link name is not found.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

key

JNDI name or resource-link name of the connection pool.

Type: string

Response Body

Contains a JSON object with a weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean reference return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/getInboundConnection

The resource supports the following methods:

POST

Runtime information for the specified inbound connection. A null is returned if the inbound connection is not found in the resource adapter.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

messageListenerType

Message listener type.

Type: string

Response Body

Contains a JSON object with a weblogic.management.runtime.ConnectorInboundRuntimeMBean reference return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/getSchema

The resource supports the following methods:

POST

Get the schema for RA configuration based on the version that is provided. Return null if the version is not found. The current supported version is "1.0"

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

version

String

Type: string

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections

This resource manages a collection of weblogic.management.runtime.ConnectorInboundRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}

This resource manages a weblogic.management.runtime.ConnectorInboundRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes

This resource manages a collection of weblogic.management.runtime.MessageDrivenEJBRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}

This resource manages a weblogic.management.runtime.MessageDrivenEJBRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.MessageDrivenEJBRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.MessageDrivenEJBRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime

This resource manages a weblogic.management.runtime.EJBPoolRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime/initializePool

The resource supports the following methods:

POST

Instructs the Pool to initialize itself to its configured startup time size.

This is a synchronous and will wait until the pool is initialized before returning.

Roles

Admin, Operator

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resources

This resource manages a collection of weblogic.management.runtime.RuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resources/{name}

This resource manages a weblogic.management.runtime.RuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resume

The resource supports the following methods:

POST

Resumes the specific type of MDB by calling start on the JMS Connection.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/suspend

The resource supports the following methods:

POST

Suspends the specific type of MDB by calling stop on the JMS Connection.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime

This resource manages a weblogic.management.runtime.EJBTimerRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime/activateDisabledTimers

The resource supports the following methods:

POST

Activate any temporarily disabled timers.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/transactionRuntime

This resource manages a weblogic.management.runtime.EJBTransactionRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/resume

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Resumes the specified type of activity for this resource adapter

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

Response Body

Contains an empty JSON object.

POST

Resumes the specified type of activity for this resource adapter

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

props

Properties to pass on to the RA or null

Type: java.util.Properties

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/resumeAll

The resource supports the following methods:

POST

Resumes all activities of this resource adapter.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/suspend

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Suspends the specified type of activity for this resource adapter

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

props

Properties to pass on to the RA or null

Type: java.util.Properties

Response Body

Contains an empty JSON object.

POST

Suspend a particular type of activity for this resource adapter

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/suspendAll

The resource supports the following methods:

POST

Resumes all activities of this resource adapter.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime

This resource manages a weblogic.management.runtime.WorkManagerRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WorkManagerRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.WorkManagerRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime/capacityRuntime

This resource manages a weblogic.management.runtime.CapacityRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime/maxThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MaxThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime/minThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MinThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime/requestClassRuntime

This resource manages a weblogic.management.runtime.RequestClassRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes

This resource manages a collection of weblogic.management.runtime.WorkManagerRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name}

This resource manages a weblogic.management.runtime.WorkManagerRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WorkManagerRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.WorkManagerRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name}/capacityRuntime

This resource manages a weblogic.management.runtime.CapacityRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MaxThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MinThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name}/requestClassRuntime

This resource manages a weblogic.management.runtime.RequestClassRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/getInboundConnections

The resource supports the following methods:

POST

Returns runtime information for the specified inbound connection. A null is returned if the inbound connection is not found.

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

messageListenerType

Message listener type.

Type: string

Response Body

Contains a JSON object with a array of weblogic.management.runtime.ConnectorInboundRuntimeMBean references return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/getRA

The resource supports the following methods:

POST

Returns the runtime information of the resource adapter specified by the given JNDI name. A null is returned if the resource adapter cannot be found. This function returns the active RA if multiple versions of the resource adapters has been deployed

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

key

The JNDI name of the resource adapter.

Type: string

Response Body

Contains a JSON object with a weblogic.management.runtime.ConnectorComponentRuntimeMBean reference return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs

This resource manages a collection of weblogic.management.runtime.ConnectorComponentRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}

This resource manages a weblogic.management.runtime.ConnectorComponentRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.ConnectorComponentRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.ConnectorComponentRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools

This resource manages a collection of weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}

This resource manages a weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/connections

This resource manages a collection of weblogic.management.runtime.ConnectorConnectionRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/connections/{name}

This resource manages a weblogic.management.runtime.ConnectorConnectionRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.ConnectorConnectionRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/connections/{name}/delete

The resource supports the following methods:

POST

Provides a way to manually close a connection through the console.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/connections/{name}/hasError

The resource supports the following methods:

POST

Return a flag indicating whether the connection has an error or not. A "true" is returned if there is an error.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/connections/{name}/testConnection

The resource supports the following methods:

POST

Test the connection. Returns true if the test was successful.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/ensureLogOpened

The resource supports the following methods:

POST

Ensures that that the output stream to the underlying is opened if it got closed previously due to errors.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/flushLog

The resource supports the following methods:

POST

Flushes the buffer to the log file on disk.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/forceLogRotation

The resource supports the following methods:

POST

Forces the rotation of the underlying log immediately.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/forceReset

The resource supports the following methods:

POST

Force immediately discard all used/unused connections and recreate connection pool (and using new configuration if user update the pool's configuration).

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/logRuntime

This resource manages a weblogic.management.runtime.LogRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.LogRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/logRuntime/ensureLogOpened

The resource supports the following methods:

POST

Ensures that that the output stream to the underlying is opened if it got closed previously due to errors.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/logRuntime/flushLog

The resource supports the following methods:

POST

Flushes the buffer to the log file on disk.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/logRuntime/forceLogRotation

The resource supports the following methods:

POST

Forces the rotation of the underlying log immediately.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/reset

The resource supports the following methods:

POST

Reset connection pool Discard all unused connections and recreate connection pool (and using new configuration if user update the pool's configuration) if no connection from pool is reserved by client application. If any connection from the connection pool is currently in use, the operation fails and false will be returned, otherwise all connections will be reset and true will be returned.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/testPool

The resource supports the following methods:

POST

Test all the available connections in the pool. Returns true if all the connections passed the test and false it at least one failed the test.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectorWorkManagerRuntime

This resource manages a weblogic.management.runtime.ConnectorWorkManagerRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/getConfiguration

The resource supports the following methods:

POST

Return the xml string representing the RA configuration. The xml corresponding to the version specified is returned.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

version

String

Type: string

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/getConnectionPool

The resource supports the following methods:

POST

Returns a ConnectorConnectionPoolRuntimeMBean that represents the statistics for a connection pool. The pool that is accessed in this call must be part of the resource adapter that is being accessed. A null is returned if the JNDI name or resource-link name is not found.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

key

JNDI name or resource-link name of the connection pool.

Type: string

Response Body

Contains a JSON object with a weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean reference return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/getInboundConnection

The resource supports the following methods:

POST

Runtime information for the specified inbound connection. A null is returned if the inbound connection is not found in the resource adapter.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

messageListenerType

Message listener type.

Type: string

Response Body

Contains a JSON object with a weblogic.management.runtime.ConnectorInboundRuntimeMBean reference return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/getSchema

The resource supports the following methods:

POST

Get the schema for RA configuration based on the version that is provided. Return null if the version is not found. The current supported version is "1.0"

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

version

String

Type: string

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections

This resource manages a collection of weblogic.management.runtime.ConnectorInboundRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}

This resource manages a weblogic.management.runtime.ConnectorInboundRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes

This resource manages a collection of weblogic.management.runtime.MessageDrivenEJBRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}

This resource manages a weblogic.management.runtime.MessageDrivenEJBRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.MessageDrivenEJBRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.MessageDrivenEJBRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime

This resource manages a weblogic.management.runtime.EJBPoolRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime/initializePool

The resource supports the following methods:

POST

Instructs the Pool to initialize itself to its configured startup time size.

This is a synchronous and will wait until the pool is initialized before returning.

Roles

Admin, Operator

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resources

This resource manages a collection of weblogic.management.runtime.RuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resources/{name}

This resource manages a weblogic.management.runtime.RuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resume

The resource supports the following methods:

POST

Resumes the specific type of MDB by calling start on the JMS Connection.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/suspend

The resource supports the following methods:

POST

Suspends the specific type of MDB by calling stop on the JMS Connection.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime

This resource manages a weblogic.management.runtime.EJBTimerRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime/activateDisabledTimers

The resource supports the following methods:

POST

Activate any temporarily disabled timers.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/transactionRuntime

This resource manages a weblogic.management.runtime.EJBTransactionRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/resume

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Resumes the specified type of activity for this resource adapter

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

Response Body

Contains an empty JSON object.

POST

Resumes the specified type of activity for this resource adapter

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

props

Properties to pass on to the RA or null

Type: java.util.Properties

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/resumeAll

The resource supports the following methods:

POST

Resumes all activities of this resource adapter.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/suspend

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Suspends the specified type of activity for this resource adapter

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

props

Properties to pass on to the RA or null

Type: java.util.Properties

Response Body

Contains an empty JSON object.

POST

Suspend a particular type of activity for this resource adapter

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/suspendAll

The resource supports the following methods:

POST

Resumes all activities of this resource adapter.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime

This resource manages a weblogic.management.runtime.WorkManagerRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WorkManagerRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.WorkManagerRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime/capacityRuntime

This resource manages a weblogic.management.runtime.CapacityRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime/maxThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MaxThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime/minThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MinThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime/requestClassRuntime

This resource manages a weblogic.management.runtime.RequestClassRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes

This resource manages a collection of weblogic.management.runtime.WorkManagerRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name}

This resource manages a weblogic.management.runtime.WorkManagerRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WorkManagerRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.WorkManagerRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name}/capacityRuntime

This resource manages a weblogic.management.runtime.CapacityRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MaxThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MinThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name}/requestClassRuntime

This resource manages a weblogic.management.runtime.RequestClassRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/resume

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Resumes the specified type of activity for all RAs

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

props

Properties to pass on to the RA or null

Type: java.util.Properties

Response Body

Contains an empty JSON object.

POST

Resumes the specified type of activity for all RAs.

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/resumeAll

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Resumes all activities of all resource adapters.

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

props

Properties to be passed to the resource adapters or null

Type: java.util.Properties

Response Body

Contains an empty JSON object.

POST

Resumes all activities of all resource adapters.

Roles

Admin, Operator

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/suspend

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Suspends the specified type of activity for all RAs

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

props

Properties to pass on to the RA or null

Type: java.util.Properties

Response Body

Contains an empty JSON object.

POST

Suspends the specified type of activity for all RAs.

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/suspendAll

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Suspends all activities of all resource adapters.

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

props

Properties to be passed to the resource adapters or null

Type: java.util.Properties

Response Body

Contains an empty JSON object.

POST

Suspends all activities of all resource adapters.

Roles

Admin, Operator

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/connectorWorkManagerRuntime

This resource manages a weblogic.management.runtime.ConnectorWorkManagerRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/getConfiguration

The resource supports the following methods:

POST

Return the xml string representing the RA configuration. The xml corresponding to the version specified is returned.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

version

String

Type: string

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/getConnectionPool

The resource supports the following methods:

POST

Returns a ConnectorConnectionPoolRuntimeMBean that represents the statistics for a connection pool. The pool that is accessed in this call must be part of the resource adapter that is being accessed. A null is returned if the JNDI name or resource-link name is not found.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

key

JNDI name or resource-link name of the connection pool.

Type: string

Response Body

Contains a JSON object with a weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean reference return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/getInboundConnection

The resource supports the following methods:

POST

Runtime information for the specified inbound connection. A null is returned if the inbound connection is not found in the resource adapter.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

messageListenerType

Message listener type.

Type: string

Response Body

Contains a JSON object with a weblogic.management.runtime.ConnectorInboundRuntimeMBean reference return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/getSchema

The resource supports the following methods:

POST

Get the schema for RA configuration based on the version that is provided. Return null if the version is not found. The current supported version is "1.0"

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

version

String

Type: string

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections

This resource manages a collection of weblogic.management.runtime.ConnectorInboundRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.ConnectorInboundRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}

This resource manages a weblogic.management.runtime.ConnectorInboundRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes

This resource manages a collection of weblogic.management.runtime.MessageDrivenEJBRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}

This resource manages a weblogic.management.runtime.MessageDrivenEJBRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.MessageDrivenEJBRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.MessageDrivenEJBRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime

This resource manages a weblogic.management.runtime.EJBPoolRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime/initializePool

The resource supports the following methods:

POST

Instructs the Pool to initialize itself to its configured startup time size.

This is a synchronous and will wait until the pool is initialized before returning.

Roles

Admin, Operator

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resources

This resource manages a collection of weblogic.management.runtime.RuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resources/{name}

This resource manages a weblogic.management.runtime.RuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resume

The resource supports the following methods:

POST

Resumes the specific type of MDB by calling start on the JMS Connection.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/suspend

The resource supports the following methods:

POST

Suspends the specific type of MDB by calling stop on the JMS Connection.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime

This resource manages a weblogic.management.runtime.EJBTimerRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime/activateDisabledTimers

The resource supports the following methods:

POST

Activate any temporarily disabled timers.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/transactionRuntime

This resource manages a weblogic.management.runtime.EJBTransactionRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/resume

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Resumes the specified type of activity for this resource adapter

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

Response Body

Contains an empty JSON object.

POST

Resumes the specified type of activity for this resource adapter

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

props

Properties to pass on to the RA or null

Type: java.util.Properties

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/resumeAll

The resource supports the following methods:

POST

Resumes all activities of this resource adapter.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/suspend

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Suspends the specified type of activity for this resource adapter

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

props

Properties to pass on to the RA or null

Type: java.util.Properties

Response Body

Contains an empty JSON object.

POST

Suspend a particular type of activity for this resource adapter

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/suspendAll

The resource supports the following methods:

POST

Resumes all activities of this resource adapter.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime

This resource manages a weblogic.management.runtime.WorkManagerRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WorkManagerRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime/capacityRuntime

This resource manages a weblogic.management.runtime.CapacityRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime/maxThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MaxThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime/minThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MinThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime/requestClassRuntime

This resource manages a weblogic.management.runtime.RequestClassRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes

This resource manages a collection of weblogic.management.runtime.WorkManagerRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.WorkManagerRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name}

This resource manages a weblogic.management.runtime.WorkManagerRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WorkManagerRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name}/capacityRuntime

This resource manages a weblogic.management.runtime.CapacityRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MaxThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MinThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name}/requestClassRuntime

This resource manages a weblogic.management.runtime.RequestClassRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs

This resource manages a collection of weblogic.management.runtime.ConnectorComponentRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.ConnectorComponentRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.runtime.ConnectorComponentRuntimeMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}

This resource manages a weblogic.management.runtime.ConnectorComponentRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.ConnectorComponentRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.ConnectorComponentRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectionPools

This resource manages a collection of weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectionPools/{name}

This resource manages a weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/connections

This resource manages a collection of weblogic.management.runtime.ConnectorConnectionRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/connections/{name}

This resource manages a weblogic.management.runtime.ConnectorConnectionRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/connections/{name}/delete

The resource supports the following methods:

POST

Provides a way to manually close a connection through the console.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/connections/{name}/hasError

The resource supports the following methods:

POST

Return a flag indicating whether the connection has an error or not. A "true" is returned if there is an error.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/connections/{name}/testConnection

The resource supports the following methods:

POST

Test the connection. Returns true if the test was successful.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/ensureLogOpened

The resource supports the following methods:

POST

Ensures that that the output stream to the underlying is opened if it got closed previously due to errors.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/flushLog

The resource supports the following methods:

POST

Flushes the buffer to the log file on disk.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/forceLogRotation

The resource supports the following methods:

POST

Forces the rotation of the underlying log immediately.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/forceReset

The resource supports the following methods:

POST

Force immediately discard all used/unused connections and recreate connection pool (and using new configuration if user update the pool's configuration).

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/logRuntime

This resource manages a weblogic.management.runtime.LogRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/logRuntime/ensureLogOpened

The resource supports the following methods:

POST

Ensures that that the output stream to the underlying is opened if it got closed previously due to errors.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/logRuntime/flushLog

The resource supports the following methods:

POST

Flushes the buffer to the log file on disk.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/logRuntime/forceLogRotation

The resource supports the following methods:

POST

Forces the rotation of the underlying log immediately.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/reset

The resource supports the following methods:

POST

Reset connection pool Discard all unused connections and recreate connection pool (and using new configuration if user update the pool's configuration) if no connection from pool is reserved by client application. If any connection from the connection pool is currently in use, the operation fails and false will be returned, otherwise all connections will be reset and true will be returned.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/testPool

The resource supports the following methods:

POST

Test all the available connections in the pool. Returns true if all the connections passed the test and false it at least one failed the test.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime

This resource manages a weblogic.management.runtime.ConnectorServiceRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.ConnectorServiceRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.ConnectorServiceRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs

This resource manages a collection of weblogic.management.runtime.ConnectorComponentRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}

This resource manages a weblogic.management.runtime.ConnectorComponentRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.ConnectorComponentRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.ConnectorComponentRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools

This resource manages a collection of weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}

This resource manages a weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/connections

This resource manages a collection of weblogic.management.runtime.ConnectorConnectionRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/connections/{name}

This resource manages a weblogic.management.runtime.ConnectorConnectionRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.ConnectorConnectionRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/connections/{name}/delete

The resource supports the following methods:

POST

Provides a way to manually close a connection through the console.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/connections/{name}/hasError

The resource supports the following methods:

POST

Return a flag indicating whether the connection has an error or not. A "true" is returned if there is an error.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/connections/{name}/testConnection

The resource supports the following methods:

POST

Test the connection. Returns true if the test was successful.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/ensureLogOpened

The resource supports the following methods:

POST

Ensures that that the output stream to the underlying is opened if it got closed previously due to errors.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/flushLog

The resource supports the following methods:

POST

Flushes the buffer to the log file on disk.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/forceLogRotation

The resource supports the following methods:

POST

Forces the rotation of the underlying log immediately.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/forceReset

The resource supports the following methods:

POST

Force immediately discard all used/unused connections and recreate connection pool (and using new configuration if user update the pool's configuration).

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/logRuntime

This resource manages a weblogic.management.runtime.LogRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.LogRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/logRuntime/ensureLogOpened

The resource supports the following methods:

POST

Ensures that that the output stream to the underlying is opened if it got closed previously due to errors.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/logRuntime/flushLog

The resource supports the following methods:

POST

Flushes the buffer to the log file on disk.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/logRuntime/forceLogRotation

The resource supports the following methods:

POST

Forces the rotation of the underlying log immediately.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/reset

The resource supports the following methods:

POST

Reset connection pool Discard all unused connections and recreate connection pool (and using new configuration if user update the pool's configuration) if no connection from pool is reserved by client application. If any connection from the connection pool is currently in use, the operation fails and false will be returned, otherwise all connections will be reset and true will be returned.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/testPool

The resource supports the following methods:

POST

Test all the available connections in the pool. Returns true if all the connections passed the test and false it at least one failed the test.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectorWorkManagerRuntime

This resource manages a weblogic.management.runtime.ConnectorWorkManagerRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/getConfiguration

The resource supports the following methods:

POST

Return the xml string representing the RA configuration. The xml corresponding to the version specified is returned.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

version

String

Type: string

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/getConnectionPool

The resource supports the following methods:

POST

Returns a ConnectorConnectionPoolRuntimeMBean that represents the statistics for a connection pool. The pool that is accessed in this call must be part of the resource adapter that is being accessed. A null is returned if the JNDI name or resource-link name is not found.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

key

JNDI name or resource-link name of the connection pool.

Type: string

Response Body

Contains a JSON object with a weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean reference return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/getInboundConnection

The resource supports the following methods:

POST

Runtime information for the specified inbound connection. A null is returned if the inbound connection is not found in the resource adapter.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

messageListenerType

Message listener type.

Type: string

Response Body

Contains a JSON object with a weblogic.management.runtime.ConnectorInboundRuntimeMBean reference return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/getSchema

The resource supports the following methods:

POST

Get the schema for RA configuration based on the version that is provided. Return null if the version is not found. The current supported version is "1.0"

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

version

String

Type: string

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections

This resource manages a collection of weblogic.management.runtime.ConnectorInboundRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}

This resource manages a weblogic.management.runtime.ConnectorInboundRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes

This resource manages a collection of weblogic.management.runtime.MessageDrivenEJBRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}

This resource manages a weblogic.management.runtime.MessageDrivenEJBRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.MessageDrivenEJBRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.MessageDrivenEJBRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime

This resource manages a weblogic.management.runtime.EJBPoolRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime/initializePool

The resource supports the following methods:

POST

Instructs the Pool to initialize itself to its configured startup time size.

This is a synchronous and will wait until the pool is initialized before returning.

Roles

Admin, Operator

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resources

This resource manages a collection of weblogic.management.runtime.RuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resources/{name}

This resource manages a weblogic.management.runtime.RuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resume

The resource supports the following methods:

POST

Resumes the specific type of MDB by calling start on the JMS Connection.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/suspend

The resource supports the following methods:

POST

Suspends the specific type of MDB by calling stop on the JMS Connection.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime

This resource manages a weblogic.management.runtime.EJBTimerRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime/activateDisabledTimers

The resource supports the following methods:

POST

Activate any temporarily disabled timers.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/transactionRuntime

This resource manages a weblogic.management.runtime.EJBTransactionRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/resume

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Resumes the specified type of activity for this resource adapter

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

Response Body

Contains an empty JSON object.

POST

Resumes the specified type of activity for this resource adapter

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

props

Properties to pass on to the RA or null

Type: java.util.Properties

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/resumeAll

The resource supports the following methods:

POST

Resumes all activities of this resource adapter.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/suspend

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Suspends the specified type of activity for this resource adapter

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

props

Properties to pass on to the RA or null

Type: java.util.Properties

Response Body

Contains an empty JSON object.

POST

Suspend a particular type of activity for this resource adapter

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/suspendAll

The resource supports the following methods:

POST

Resumes all activities of this resource adapter.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime

This resource manages a weblogic.management.runtime.WorkManagerRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WorkManagerRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.WorkManagerRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime/capacityRuntime

This resource manages a weblogic.management.runtime.CapacityRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime/maxThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MaxThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime/minThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MinThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime/requestClassRuntime

This resource manages a weblogic.management.runtime.RequestClassRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes

This resource manages a collection of weblogic.management.runtime.WorkManagerRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name}

This resource manages a weblogic.management.runtime.WorkManagerRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WorkManagerRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.WorkManagerRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name}/capacityRuntime

This resource manages a weblogic.management.runtime.CapacityRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MaxThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MinThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name}/requestClassRuntime

This resource manages a weblogic.management.runtime.RequestClassRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/getInboundConnections

The resource supports the following methods:

POST

Returns runtime information for the specified inbound connection. A null is returned if the inbound connection is not found.

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

messageListenerType

Message listener type.

Type: string

Response Body

Contains a JSON object with a array of weblogic.management.runtime.ConnectorInboundRuntimeMBean references return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/getRA

The resource supports the following methods:

POST

Returns the runtime information of the resource adapter specified by the given JNDI name. A null is returned if the resource adapter cannot be found. This function returns the active RA if multiple versions of the resource adapters has been deployed

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

key

The JNDI name of the resource adapter.

Type: string

Response Body

Contains a JSON object with a weblogic.management.runtime.ConnectorComponentRuntimeMBean reference return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs

This resource manages a collection of weblogic.management.runtime.ConnectorComponentRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}

This resource manages a weblogic.management.runtime.ConnectorComponentRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.ConnectorComponentRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.ConnectorComponentRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools

This resource manages a collection of weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}

This resource manages a weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/connections

This resource manages a collection of weblogic.management.runtime.ConnectorConnectionRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/connections/{name}

This resource manages a weblogic.management.runtime.ConnectorConnectionRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.ConnectorConnectionRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/connections/{name}/delete

The resource supports the following methods:

POST

Provides a way to manually close a connection through the console.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/connections/{name}/hasError

The resource supports the following methods:

POST

Return a flag indicating whether the connection has an error or not. A "true" is returned if there is an error.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/connections/{name}/testConnection

The resource supports the following methods:

POST

Test the connection. Returns true if the test was successful.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/ensureLogOpened

The resource supports the following methods:

POST

Ensures that that the output stream to the underlying is opened if it got closed previously due to errors.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/flushLog

The resource supports the following methods:

POST

Flushes the buffer to the log file on disk.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/forceLogRotation

The resource supports the following methods:

POST

Forces the rotation of the underlying log immediately.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/forceReset

The resource supports the following methods:

POST

Force immediately discard all used/unused connections and recreate connection pool (and using new configuration if user update the pool's configuration).

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/logRuntime

This resource manages a weblogic.management.runtime.LogRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.LogRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/logRuntime/ensureLogOpened

The resource supports the following methods:

POST

Ensures that that the output stream to the underlying is opened if it got closed previously due to errors.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/logRuntime/flushLog

The resource supports the following methods:

POST

Flushes the buffer to the log file on disk.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/logRuntime/forceLogRotation

The resource supports the following methods:

POST

Forces the rotation of the underlying log immediately.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/reset

The resource supports the following methods:

POST

Reset connection pool Discard all unused connections and recreate connection pool (and using new configuration if user update the pool's configuration) if no connection from pool is reserved by client application. If any connection from the connection pool is currently in use, the operation fails and false will be returned, otherwise all connections will be reset and true will be returned.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/testPool

The resource supports the following methods:

POST

Test all the available connections in the pool. Returns true if all the connections passed the test and false it at least one failed the test.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorWorkManagerRuntime

This resource manages a weblogic.management.runtime.ConnectorWorkManagerRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/getConfiguration

The resource supports the following methods:

POST

Return the xml string representing the RA configuration. The xml corresponding to the version specified is returned.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

version

String

Type: string

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/getConnectionPool

The resource supports the following methods:

POST

Returns a ConnectorConnectionPoolRuntimeMBean that represents the statistics for a connection pool. The pool that is accessed in this call must be part of the resource adapter that is being accessed. A null is returned if the JNDI name or resource-link name is not found.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

key

JNDI name or resource-link name of the connection pool.

Type: string

Response Body

Contains a JSON object with a weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean reference return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/getInboundConnection

The resource supports the following methods:

POST

Runtime information for the specified inbound connection. A null is returned if the inbound connection is not found in the resource adapter.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

messageListenerType

Message listener type.

Type: string

Response Body

Contains a JSON object with a weblogic.management.runtime.ConnectorInboundRuntimeMBean reference return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/getSchema

The resource supports the following methods:

POST

Get the schema for RA configuration based on the version that is provided. Return null if the version is not found. The current supported version is "1.0"

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

version

String

Type: string

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections

This resource manages a collection of weblogic.management.runtime.ConnectorInboundRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}

This resource manages a weblogic.management.runtime.ConnectorInboundRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes

This resource manages a collection of weblogic.management.runtime.MessageDrivenEJBRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}

This resource manages a weblogic.management.runtime.MessageDrivenEJBRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.MessageDrivenEJBRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.MessageDrivenEJBRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime

This resource manages a weblogic.management.runtime.EJBPoolRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime/initializePool

The resource supports the following methods:

POST

Instructs the Pool to initialize itself to its configured startup time size.

This is a synchronous and will wait until the pool is initialized before returning.

Roles

Admin, Operator

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resources

This resource manages a collection of weblogic.management.runtime.RuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resources/{name}

This resource manages a weblogic.management.runtime.RuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resume

The resource supports the following methods:

POST

Resumes the specific type of MDB by calling start on the JMS Connection.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/suspend

The resource supports the following methods:

POST

Suspends the specific type of MDB by calling stop on the JMS Connection.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime

This resource manages a weblogic.management.runtime.EJBTimerRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime/activateDisabledTimers

The resource supports the following methods:

POST

Activate any temporarily disabled timers.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/transactionRuntime

This resource manages a weblogic.management.runtime.EJBTransactionRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/resume

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Resumes the specified type of activity for this resource adapter

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

Response Body

Contains an empty JSON object.

POST

Resumes the specified type of activity for this resource adapter

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

props

Properties to pass on to the RA or null

Type: java.util.Properties

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/resumeAll

The resource supports the following methods:

POST

Resumes all activities of this resource adapter.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/suspend

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Suspends the specified type of activity for this resource adapter

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

props

Properties to pass on to the RA or null

Type: java.util.Properties

Response Body

Contains an empty JSON object.

POST

Suspend a particular type of activity for this resource adapter

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/suspendAll

The resource supports the following methods:

POST

Resumes all activities of this resource adapter.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime

This resource manages a weblogic.management.runtime.WorkManagerRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WorkManagerRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.WorkManagerRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime/capacityRuntime

This resource manages a weblogic.management.runtime.CapacityRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime/maxThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MaxThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime/minThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MinThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime/requestClassRuntime

This resource manages a weblogic.management.runtime.RequestClassRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes

This resource manages a collection of weblogic.management.runtime.WorkManagerRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name}

This resource manages a weblogic.management.runtime.WorkManagerRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WorkManagerRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.WorkManagerRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name}/capacityRuntime

This resource manages a weblogic.management.runtime.CapacityRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MaxThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MinThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name}/requestClassRuntime

This resource manages a weblogic.management.runtime.RequestClassRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/resume

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Resumes the specified type of activity for all RAs

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

props

Properties to pass on to the RA or null

Type: java.util.Properties

Response Body

Contains an empty JSON object.

POST

Resumes the specified type of activity for all RAs.

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/resumeAll

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Resumes all activities of all resource adapters.

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

props

Properties to be passed to the resource adapters or null

Type: java.util.Properties

Response Body

Contains an empty JSON object.

POST

Resumes all activities of all resource adapters.

Roles

Admin, Operator

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/suspend

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Suspends the specified type of activity for all RAs

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

props

Properties to pass on to the RA or null

Type: java.util.Properties

Response Body

Contains an empty JSON object.

POST

Suspends the specified type of activity for all RAs.

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/suspendAll

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Suspends all activities of all resource adapters.

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

props

Properties to be passed to the resource adapters or null

Type: java.util.Properties

Response Body

Contains an empty JSON object.

POST

Suspends all activities of all resource adapters.

Roles

Admin, Operator

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/connectorWorkManagerRuntime

This resource manages a weblogic.management.runtime.ConnectorWorkManagerRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/getConfiguration

The resource supports the following methods:

POST

Return the xml string representing the RA configuration. The xml corresponding to the version specified is returned.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

version

String

Type: string

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/getConnectionPool

The resource supports the following methods:

POST

Returns a ConnectorConnectionPoolRuntimeMBean that represents the statistics for a connection pool. The pool that is accessed in this call must be part of the resource adapter that is being accessed. A null is returned if the JNDI name or resource-link name is not found.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

key

JNDI name or resource-link name of the connection pool.

Type: string

Response Body

Contains a JSON object with a weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean reference return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/getInboundConnection

The resource supports the following methods:

POST

Runtime information for the specified inbound connection. A null is returned if the inbound connection is not found in the resource adapter.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

messageListenerType

Message listener type.

Type: string

Response Body

Contains a JSON object with a weblogic.management.runtime.ConnectorInboundRuntimeMBean reference return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/getSchema

The resource supports the following methods:

POST

Get the schema for RA configuration based on the version that is provided. Return null if the version is not found. The current supported version is "1.0"

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

version

String

Type: string

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/inboundConnections

This resource manages a collection of weblogic.management.runtime.ConnectorInboundRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.ConnectorInboundRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}

This resource manages a weblogic.management.runtime.ConnectorInboundRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes

This resource manages a collection of weblogic.management.runtime.MessageDrivenEJBRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}

This resource manages a weblogic.management.runtime.MessageDrivenEJBRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.MessageDrivenEJBRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.MessageDrivenEJBRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime

This resource manages a weblogic.management.runtime.EJBPoolRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime/initializePool

The resource supports the following methods:

POST

Instructs the Pool to initialize itself to its configured startup time size.

This is a synchronous and will wait until the pool is initialized before returning.

Roles

Admin, Operator

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resources

This resource manages a collection of weblogic.management.runtime.RuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resources/{name}

This resource manages a weblogic.management.runtime.RuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resume

The resource supports the following methods:

POST

Resumes the specific type of MDB by calling start on the JMS Connection.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/suspend

The resource supports the following methods:

POST

Suspends the specific type of MDB by calling stop on the JMS Connection.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime

This resource manages a weblogic.management.runtime.EJBTimerRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime/activateDisabledTimers

The resource supports the following methods:

POST

Activate any temporarily disabled timers.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/transactionRuntime

This resource manages a weblogic.management.runtime.EJBTransactionRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/resume

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Resumes the specified type of activity for this resource adapter

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

Response Body

Contains an empty JSON object.

POST

Resumes the specified type of activity for this resource adapter

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

props

Properties to pass on to the RA or null

Type: java.util.Properties

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/resumeAll

The resource supports the following methods:

POST

Resumes all activities of this resource adapter.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/suspend

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Suspends the specified type of activity for this resource adapter

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

props

Properties to pass on to the RA or null

Type: java.util.Properties

Response Body

Contains an empty JSON object.

POST

Suspend a particular type of activity for this resource adapter

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/suspendAll

The resource supports the following methods:

POST

Resumes all activities of this resource adapter.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/workManagerRuntime

This resource manages a weblogic.management.runtime.WorkManagerRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WorkManagerRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.WorkManagerRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/workManagerRuntime/capacityRuntime

This resource manages a weblogic.management.runtime.CapacityRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/workManagerRuntime/maxThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MaxThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/workManagerRuntime/minThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MinThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/workManagerRuntime/requestClassRuntime

This resource manages a weblogic.management.runtime.RequestClassRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/workManagerRuntimes

This resource manages a collection of weblogic.management.runtime.WorkManagerRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.WorkManagerRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name}

This resource manages a weblogic.management.runtime.WorkManagerRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WorkManagerRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name}/capacityRuntime

This resource manages a weblogic.management.runtime.CapacityRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MaxThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MinThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name}/requestClassRuntime

This resource manages a weblogic.management.runtime.RequestClassRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/resume

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Resumes the specified type of activity for all RAs

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

props

Properties to pass on to the RA or null

Type: java.util.Properties

Response Body

Contains an empty JSON object.

POST

Resumes the specified type of activity for all RAs.

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/resumeAll

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Resumes all activities of all resource adapters.

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

props

Properties to be passed to the resource adapters or null

Type: java.util.Properties

Response Body

Contains an empty JSON object.

POST

Resumes all activities of all resource adapters.

Roles

Admin, Operator

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/suspend

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Suspends the specified type of activity for all RAs

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

props

Properties to pass on to the RA or null

Type: java.util.Properties

Response Body

Contains an empty JSON object.

POST

Suspends the specified type of activity for all RAs.

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/connectorServiceRuntime/suspendAll

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Suspends all activities of all resource adapters.

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

props

Properties to be passed to the resource adapters or null

Type: java.util.Properties

Response Body

Contains an empty JSON object.

POST

Suspends all activities of all resource adapters.

Roles

Admin, Operator

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/defaultExecuteQueueRuntime

This resource manages a weblogic.management.runtime.ExecuteQueueRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.ExecuteQueueRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.ExecuteQueueRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/entityCacheCumulativeRuntime

This resource manages a weblogic.management.runtime.EntityCacheCumulativeRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.EntityCacheCumulativeRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.EntityCacheCumulativeRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/entityCacheCurrentStateRuntime

This resource manages a weblogic.management.runtime.EntityCacheCurrentStateRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.EntityCacheCurrentStateRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.EntityCacheCurrentStateRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/entityCacheHistoricalRuntime

This resource manages a weblogic.management.runtime.EntityCacheCumulativeRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.EntityCacheCumulativeRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.EntityCacheCumulativeRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/executeQueueRuntimes

This resource manages a collection of weblogic.management.runtime.ExecuteQueueRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.ExecuteQueueRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.runtime.ExecuteQueueRuntimeMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/executeQueueRuntimes/{name}

This resource manages a weblogic.management.runtime.ExecuteQueueRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.ExecuteQueueRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.ExecuteQueueRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/forceRestartPartition

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Performs a forced restart of the specified partition, waiting the specified time after the halt completes before executing the operation to return the partition to its state in this server at the time the forceRestartPartition method was invoked.

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

partitionName

the partition to be restarted

Type: string

restartDelayMillis

time in milliseconds to wait after halt before restarting

Type: long

Response Body

Contains an empty JSON object.

POST

Performs a forced restart of the specified partition.

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

partitionName

partitionName

Type: string

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/forceShutdown

The resource supports the following methods:

POST

Force shutdown the server. Causes the server to reject new requests and fail pending requests.

Roles

Admin, Operator

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/forceShutdownResourceGroup

The resource supports the following methods:

POST

Force shutdown the resource group. Causes the resource group to reject new requests and fail pending requests.

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

resourceGroupName

resourceGroupName

Type: string

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/forceSuspend

The resource supports the following methods:

POST

Transitions the server from RUNNING to ADMIN state forcefully cancelling inflight work.

Work that cannot be cancelled is dropped. Applications are brought into the admin mode. This is the supported way of force suspending the server and getting it into ADMIN state.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/forceSuspendResourceGroup

The resource supports the following methods:

POST

Transitions the resource group from RUNNING to ADMIN state forcefully cancelling inflight work.

Work that cannot be cancelled is dropped. Applications are brought into the admin mode. This is the supported way of force suspending the resource group and getting it into ADMIN state.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

resourceGroupName

resourceGroupName

Type: string

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/getIPv4URL

The resource supports the following methods:

POST

The URL that clients use when connecting to this server using the specified protocol.

Note: The listen address and listen port for a given protocol are persisted in the domain's config.xml file, however when a server instance is started, command-line options can override these persisted values. This getURL method returns the URL values that are currently being used, not necessarily the values that are specified in config.xml

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

protocol

the desired protocol

Type: string

Response Body

Contains a JSON object with a string return field.

Example

Example 1   Invoke the getIPv4URL Action

This example uses the POST method to invoke the getIPv4URL action.

Example Request

curl -v \
--user admin:admin123 \
-H X-Requested-By:MyClient \
-H Accept:application/json \
-H Content-Type:application/json \
-d "{ protocol: 'http' }" \
-X POST http://localhost:7001/management/weblogic/latest/serverRuntime/getIPv4URL

Example Response

HTTP/1.1 200 OK

Response Body:
{"return": "http:\//localhost:7001"}

/management/weblogic/{version}/serverRuntime/getIPv6URL

The resource supports the following methods:

POST

The URL that clients use when connecting to this server using the specified protocol.

Note: The listen address and listen port for a given protocol are persisted in the domain's config.xml file, however when a server instance is started, command-line options can override these persisted values. This getURL method returns the URL values that are currently being used, not necessarily the values that are specified in config.xml

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

protocol

the desired protocol

Type: string

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/serverRuntime/getRgState

The resource supports the following methods:

POST

Roles

Admin, Deployer, Monitor, Operator

Request Body

Must contain a JSON object with the following fields:

resourceGroupName

resourceGroupName

Type: string

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/serverRuntime/getURL

The resource supports the following methods:

POST

The URL that clients use when connecting to this server using the specified protocol.

Note: The listen address and listen port for a given protocol are persisted in the domain's config.xml file, however when a server instance is started, command-line options can override these persisted values. This getURL method returns the URL values that are currently being used, not necessarily the values that are specified in config.xml

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

protocol

the desired protocol

Type: string

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime

This resource manages a weblogic.management.runtime.JDBCServiceRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.JDBCServiceRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.JDBCServiceRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans

This resource manages a collection of weblogic.management.runtime.JDBCDataSourceRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.JDBCDataSourceRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.runtime.JDBCDataSourceRuntimeMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}

This resource manages a weblogic.management.runtime.JDBCDataSourceRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.JDBCDataSourceRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.JDBCDataSourceRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/asyncShutdown

The resource supports the following methods:

POST

Gracefully, asynchronously shuts down a data source that has a health state of Running. A graceful (non-forced) datasource shutdown operation involves first gracefully suspending the data source and then releasing the associated resources including the connections. See the description above for details of gracefully suspending the datasource. After the datasource is gracefully suspended, all remaining in-use connections are closed and the datasource is marked as shut down.

Setting IgnoreInUseConnectionsEnabled to false causes the operation to fail if in-use connections exist.

If successful, the health state is set to Shutdown

This is a privileged operation that can only be invoked by an authorized user.

This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

operationSecs

The number of seconds to allow the operation to run before stopping processing. If set to 0, the default is used. The default is to use Inactive Connection Timeout Seconds if set or 60 seconds. If you want a minimal timeout, set the value to 1. If you want no timeout, set it to a large value (not recommended).

Type: int

Response Body

Contains a JSON object with a weblogic.management.runtime.JDBCDataSourceTaskRuntimeMBean reference return field.

/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/asyncSuspend

The resource supports the following methods:

POST

Asynchronously, gracefully suspends a data source that has the health state of Running and disables existing connections. This operation immediately marks the data source as suspended and no further connections are created. Idle (not reserved) connections are marked as disabled. After a timeout period for the suspend operation, all remaining connections in the pool are marked as suspended and the following exception is thrown for any operations on the connection, indicating that the data source is suspended: java.sql.SQLRecoverableException: Connection has been administratively disabled. Try later. These connections remain in the pool and are not closed because the pool may be resumed.

Setting IgnoreInUseConnectionsEnabled to false causes the operation to fail if in-use connections exist.

If successful, the health state is set to Suspended

This is a privileged operation that can only be invoked by an authorized user.

This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

operationSecs

The number of seconds to allow the operation to run before stopping processing. If set to 0, the default is used. The default is to use Inactive Connection Timeout Seconds if set or 60 seconds. If you want a minimal timeout, set the value to 1. If you want no timeout, set it to a large value (not recommended).

Type: int

Response Body

Contains a JSON object with a weblogic.management.runtime.JDBCDataSourceTaskRuntimeMBean reference return field.

/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/clearStatementCache

The resource supports the following methods:

POST

For each connection in the connection pool, clears the statement cache of Prepared and Callable Statements.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/dumpPool

The resource supports the following methods:

POST

Prints out information about all the connections in the connection pool in the data source.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/dumpPoolProfile

The resource supports the following methods:

POST

Prints out profile information about the data source.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/forceShutdown

The resource supports the following methods:

POST

Forcefully shuts down a data source that has a health state of Running, including forcing the disconnection of all current connection users.

If successful, the health state is set to Shutdown

This is a privileged operation that can only be invoked by an authorized user.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/forceSuspend

The resource supports the following methods:

POST

Forcefully suspends a data source that has the health state of Running, including disconnecting all current connection users. All current connections are closed and recreated.

If successful, the health state is set to Suspended

This is a privileged operation that can only be invoked by an authorized user.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/JDBCDriverRuntime

This resource manages a weblogic.management.runtime.JDBCDriverRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/JDBCReplayStatisticsRuntimeMBean

This resource manages a weblogic.management.runtime.JDBCReplayStatisticsRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/JDBCReplayStatisticsRuntimeMBean/clearStatistics

The resource supports the following methods:

POST

Clear the statistics on all connections.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/JDBCReplayStatisticsRuntimeMBean/refreshStatistics

The resource supports the following methods:

POST

Update the snapshot

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/JDBCReplayStatisticsRuntimeMBean/workManagerRuntimes

This resource manages a collection of weblogic.management.runtime.WorkManagerRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/JDBCReplayStatisticsRuntimeMBean/workManagerRuntimes/{name}

This resource manages a weblogic.management.runtime.WorkManagerRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WorkManagerRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.WorkManagerRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/JDBCReplayStatisticsRuntimeMBean/workManagerRuntimes/{name}/capacityRuntime

This resource manages a weblogic.management.runtime.CapacityRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/JDBCReplayStatisticsRuntimeMBean/workManagerRuntimes/{name}/maxThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MaxThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/JDBCReplayStatisticsRuntimeMBean/workManagerRuntimes/{name}/minThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MinThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/JDBCReplayStatisticsRuntimeMBean/workManagerRuntimes/{name}/requestClassRuntime

This resource manages a weblogic.management.runtime.RequestClassRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/poolExists

The resource supports the following methods:

POST

Specifies whether a data source with the given name exists.

This is a privileged operation that can only be invoked by an authorized user.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

poolName

Name of the pool being looked for

Type: string

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/reset

The resource supports the following methods:

POST

Resets the connection pool in the data source by shutting down and recreating all available database connections in the pool.

Use when a data source is in the health state of Unhealthy and needs to be reinitialized.

This is a privileged operation that can only be invoked by an authorized user.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/resume

The resource supports the following methods:

POST

Restores all access to and operations on a data source that has a health state of Suspended

If successful, the health state is set to Running

This is a privileged operation that can only be invoked by an authorized user.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/shrink

The resource supports the following methods:

POST

Shrinks the database connection pool in the data source to either the current number of reserved connections or the initial size of the connection pool, which ever is greater.

This is a privileged operation that can only be invoked by an authorized user.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/shutdown

The resource supports the following methods:

POST

Gracefully, synchronously shuts down a data source that has a health state of Running. A graceful (non-forced) datasource shutdown operation involves first gracefully suspending the data source and then releasing the associated resources including the connections. See the description above for details of gracefully suspending the datasource. After the datasource is gracefully suspended, all remaining in-use connections are closed and the datasource is marked as shut down.

If successful, the health state is set to Shutdown

This is a privileged operation that can only be invoked by an authorized user.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/start

The resource supports the following methods:

POST

Starts a data source that has a health state of Shutdown

If successful, the health state is set to Running

This is a privileged operation that can only be invoked by an authorized user.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/suspend

The resource supports the following methods:

POST

Synchronously, gracefully suspends a data source that has the health state of Running and disables existing connections. This operation immediately marks the data source as suspended and no further connections are created. Idle (not reserved) connections are marked as disabled. After a timeout period for the suspend operation, all remaining connections in the pool are marked as suspended and the following exception is thrown for any operations on the connection, indicating that the data source is suspended: java.sql.SQLRecoverableException: Connection has been administratively disabled. Try later. If graceful suspend is done as part of a graceful shutdown operation, connections are immediately closed when no longer reserved or at the end of the timeout period. If not done as part of a shutdown operation, these connections remain in the pool and are not closed because the pool may be resumed.

By default, the timeout period is 60 seconds. You can change the value of this timeout period by configuring or dynamically setting Inactive Connection Timeout Seconds to a non-zero value.

Setting IgnoreInUseConnectionsEnabled to false causes the operation to fail if in-use connections exist.

If successful, the health state is set to Suspended

This is a privileged operation that can only be invoked by an authorized user.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/tasks

This resource manages a collection of weblogic.management.runtime.JDBCDataSourceTaskRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.JDBCDataSourceTaskRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/tasks/{name}

This resource manages a weblogic.management.runtime.JDBCDataSourceTaskRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.JDBCDataSourceTaskRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.JDBCDataSourceTaskRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/tasks/{name}/cancel

The resource supports the following methods:

POST

Attempts to cancel this task.

An exception is thrown to indicate failure to cancel the task. Not all tasks can be cancelled.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/tasks/{name}/subTasks

This resource manages a collection of weblogic.management.runtime.TaskRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/tasks/{name}/subTasks/{name}

This resource manages a weblogic.management.runtime.TaskRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.TaskRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/tasks/{name}/subTasks/{name}/cancel

The resource supports the following methods:

POST

Attempts to cancel this task.

An exception is thrown to indicate failure to cancel the task. Not all tasks can be cancelled.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/tasks/{name}/subTasks/{name}/subTasks

This resource manages a collection of weblogic.management.runtime.TaskRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/tasks/{name}/subTasks/{name}/subTasks/{name}

This resource manages a weblogic.management.runtime.TaskRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.TaskRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.TaskRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/tasks/{name}/subTasks/{name}/subTasks/{name}/cancel

The resource supports the following methods:

POST

Attempts to cancel this task.

An exception is thrown to indicate failure to cancel the task. Not all tasks can be cancelled.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/testPool

The resource supports the following methods:

POST

Tests the connection pool in the data source by reserving and releasing a connection from it.

If the pool configuration attribute TestConnectionsOnReserve is enabled, the acquired connection is also tested as part of the reserve operation.

Roles

Admin

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/workManagerRuntimes

This resource manages a collection of weblogic.management.runtime.WorkManagerRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/workManagerRuntimes/{name}

This resource manages a weblogic.management.runtime.WorkManagerRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WorkManagerRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.WorkManagerRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/workManagerRuntimes/{name}/capacityRuntime

This resource manages a weblogic.management.runtime.CapacityRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MaxThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MinThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDataSourceRuntimeMBeans/{name}/workManagerRuntimes/{name}/requestClassRuntime

This resource manages a weblogic.management.runtime.RequestClassRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDriverRuntimeMBeans

This resource manages a collection of weblogic.management.runtime.JDBCDriverRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.JDBCDriverRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.runtime.JDBCDriverRuntimeMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCDriverRuntimeMBeans/{name}

This resource manages a weblogic.management.runtime.JDBCDriverRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.JDBCDriverRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCMultiDataSourceRuntimeMBeans

This resource manages a collection of weblogic.management.runtime.JDBCMultiDataSourceRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.JDBCMultiDataSourceRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCMultiDataSourceRuntimeMBeans/{name}

This resource manages a weblogic.management.runtime.JDBCMultiDataSourceRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCMultiDataSourceRuntimeMBeans/{name}/workManagerRuntimes

This resource manages a collection of weblogic.management.runtime.WorkManagerRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCMultiDataSourceRuntimeMBeans/{name}/workManagerRuntimes/{name}

This resource manages a weblogic.management.runtime.WorkManagerRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WorkManagerRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.WorkManagerRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCMultiDataSourceRuntimeMBeans/{name}/workManagerRuntimes/{name}/capacityRuntime

This resource manages a weblogic.management.runtime.CapacityRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCMultiDataSourceRuntimeMBeans/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MaxThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCMultiDataSourceRuntimeMBeans/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MinThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/JDBCServiceRuntime/JDBCMultiDataSourceRuntimeMBeans/{name}/workManagerRuntimes/{name}/requestClassRuntime

This resource manages a weblogic.management.runtime.RequestClassRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/JMSRuntime

This resource manages a weblogic.management.runtime.JMSRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.JMSRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.JMSRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/JMSRuntime/connections

This resource manages a collection of weblogic.management.runtime.JMSConnectionRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.JMSConnectionRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.runtime.JMSConnectionRuntimeMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/JMSRuntime/connections/{name}

This resource manages a weblogic.management.runtime.JMSConnectionRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.JMSConnectionRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.JMSConnectionRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/JMSRuntime/connections/{name}/destroy

The resource supports the following methods:

POST

Destroys server side context for the connection.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/JMSRuntime/connections/{name}/sessions

This resource manages a collection of weblogic.management.runtime.JMSSessionRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.JMSSessionRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.runtime.JMSSessionRuntimeMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/JMSRuntime/connections/{name}/sessions/{name}

This resource manages a weblogic.management.runtime.JMSSessionRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.JMSSessionRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/JMSRuntime/connections/{name}/sessions/{name}/consumers

This resource manages a collection of weblogic.management.runtime.JMSConsumerRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.JMSConsumerRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/JMSRuntime/connections/{name}/sessions/{name}/consumers/{name}

This resource manages a weblogic.management.runtime.JMSConsumerRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/JMSRuntime/connections/{name}/sessions/{name}/producers

This resource manages a collection of weblogic.management.runtime.JMSProducerRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.JMSProducerRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/JMSRuntime/connections/{name}/sessions/{name}/producers/{name}

This resource manages a weblogic.management.runtime.JMSProducerRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers

This resource manages a collection of weblogic.management.runtime.JMSServerRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.JMSServerRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.runtime.JMSServerRuntimeMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}

This resource manages a weblogic.management.runtime.JMSServerRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.JMSServerRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.JMSServerRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/closeCursor

The resource supports the following methods:

POST

Releases the server-side resources associated with the cursor and removes the runtime MBean instance.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations

This resource manages a collection of weblogic.management.runtime.JMSDestinationRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.JMSDestinationRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.runtime.JMSDestinationRuntimeMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}

This resource manages a weblogic.management.runtime.JMSDestinationRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.JMSDestinationRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.JMSDestinationRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/closeCursor

The resource supports the following methods:

POST

Releases the server-side resources associated with the cursor and removes the runtime MBean instance.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/createDurableSubscriber

The resource supports the following methods:

POST

Creates a durable subscriber on the destination with the specified client ID and subscription name. A message selector and no-local flag may also be specified.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

ClientID

An identifier that uniquely identifies a client connection.

Type: string

subscriptionName

The name used to identify this subscription.

Type: string

selector

Only messages with properties matching the message selector expression are delivered. A value of null or an empty string indicates that there is no message selector for the message consumer.

Type: string

noLocal

If set, inhibits the delivery of messages published by its own connection.

Type: boolean

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/deleteMessages

The resource supports the following methods:

POST

Deletes the set of messages from the destination that are qualified by the specified JMS message selector.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

selector

A JMS message selector to identify which messages to delete.

Type: string

Response Body

Contains a JSON object with a int return field.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers

This resource manages a collection of weblogic.management.runtime.JMSDurableSubscriberRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}

This resource manages a weblogic.management.runtime.JMSDurableSubscriberRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.JMSDurableSubscriberRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.JMSDurableSubscriberRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/closeCursor

The resource supports the following methods:

POST

Releases the server-side resources associated with the cursor and removes the runtime MBean instance.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/deleteMessages

The resource supports the following methods:

POST

Deletes the set of messages from the destination that are qualified by the specified JMS message selector.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

selector

A JMS message selector to identify which messages to delete.

Type: string

Response Body

Contains a JSON object with a int return field.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime

This resource manages a weblogic.management.runtime.JMSDestinationRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.JMSDestinationRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.JMSDestinationRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime/closeCursor

The resource supports the following methods:

POST

Releases the server-side resources associated with the cursor and removes the runtime MBean instance.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime/createDurableSubscriber

The resource supports the following methods:

POST

Creates a durable subscriber on the destination with the specified client ID and subscription name. A message selector and no-local flag may also be specified.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

ClientID

An identifier that uniquely identifies a client connection.

Type: string

subscriptionName

The name used to identify this subscription.

Type: string

selector

Only messages with properties matching the message selector expression are delivered. A value of null or an empty string indicates that there is no message selector for the message consumer.

Type: string

noLocal

If set, inhibits the delivery of messages published by its own connection.

Type: boolean

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime/deleteMessages

The resource supports the following methods:

POST

Deletes the set of messages from the destination that are qualified by the specified JMS message selector.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

selector

A JMS message selector to identify which messages to delete.

Type: string

Response Body

Contains a JSON object with a int return field.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime/getCursorEndPosition

The resource supports the following methods:

POST

Returns the cursor end position in the result set.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime/getCursorSize

The resource supports the following methods:

POST

Returns the number of items in the result set.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime/getCursorStartPosition

The resource supports the following methods:

POST

Returns the cursor start position in the result set.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime/getMessages

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Queries messages on the queue according to the provided message selector and state bitmask and returns a message cursor representing the result set. The timeout parameter specifies the amount of time in seconds for which the cursor is valid. Upon timeout expiration the cursor is invalidated and the associated resources released.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

selector

A valid JMS message selector.

Type: string

timeout

The last access timeout for the cursor. The cursor resources will be reclaimed if it is not accessed within the specified time interval. A value of 0 indicates no timeout.

Type: int

state

A messaging kernel state bitmask. Refer to the messaging kernel MessageElement interface for a description of the various message states.

Type: int

Response Body

Contains a JSON object with a string return field.

POST

Queries messages on the queue according to the provided message selector and returns a message cursor representing the result set. The timeout parameter specifies the amount of time in seconds for which the cursor is valid. Upon timeout expiration the cursor is invalidated and the associated resources released.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

selector

A valid JMS message selector.

Type: string

timeout

The last access timeout for the cursor. The cursor resources will be reclaimed if it is not accessed within the specified time interval. A value of 0 indicates no timeout.

Type: int

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime/pauseConsumption

The resource supports the following methods:

POST

Pauses the consumption on the destination.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime/pauseInsertion

The resource supports the following methods:

POST

Pauses the insertion on the destination.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime/pauseProduction

The resource supports the following methods:

POST

Pauses the production on the destination.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime/resumeConsumption

The resource supports the following methods:

POST

Resumes the consumption operations on the destination.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime/resumeInsertion

The resource supports the following methods:

POST

Resumes the insertion operations on the destination.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime/resumeProduction

The resource supports the following methods:

POST

Resumes the production operations on the destination.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime/sort

The resource supports the following methods:

POST

Sorts the entire message result set managed by the cursor according to the JMS header attributes specified. The cursor position is set to the new position of the message corresponding to the "start" location before the sort is performed. The method returns the new cursor position.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The handle of the cursor.

Type: string

start

The location of the message before the sort that will be the first message returned after the sort. A value of -1 will place the cursor start position at the head of the new sort order.

Type: long

fields

The JMS header attributes on which to sort.

Type: array of string

ascending

Determines whether the sort of the corresponding fields element is in ascending or descending order.

Type: array of boolean

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/getCursorEndPosition

The resource supports the following methods:

POST

Returns the cursor end position in the result set.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/getCursorSize

The resource supports the following methods:

POST

Returns the number of items in the result set.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/getCursorStartPosition

The resource supports the following methods:

POST

Returns the cursor start position in the result set.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/getMessages

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Queries messages on the queue according to the provided message selector and state bitmask and returns a message cursor representing the result set. The timeout parameter specifies the amount of time in seconds for which the cursor is valid. Upon timeout expiration the cursor is invalidated and the associated resources released.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

selector

A valid JMS message selector.

Type: string

timeout

The last access timeout for the cursor. The cursor resources will be reclaimed if it is not accessed within the specified time interval. A value of 0 indicates no timeout.

Type: int

state

A messaging kernel state bitmask. Refer to the messaging kernel MessageElement interface for a description of the various message states.

Type: int

Response Body

Contains a JSON object with a string return field.

POST

Queries messages on the queue according to the provided message selector and returns a message cursor representing the result set. The timeout parameter specifies the amount of time in seconds for which the cursor is valid. Upon timeout expiration the cursor is invalidated and the associated resources released.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

selector

A valid JMS message selector.

Type: string

timeout

The last access timeout for the cursor. The cursor resources will be reclaimed if it is not accessed within the specified time interval. A value of 0 indicates no timeout.

Type: int

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/sort

The resource supports the following methods:

POST

Sorts the entire message result set managed by the cursor according to the JMS header attributes specified. The cursor position is set to the new position of the message corresponding to the "start" location before the sort is performed. The method returns the new cursor position.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The handle of the cursor.

Type: string

start

The location of the message before the sort that will be the first message returned after the sort. A value of -1 will place the cursor start position at the head of the new sort order.

Type: long

fields

The JMS header attributes on which to sort.

Type: array of string

ascending

Determines whether the sort of the corresponding fields element is in ascending or descending order.

Type: array of boolean

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/getCursorEndPosition

The resource supports the following methods:

POST

Returns the cursor end position in the result set.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/getCursorSize

The resource supports the following methods:

POST

Returns the number of items in the result set.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/getCursorStartPosition

The resource supports the following methods:

POST

Returns the cursor start position in the result set.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/getMessages

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Queries messages on the queue according to the provided message selector and state bitmask and returns a message cursor representing the result set. The timeout parameter specifies the amount of time in seconds for which the cursor is valid. Upon timeout expiration the cursor is invalidated and the associated resources released.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

selector

A valid JMS message selector.

Type: string

timeout

The last access timeout for the cursor. The cursor resources will be reclaimed if it is not accessed within the specified time interval. A value of 0 indicates no timeout.

Type: int

state

A messaging kernel state bitmask. Refer to the messaging kernel MessageElement interface for a description of the various message states.

Type: int

Response Body

Contains a JSON object with a string return field.

POST

Queries messages on the queue according to the provided message selector and returns a message cursor representing the result set. The timeout parameter specifies the amount of time in seconds for which the cursor is valid. Upon timeout expiration the cursor is invalidated and the associated resources released.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

selector

A valid JMS message selector.

Type: string

timeout

The last access timeout for the cursor. The cursor resources will be reclaimed if it is not accessed within the specified time interval. A value of 0 indicates no timeout.

Type: int

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/pauseConsumption

The resource supports the following methods:

POST

Pauses the consumption on the destination.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/pauseInsertion

The resource supports the following methods:

POST

Pauses the insertion on the destination.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/pauseProduction

The resource supports the following methods:

POST

Pauses the production on the destination.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/resumeConsumption

The resource supports the following methods:

POST

Resumes the consumption operations on the destination.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/resumeInsertion

The resource supports the following methods:

POST

Resumes the insertion operations on the destination.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/resumeProduction

The resource supports the following methods:

POST

Resumes the production operations on the destination.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/destinations/{name}/sort

The resource supports the following methods:

POST

Sorts the entire message result set managed by the cursor according to the JMS header attributes specified. The cursor position is set to the new position of the message corresponding to the "start" location before the sort is performed. The method returns the new cursor position.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The handle of the cursor.

Type: string

start

The location of the message before the sort that will be the first message returned after the sort. A value of -1 will place the cursor start position at the head of the new sort order.

Type: long

fields

The JMS header attributes on which to sort.

Type: array of string

ascending

Determines whether the sort of the corresponding fields element is in ascending or descending order.

Type: array of boolean

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/forceCommit

The resource supports the following methods:

POST

Causes the work associated with the specified transaction branch to be committed.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

xid

An xid in string representation for a JMS transaction branch.

Type: string

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/forceRollback

The resource supports the following methods:

POST

Causes the work associated with the specified transaction branch to be rolled back.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

xid

An xid in string representation for a JMS transaction branch.

Type: string

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/getCursorEndPosition

The resource supports the following methods:

POST

Returns the cursor end position in the result set.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/getCursorSize

The resource supports the following methods:

POST

Returns the number of items in the result set.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/getCursorStartPosition

The resource supports the following methods:

POST

Returns the cursor start position in the result set.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/getMessages

The resource supports the following methods:

POST

Returns a set of messages that are associated with a JMS transaction branch. Note that the result set is returned to the caller in the form of a message cursor that may contain messages from several destinations on this JMS server.

The timeout parameter specifies the amount of time in seconds for which the cursor is valid. Upon timeout expiration the cursor is invalidated and the associated resources released.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

xid

An Xid in string representation for a JMS transaction branch.

Type: string

timeoutSeconds

The last access timeout for the cursor. The cursor resources will be reclaimed if it is not accessed within the specified time interval. A value of 0 indicates no timeout.

Type: int

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/getTransactionStatus

The resource supports the following methods:

POST

Given an Xid this method returns the JTA status of the associated JMS transaction branch.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

xid

An Xid in string representation for a JMS transaction branch.

Type: string

Response Body

Contains a JSON object with a int return field.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/logRuntime

This resource manages a weblogic.management.runtime.LogRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.LogRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.LogRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/logRuntime/ensureLogOpened

The resource supports the following methods:

POST

Ensures that that the output stream to the underlying is opened if it got closed previously due to errors.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/logRuntime/flushLog

The resource supports the following methods:

POST

Flushes the buffer to the log file on disk.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/logRuntime/forceLogRotation

The resource supports the following methods:

POST

Forces the rotation of the underlying log immediately.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/pauseConsumption

The resource supports the following methods:

POST

Pauses the consumption operation on all the destinations hosted by the JMSServer.

When the JMSServer is paused for consumption, all of its destination's state is marked as "consumption paused" and all the new synchronous receive operations will block until the destination is resumed and there are messages available for consumption. All the synchronous receive with blocking timeout will block until the timeout happens during the consumption paused state.

All the asynchronous consumers attached to that destination will not get any messages delivered to them while the destination in "consumption paused" state.

After a successful consumption "pause" operation, the user has to explicitly "resume" the destination to allow for any further consume operations on that destination

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/pauseInsertion

The resource supports the following methods:

POST

Pauses the appearance of any messages on all the destinations of the JMSServer, that are result of the in-flight work completion on all the destinations hosted by this JMSServer.

Definition of In-Flight work

The definitions below are based on the current implementation of WebLogic JMS subsystem.

  • In-flight messages associated with Producers

    • UN-BORN MESSAGES

      Messages that are produced by the producer, with "birth time" (TimeToDeliver) set in future are called un-born messages and are counted as "pending" messages in the destination statistics and are not available for consumers yet.

    • UN-COMMITTED MESSAGES

      These are the messages that are produced by the producer as part of the transaction (using either user transaction or transacted session) and the transaction is still not committed or rolled back. These messages are also counted as "pending" messages in the destination statistics and are not available for consumption.

    • QUOTA BLOCKING SEND

      These are the messages that are produced by the producers but are not able reach the destination because of (either message or byte or both) quota limit on the destination and the producers are willing to block for a specific period of time for the quota to be available. These messages are invisible to the system and are not counted against any of the destination statistics.

  • In-flight messages associated with Consumers

    • UN-ACKNOWLEDGED (CLIENT ACK PENDING) MESSAGES

      These are the messages that are successfully consumed by the clients using a "client acknowledge" session, and are awaiting acknowledgements from the clients. These are "pending messages" which will be removed from the destination/system when the acknowledgement is received.

    • UN-COMMITTED MESSAGES

      These are the messages that are consumed (received) by the clients within a transaction (using either user transaction or transacted session) and the transaction is still not committed or rolled back. When the clients successfully commit the transaction the messages get removed from the system.

    • ROLLED BACK MESSAGES

      These are the messages that are put back on the destination because of a successful rollback of transactional receive by the consumers. These messages might or might not be ready for consumption (re-delivered) to the clients immediately, depending on the redelivery parameters, RedeliveryDelay and/or RedeliveryDelayOverride and RedeliveryLimit configured on the associated JMSConnectionFactory and JMSDestination respectively.

      If there is a redelivery delay configured, then for that "delay" duration, the messages are not available for consumption and are counted as "pending" in the destination statistics and after the "delay" period, if the redelivery limit is not exceeded, then they are delivered (made available for consumption) on that destination and are counted as "current" messages in the destination statistics. If the redelivery limit exceeds, then those messages will be moved to the ErrorDestination, if one configured.

      Another parameter that controls the availability of the rolled back messages is RedeliveryLimit.

    • RECOVERED MESSAGES

      These messages are similar to ROLLED BACK MESSAGES except that these messages appear on the queue because of an explicit call to session "recover" by the client.

    • REDELIVERED MESSAGES

      These are again similar to ROLLED BACK MESSAGES except that these messages may re-appear on the destination because of an un-successful delivery attempt to the client (consumer crash, close etc.).

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/pauseProduction

The resource supports the following methods:

POST

Pauses the new message production on all the destinations hosted by the JMSServer.

When the production paused, it would prevent any new produce operations from both new and existing producers attached to the destinations. When the destination is "resumed from production pause", all the new message production is allowed from both new and existing producers attached to that destination.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/resumeConsumption

The resource supports the following methods:

POST

Resumes the consumption operation on all the destinations hosted by the JMSSever.

The state of the destinations shall be marked as "consumption enabled" thus allowing all the "consuming" activity to continue normally.

Invoking this API on a JMSServer that is currently not in "consumption paused" state has no effect.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/resumeInsertion

The resource supports the following methods:

POST

Resumes the in-flight message production operation on all the destinations hosted by the JMSServer. The state of the JMSServer shall be marked as "insertion enabled" thus allowing all the messages from in-flight work completion are alloed to appear on the destinations.

Invoking this API on a JMSServer that is currently not in "insertion paused" state has no effect.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/resumeProduction

The resource supports the following methods:

POST

Resumes the new message production operation on all the destinations hosted by the JMSServer. The state of the JMSServer shall be marked as "production enabled" thus allowing all the new "producing" activity to continue normally. Invoking this API on a JMSServer that is currently not in "production paused" state has no effect.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes

This resource manages a collection of weblogic.management.runtime.JMSSessionPoolRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.JMSSessionPoolRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}

This resource manages a weblogic.management.runtime.JMSSessionPoolRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/connectionConsumers

This resource manages a collection of weblogic.management.runtime.JMSConsumerRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/connectionConsumers/{name}

This resource manages a weblogic.management.runtime.JMSConsumerRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer

This resource manages a weblogic.management.runtime.JMSServerRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.JMSServerRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.JMSServerRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/closeCursor

The resource supports the following methods:

POST

Releases the server-side resources associated with the cursor and removes the runtime MBean instance.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations

This resource manages a collection of weblogic.management.runtime.JMSDestinationRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}

This resource manages a weblogic.management.runtime.JMSDestinationRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.JMSDestinationRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.JMSDestinationRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/closeCursor

The resource supports the following methods:

POST

Releases the server-side resources associated with the cursor and removes the runtime MBean instance.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/createDurableSubscriber

The resource supports the following methods:

POST

Creates a durable subscriber on the destination with the specified client ID and subscription name. A message selector and no-local flag may also be specified.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

ClientID

An identifier that uniquely identifies a client connection.

Type: string

subscriptionName

The name used to identify this subscription.

Type: string

selector

Only messages with properties matching the message selector expression are delivered. A value of null or an empty string indicates that there is no message selector for the message consumer.

Type: string

noLocal

If set, inhibits the delivery of messages published by its own connection.

Type: boolean

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/deleteMessages

The resource supports the following methods:

POST

Deletes the set of messages from the destination that are qualified by the specified JMS message selector.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

selector

A JMS message selector to identify which messages to delete.

Type: string

Response Body

Contains a JSON object with a int return field.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers

This resource manages a collection of weblogic.management.runtime.JMSDurableSubscriberRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}

This resource manages a weblogic.management.runtime.JMSDurableSubscriberRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.JMSDurableSubscriberRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.JMSDurableSubscriberRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/closeCursor

The resource supports the following methods:

POST

Releases the server-side resources associated with the cursor and removes the runtime MBean instance.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/deleteMessages

The resource supports the following methods:

POST

Deletes the set of messages from the destination that are qualified by the specified JMS message selector.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

selector

A JMS message selector to identify which messages to delete.

Type: string

Response Body

Contains a JSON object with a int return field.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/destinationRuntime

This resource manages a weblogic.management.runtime.JMSDestinationRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.JMSDestinationRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.JMSDestinationRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/destinationRuntime/closeCursor

The resource supports the following methods:

POST

Releases the server-side resources associated with the cursor and removes the runtime MBean instance.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/destinationRuntime/createDurableSubscriber

The resource supports the following methods:

POST

Creates a durable subscriber on the destination with the specified client ID and subscription name. A message selector and no-local flag may also be specified.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

ClientID

An identifier that uniquely identifies a client connection.

Type: string

subscriptionName

The name used to identify this subscription.

Type: string

selector

Only messages with properties matching the message selector expression are delivered. A value of null or an empty string indicates that there is no message selector for the message consumer.

Type: string

noLocal

If set, inhibits the delivery of messages published by its own connection.

Type: boolean

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/destinationRuntime/deleteMessages

The resource supports the following methods:

POST

Deletes the set of messages from the destination that are qualified by the specified JMS message selector.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

selector

A JMS message selector to identify which messages to delete.

Type: string

Response Body

Contains a JSON object with a int return field.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/destinationRuntime/getCursorEndPosition

The resource supports the following methods:

POST

Returns the cursor end position in the result set.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/destinationRuntime/getCursorSize

The resource supports the following methods:

POST

Returns the number of items in the result set.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/destinationRuntime/getCursorStartPosition

The resource supports the following methods:

POST

Returns the cursor start position in the result set.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/destinationRuntime/getMessages

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Queries messages on the queue according to the provided message selector and state bitmask and returns a message cursor representing the result set. The timeout parameter specifies the amount of time in seconds for which the cursor is valid. Upon timeout expiration the cursor is invalidated and the associated resources released.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

selector

A valid JMS message selector.

Type: string

timeout

The last access timeout for the cursor. The cursor resources will be reclaimed if it is not accessed within the specified time interval. A value of 0 indicates no timeout.

Type: int

state

A messaging kernel state bitmask. Refer to the messaging kernel MessageElement interface for a description of the various message states.

Type: int

Response Body

Contains a JSON object with a string return field.

POST

Queries messages on the queue according to the provided message selector and returns a message cursor representing the result set. The timeout parameter specifies the amount of time in seconds for which the cursor is valid. Upon timeout expiration the cursor is invalidated and the associated resources released.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

selector

A valid JMS message selector.

Type: string

timeout

The last access timeout for the cursor. The cursor resources will be reclaimed if it is not accessed within the specified time interval. A value of 0 indicates no timeout.

Type: int

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/destinationRuntime/pauseConsumption

The resource supports the following methods:

POST

Pauses the consumption on the destination.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/destinationRuntime/pauseInsertion

The resource supports the following methods:

POST

Pauses the insertion on the destination.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/destinationRuntime/pauseProduction

The resource supports the following methods:

POST

Pauses the production on the destination.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/destinationRuntime/resumeConsumption

The resource supports the following methods:

POST

Resumes the consumption operations on the destination.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/destinationRuntime/resumeInsertion

The resource supports the following methods:

POST

Resumes the insertion operations on the destination.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/destinationRuntime/resumeProduction

The resource supports the following methods:

POST

Resumes the production operations on the destination.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/destinationRuntime/sort

The resource supports the following methods:

POST

Sorts the entire message result set managed by the cursor according to the JMS header attributes specified. The cursor position is set to the new position of the message corresponding to the "start" location before the sort is performed. The method returns the new cursor position.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The handle of the cursor.

Type: string

start

The location of the message before the sort that will be the first message returned after the sort. A value of -1 will place the cursor start position at the head of the new sort order.

Type: long

fields

The JMS header attributes on which to sort.

Type: array of string

ascending

Determines whether the sort of the corresponding fields element is in ascending or descending order.

Type: array of boolean

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/getCursorEndPosition

The resource supports the following methods:

POST

Returns the cursor end position in the result set.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/getCursorSize

The resource supports the following methods:

POST

Returns the number of items in the result set.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/getCursorStartPosition

The resource supports the following methods:

POST

Returns the cursor start position in the result set.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/getMessages

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Queries messages on the queue according to the provided message selector and state bitmask and returns a message cursor representing the result set. The timeout parameter specifies the amount of time in seconds for which the cursor is valid. Upon timeout expiration the cursor is invalidated and the associated resources released.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

selector

A valid JMS message selector.

Type: string

timeout

The last access timeout for the cursor. The cursor resources will be reclaimed if it is not accessed within the specified time interval. A value of 0 indicates no timeout.

Type: int

state

A messaging kernel state bitmask. Refer to the messaging kernel MessageElement interface for a description of the various message states.

Type: int

Response Body

Contains a JSON object with a string return field.

POST

Queries messages on the queue according to the provided message selector and returns a message cursor representing the result set. The timeout parameter specifies the amount of time in seconds for which the cursor is valid. Upon timeout expiration the cursor is invalidated and the associated resources released.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

selector

A valid JMS message selector.

Type: string

timeout

The last access timeout for the cursor. The cursor resources will be reclaimed if it is not accessed within the specified time interval. A value of 0 indicates no timeout.

Type: int

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/sort

The resource supports the following methods:

POST

Sorts the entire message result set managed by the cursor according to the JMS header attributes specified. The cursor position is set to the new position of the message corresponding to the "start" location before the sort is performed. The method returns the new cursor position.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The handle of the cursor.

Type: string

start

The location of the message before the sort that will be the first message returned after the sort. A value of -1 will place the cursor start position at the head of the new sort order.

Type: long

fields

The JMS header attributes on which to sort.

Type: array of string

ascending

Determines whether the sort of the corresponding fields element is in ascending or descending order.

Type: array of boolean

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/getCursorEndPosition

The resource supports the following methods:

POST

Returns the cursor end position in the result set.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/getCursorSize

The resource supports the following methods:

POST

Returns the number of items in the result set.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/getCursorStartPosition

The resource supports the following methods:

POST

Returns the cursor start position in the result set.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/getMessages

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Queries messages on the queue according to the provided message selector and state bitmask and returns a message cursor representing the result set. The timeout parameter specifies the amount of time in seconds for which the cursor is valid. Upon timeout expiration the cursor is invalidated and the associated resources released.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

selector

A valid JMS message selector.

Type: string

timeout

The last access timeout for the cursor. The cursor resources will be reclaimed if it is not accessed within the specified time interval. A value of 0 indicates no timeout.

Type: int

state

A messaging kernel state bitmask. Refer to the messaging kernel MessageElement interface for a description of the various message states.

Type: int

Response Body

Contains a JSON object with a string return field.

POST

Queries messages on the queue according to the provided message selector and returns a message cursor representing the result set. The timeout parameter specifies the amount of time in seconds for which the cursor is valid. Upon timeout expiration the cursor is invalidated and the associated resources released.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

selector

A valid JMS message selector.

Type: string

timeout

The last access timeout for the cursor. The cursor resources will be reclaimed if it is not accessed within the specified time interval. A value of 0 indicates no timeout.

Type: int

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/pauseConsumption

The resource supports the following methods:

POST

Pauses the consumption on the destination.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/pauseInsertion

The resource supports the following methods:

POST

Pauses the insertion on the destination.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/pauseProduction

The resource supports the following methods:

POST

Pauses the production on the destination.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/resumeConsumption

The resource supports the following methods:

POST

Resumes the consumption operations on the destination.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/resumeInsertion

The resource supports the following methods:

POST

Resumes the insertion operations on the destination.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/resumeProduction

The resource supports the following methods:

POST

Resumes the production operations on the destination.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/sort

The resource supports the following methods:

POST

Sorts the entire message result set managed by the cursor according to the JMS header attributes specified. The cursor position is set to the new position of the message corresponding to the "start" location before the sort is performed. The method returns the new cursor position.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The handle of the cursor.

Type: string

start

The location of the message before the sort that will be the first message returned after the sort. A value of -1 will place the cursor start position at the head of the new sort order.

Type: long

fields

The JMS header attributes on which to sort.

Type: array of string

ascending

Determines whether the sort of the corresponding fields element is in ascending or descending order.

Type: array of boolean

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/forceCommit

The resource supports the following methods:

POST

Causes the work associated with the specified transaction branch to be committed.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

xid

An xid in string representation for a JMS transaction branch.

Type: string

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/forceRollback

The resource supports the following methods:

POST

Causes the work associated with the specified transaction branch to be rolled back.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

xid

An xid in string representation for a JMS transaction branch.

Type: string

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/getCursorEndPosition

The resource supports the following methods:

POST

Returns the cursor end position in the result set.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/getCursorSize

The resource supports the following methods:

POST

Returns the number of items in the result set.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/getCursorStartPosition

The resource supports the following methods:

POST

Returns the cursor start position in the result set.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/getMessages

The resource supports the following methods:

POST

Returns a set of messages that are associated with a JMS transaction branch. Note that the result set is returned to the caller in the form of a message cursor that may contain messages from several destinations on this JMS server.

The timeout parameter specifies the amount of time in seconds for which the cursor is valid. Upon timeout expiration the cursor is invalidated and the associated resources released.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

xid

An Xid in string representation for a JMS transaction branch.

Type: string

timeoutSeconds

The last access timeout for the cursor. The cursor resources will be reclaimed if it is not accessed within the specified time interval. A value of 0 indicates no timeout.

Type: int

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/getTransactionStatus

The resource supports the following methods:

POST

Given an Xid this method returns the JTA status of the associated JMS transaction branch.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

xid

An Xid in string representation for a JMS transaction branch.

Type: string

Response Body

Contains a JSON object with a int return field.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/logRuntime

This resource manages a weblogic.management.runtime.LogRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/logRuntime/ensureLogOpened

The resource supports the following methods:

POST

Ensures that that the output stream to the underlying is opened if it got closed previously due to errors.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/logRuntime/flushLog

The resource supports the following methods:

POST

Flushes the buffer to the log file on disk.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/logRuntime/forceLogRotation

The resource supports the following methods:

POST

Forces the rotation of the underlying log immediately.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/pauseConsumption

The resource supports the following methods:

POST

Pauses the consumption operation on all the destinations hosted by the JMSServer.

When the JMSServer is paused for consumption, all of its destination's state is marked as "consumption paused" and all the new synchronous receive operations will block until the destination is resumed and there are messages available for consumption. All the synchronous receive with blocking timeout will block until the timeout happens during the consumption paused state.

All the asynchronous consumers attached to that destination will not get any messages delivered to them while the destination in "consumption paused" state.

After a successful consumption "pause" operation, the user has to explicitly "resume" the destination to allow for any further consume operations on that destination

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/pauseInsertion

The resource supports the following methods:

POST

Pauses the appearance of any messages on all the destinations of the JMSServer, that are result of the in-flight work completion on all the destinations hosted by this JMSServer.

Definition of In-Flight work

The definitions below are based on the current implementation of WebLogic JMS subsystem.

  • In-flight messages associated with Producers

    • UN-BORN MESSAGES

      Messages that are produced by the producer, with "birth time" (TimeToDeliver) set in future are called un-born messages and are counted as "pending" messages in the destination statistics and are not available for consumers yet.

    • UN-COMMITTED MESSAGES

      These are the messages that are produced by the producer as part of the transaction (using either user transaction or transacted session) and the transaction is still not committed or rolled back. These messages are also counted as "pending" messages in the destination statistics and are not available for consumption.

    • QUOTA BLOCKING SEND

      These are the messages that are produced by the producers but are not able reach the destination because of (either message or byte or both) quota limit on the destination and the producers are willing to block for a specific period of time for the quota to be available. These messages are invisible to the system and are not counted against any of the destination statistics.

  • In-flight messages associated with Consumers

    • UN-ACKNOWLEDGED (CLIENT ACK PENDING) MESSAGES

      These are the messages that are successfully consumed by the clients using a "client acknowledge" session, and are awaiting acknowledgements from the clients. These are "pending messages" which will be removed from the destination/system when the acknowledgement is received.

    • UN-COMMITTED MESSAGES

      These are the messages that are consumed (received) by the clients within a transaction (using either user transaction or transacted session) and the transaction is still not committed or rolled back. When the clients successfully commit the transaction the messages get removed from the system.

    • ROLLED BACK MESSAGES

      These are the messages that are put back on the destination because of a successful rollback of transactional receive by the consumers. These messages might or might not be ready for consumption (re-delivered) to the clients immediately, depending on the redelivery parameters, RedeliveryDelay and/or RedeliveryDelayOverride and RedeliveryLimit configured on the associated JMSConnectionFactory and JMSDestination respectively.

      If there is a redelivery delay configured, then for that "delay" duration, the messages are not available for consumption and are counted as "pending" in the destination statistics and after the "delay" period, if the redelivery limit is not exceeded, then they are delivered (made available for consumption) on that destination and are counted as "current" messages in the destination statistics. If the redelivery limit exceeds, then those messages will be moved to the ErrorDestination, if one configured.

      Another parameter that controls the availability of the rolled back messages is RedeliveryLimit.

    • RECOVERED MESSAGES

      These messages are similar to ROLLED BACK MESSAGES except that these messages appear on the queue because of an explicit call to session "recover" by the client.

    • REDELIVERED MESSAGES

      These are again similar to ROLLED BACK MESSAGES except that these messages may re-appear on the destination because of an un-successful delivery attempt to the client (consumer crash, close etc.).

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/pauseProduction

The resource supports the following methods:

POST

Pauses the new message production on all the destinations hosted by the JMSServer.

When the production paused, it would prevent any new produce operations from both new and existing producers attached to the destinations. When the destination is "resumed from production pause", all the new message production is allowed from both new and existing producers attached to that destination.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/resumeConsumption

The resource supports the following methods:

POST

Resumes the consumption operation on all the destinations hosted by the JMSSever.

The state of the destinations shall be marked as "consumption enabled" thus allowing all the "consuming" activity to continue normally.

Invoking this API on a JMSServer that is currently not in "consumption paused" state has no effect.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/resumeInsertion

The resource supports the following methods:

POST

Resumes the in-flight message production operation on all the destinations hosted by the JMSServer. The state of the JMSServer shall be marked as "insertion enabled" thus allowing all the messages from in-flight work completion are alloed to appear on the destinations.

Invoking this API on a JMSServer that is currently not in "insertion paused" state has no effect.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/resumeProduction

The resource supports the following methods:

POST

Resumes the new message production operation on all the destinations hosted by the JMSServer. The state of the JMSServer shall be marked as "production enabled" thus allowing all the new "producing" activity to continue normally. Invoking this API on a JMSServer that is currently not in "production paused" state has no effect.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/sort

The resource supports the following methods:

POST

Sorts the entire message result set managed by the cursor according to the JMS header attributes specified. The cursor position is set to the new position of the message corresponding to the "start" location before the sort is performed. The method returns the new cursor position.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The handle of the cursor.

Type: string

start

The location of the message before the sort that will be the first message returned after the sort. A value of -1 will place the cursor start position at the head of the new sort order.

Type: long

fields

The JMS header attributes on which to sort.

Type: array of string

ascending

Determines whether the sort of the corresponding fields element is in ascending or descending order.

Type: array of boolean

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/JMSRuntime/JMSServers/{name}/sort

The resource supports the following methods:

POST

Sorts the entire message result set managed by the cursor according to the JMS header attributes specified. The cursor position is set to the new position of the message corresponding to the "start" location before the sort is performed. The method returns the new cursor position.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The handle of the cursor.

Type: string

start

The location of the message before the sort that will be the first message returned after the sort. A value of -1 will place the cursor start position at the head of the new sort order.

Type: long

fields

The JMS header attributes on which to sort.

Type: array of string

ascending

Determines whether the sort of the corresponding fields element is in ascending or descending order.

Type: array of boolean

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/joltRuntime

This resource manages a weblogic.management.runtime.JoltConnectionServiceRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.JoltConnectionServiceRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.JoltConnectionServiceRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/joltRuntime/connectionPools

This resource manages a collection of weblogic.management.runtime.JoltConnectionPoolRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.JoltConnectionPoolRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.runtime.JoltConnectionPoolRuntimeMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/joltRuntime/connectionPools/{name}

This resource manages a weblogic.management.runtime.JoltConnectionPoolRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.JoltConnectionPoolRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.JoltConnectionPoolRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/joltRuntime/connectionPools/{name}/connections

This resource manages a collection of weblogic.management.runtime.JoltConnectionRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.JoltConnectionRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/joltRuntime/connectionPools/{name}/connections/{name}

This resource manages a weblogic.management.runtime.JoltConnectionRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/joltRuntime/connectionPools/{name}/resetConnectionPool

The resource supports the following methods:

POST

Resets the connection pool.

Roles

Admin

Response Body

Contains a JSON object with a int return field.

/management/weblogic/{version}/serverRuntime/JTARuntime

This resource manages a weblogic.management.runtime.JTARuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.JTARuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.JTARuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/JTARuntime/getRecoveryRuntimeMBean

The resource supports the following methods:

POST

Returns the runtime MBean for the Transaction Recovery Service of the specified server. If the Transaction Recovery Service of the specified server is not deployed on this server, null will be returned.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

serverName

serverName

Type: string

Response Body

Contains a JSON object with a weblogic.management.runtime.JTARecoveryRuntimeMBean reference return field.

/management/weblogic/{version}/serverRuntime/JTARuntime/nonXAResourceRuntimeMBeans

This resource manages a collection of weblogic.management.runtime.NonXAResourceRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.NonXAResourceRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.runtime.NonXAResourceRuntimeMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/JTARuntime/nonXAResourceRuntimeMBeans/{name}

This resource manages a weblogic.management.runtime.NonXAResourceRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.NonXAResourceRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/JTARuntime/recoveryRuntimeMBeans

This resource manages a collection of weblogic.management.runtime.JTARecoveryRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.JTARecoveryRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.runtime.JTARecoveryRuntimeMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/JTARuntime/recoveryRuntimeMBeans/{name}

This resource manages a weblogic.management.runtime.JTARecoveryRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.JTARecoveryRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/JTARuntime/transactionLogStoreRuntimeMBean

This resource manages a weblogic.management.runtime.PersistentStoreRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.PersistentStoreRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.PersistentStoreRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/JTARuntime/transactionLogStoreRuntimeMBean/connections

This resource manages a collection of weblogic.management.runtime.PersistentStoreConnectionRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.PersistentStoreConnectionRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/JTARuntime/transactionLogStoreRuntimeMBean/connections/{name}

This resource manages a weblogic.management.runtime.PersistentStoreConnectionRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/JTARuntime/transactionNameRuntimeMBeans

This resource manages a collection of weblogic.management.runtime.TransactionNameRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.TransactionNameRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.runtime.TransactionNameRuntimeMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/JTARuntime/transactionNameRuntimeMBeans/{name}

This resource manages a weblogic.management.runtime.TransactionNameRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.TransactionNameRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/JTARuntime/transactionResourceRuntimeMBeans

This resource manages a collection of weblogic.management.runtime.TransactionResourceRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.TransactionResourceRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.runtime.TransactionResourceRuntimeMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/JTARuntime/transactionResourceRuntimeMBeans/{name}

This resource manages a weblogic.management.runtime.TransactionResourceRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/JVMRuntime

This resource manages a weblogic.management.runtime.JVMRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.JVMRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.JVMRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/libraryRuntimes

This resource manages a collection of weblogic.management.runtime.LibraryRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.LibraryRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.runtime.LibraryRuntimeMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/libraryRuntimes/{name}

This resource manages a weblogic.management.runtime.LibraryRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.LibraryRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.LibraryRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/libraryRuntimes/{name}/referencingRuntimes

This resource manages a collection of weblogic.management.runtime.RuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.RuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.runtime.RuntimeMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/libraryRuntimes/{name}/referencingRuntimes/{name}

This resource manages a weblogic.management.runtime.RuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.RuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/logBroadcasterRuntime

This resource manages a weblogic.management.runtime.LogBroadcasterRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.LogBroadcasterRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.LogBroadcasterRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/mailSessionRuntimes

This resource manages a collection of weblogic.management.runtime.MailSessionRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.MailSessionRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.runtime.MailSessionRuntimeMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/mailSessionRuntimes/{name}

This resource manages a weblogic.management.runtime.MailSessionRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.MailSessionRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.MailSessionRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/MANAsyncReplicationRuntime

This resource manages a weblogic.management.runtime.MANAsyncReplicationRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.MANAsyncReplicationRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.MANAsyncReplicationRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/MANReplicationRuntime

This resource manages a weblogic.management.runtime.MANReplicationRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.MANReplicationRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.MANReplicationRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/maxThreadsConstraintRuntimes

This resource manages a collection of weblogic.management.runtime.MaxThreadsConstraintRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.MaxThreadsConstraintRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.runtime.MaxThreadsConstraintRuntimeMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/maxThreadsConstraintRuntimes/{name}

This resource manages a weblogic.management.runtime.MaxThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.MaxThreadsConstraintRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.MaxThreadsConstraintRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/messagingBridgeRuntimes

This resource manages a collection of weblogic.management.runtime.MessagingBridgeRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.MessagingBridgeRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.runtime.MessagingBridgeRuntimeMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/messagingBridgeRuntimes/{name}

This resource manages a weblogic.management.runtime.MessagingBridgeRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.MessagingBridgeRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.MessagingBridgeRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/minThreadsConstraintRuntimes

This resource manages a collection of weblogic.management.runtime.MinThreadsConstraintRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.MinThreadsConstraintRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.runtime.MinThreadsConstraintRuntimeMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/minThreadsConstraintRuntimes/{name}

This resource manages a weblogic.management.runtime.MinThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.MinThreadsConstraintRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.MinThreadsConstraintRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes

This resource manages a collection of weblogic.management.runtime.PartitionRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.PartitionRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.runtime.PartitionRuntimeMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}

This resource manages a weblogic.management.runtime.PartitionRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.PartitionRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.PartitionRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes

This resource manages a collection of weblogic.management.runtime.ApplicationRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.ApplicationRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.runtime.ApplicationRuntimeMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}

This resource manages a weblogic.management.runtime.ApplicationRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.ApplicationRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.ApplicationRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/classLoaderRuntime

This resource manages a weblogic.management.runtime.ClassLoaderRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/classRedefinitionRuntime

This resource manages a com.bea.wls.redef.runtime.ClassRedefinitionRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/classRedefinitionRuntime/classRedefinitionTasks

This resource manages a collection of com.bea.wls.redef.runtime.ClassRedefinitionTaskRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/classRedefinitionRuntime/classRedefinitionTasks/{name}

This resource manages a com.bea.wls.redef.runtime.ClassRedefinitionTaskRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/classRedefinitionRuntime/classRedefinitionTasks/{name}/cancel

The resource supports the following methods:

POST

Attempts to cancel this task.

An exception is thrown to indicate failure to cancel the task. Not all tasks can be cancelled.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/classRedefinitionRuntime/classRedefinitionTasks/{name}/subTasks

This resource manages a collection of weblogic.management.runtime.TaskRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/classRedefinitionRuntime/classRedefinitionTasks/{name}/subTasks/{name}

This resource manages a weblogic.management.runtime.TaskRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/classRedefinitionRuntime/classRedefinitionTasks/{name}/subTasks/{name}/cancel

The resource supports the following methods:

POST

Attempts to cancel this task.

An exception is thrown to indicate failure to cancel the task. Not all tasks can be cancelled.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/classRedefinitionRuntime/classRedefinitionTasks/{name}/subTasks/{name}/subTasks

This resource manages a collection of weblogic.management.runtime.TaskRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/classRedefinitionRuntime/classRedefinitionTasks/{name}/subTasks/{name}/subTasks/{name}

This resource manages a weblogic.management.runtime.TaskRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.TaskRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.TaskRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/classRedefinitionRuntime/classRedefinitionTasks/{name}/subTasks/{name}/subTasks/{name}/cancel

The resource supports the following methods:

POST

Attempts to cancel this task.

An exception is thrown to indicate failure to cancel the task. Not all tasks can be cancelled.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/classRedefinitionRuntime/redefineClasses

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Initiate a class redefinition cycle, which will identify classes which may have changed and then attempt to redefine them. Class redefinition will be performed asynchronously. The progress of the class redefinition process can be monitored with the returned task.

This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.

Roles

Admin

Response Body

Contains a JSON object with a com.bea.wls.redef.runtime.ClassRedefinitionTaskRuntimeMBean reference return field.

POST

Initiate a class redefinition cycle, to redefine only the specified classes from given module. Class redefinition will be performed asynchronously. The progress of the class redefinition process can be monitored with the returned task. If specified module name is null, any classes within the application (scoped to any modules as well as globally scoped classes) which are included in the list will be redefined.

This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

moduleName

Module from which the classes are to be redefined.

Type: string

classNames

Classes to be redefined.

Type: array of string

Response Body

Contains a JSON object with a com.bea.wls.redef.runtime.ClassRedefinitionTaskRuntimeMBean reference return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/coherenceClusterRuntime

This resource manages a weblogic.management.runtime.CoherenceClusterRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/componentRuntimes

This resource manages a collection of weblogic.management.runtime.ComponentRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.ComponentRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/componentRuntimes/{name}

This resource manages a weblogic.management.runtime.ComponentRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/componentRuntimes/{name}/workManagerRuntimes

This resource manages a collection of weblogic.management.runtime.WorkManagerRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/componentRuntimes/{name}/workManagerRuntimes/{name}

This resource manages a weblogic.management.runtime.WorkManagerRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WorkManagerRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.WorkManagerRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/componentRuntimes/{name}/workManagerRuntimes/{name}/capacityRuntime

This resource manages a weblogic.management.runtime.CapacityRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/componentRuntimes/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MaxThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/componentRuntimes/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MinThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/componentRuntimes/{name}/workManagerRuntimes/{name}/requestClassRuntime

This resource manages a weblogic.management.runtime.RequestClassRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/getPersistenceUnitRuntime

The resource supports the following methods:

POST

Provides the PersistenceUnitRuntimeMBean for the application with the specified name.

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

unitName

unitName

Type: string

Response Body

Contains a JSON object with a weblogic.management.runtime.PersistenceUnitRuntimeMBean reference return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/hasApplicationCache

The resource supports the following methods:

POST

Returns true if the application has an (EJB) Application Level Cache

Roles

Admin, Operator

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/libraryRuntimes

This resource manages a collection of weblogic.management.runtime.LibraryRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.LibraryRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/libraryRuntimes/{name}

This resource manages a weblogic.management.runtime.LibraryRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/libraryRuntimes/{name}/referencingRuntimes

This resource manages a collection of weblogic.management.runtime.RuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/libraryRuntimes/{name}/referencingRuntimes/{name}

This resource manages a weblogic.management.runtime.RuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/managedExecutorServiceRuntimes

This resource manages a collection of weblogic.management.runtime.ManagedExecutorServiceRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/managedExecutorServiceRuntimes/{name}

This resource manages a weblogic.management.runtime.ManagedExecutorServiceRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/managedExecutorServiceRuntimes/{name}/workManager

This resource manages a weblogic.management.runtime.WorkManagerRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WorkManagerRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.WorkManagerRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/managedExecutorServiceRuntimes/{name}/workManager/capacityRuntime

This resource manages a weblogic.management.runtime.CapacityRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/managedExecutorServiceRuntimes/{name}/workManager/maxThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MaxThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/managedExecutorServiceRuntimes/{name}/workManager/minThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MinThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/managedExecutorServiceRuntimes/{name}/workManager/requestClassRuntime

This resource manages a weblogic.management.runtime.RequestClassRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/managedScheduledExecutorServiceRuntimes

This resource manages a collection of weblogic.management.runtime.ManagedScheduledExecutorServiceRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/managedScheduledExecutorServiceRuntimes/{name}

This resource manages a weblogic.management.runtime.ManagedScheduledExecutorServiceRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/managedScheduledExecutorServiceRuntimes/{name}/workManager

This resource manages a weblogic.management.runtime.WorkManagerRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WorkManagerRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.WorkManagerRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/managedScheduledExecutorServiceRuntimes/{name}/workManager/capacityRuntime

This resource manages a weblogic.management.runtime.CapacityRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/managedScheduledExecutorServiceRuntimes/{name}/workManager/maxThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MaxThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/managedScheduledExecutorServiceRuntimes/{name}/workManager/minThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MinThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/managedScheduledExecutorServiceRuntimes/{name}/workManager/requestClassRuntime

This resource manages a weblogic.management.runtime.RequestClassRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/managedThreadFactoryRuntimes

This resource manages a collection of weblogic.management.runtime.ManagedThreadFactoryRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/managedThreadFactoryRuntimes/{name}

This resource manages a weblogic.management.runtime.ManagedThreadFactoryRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/maxThreadsConstraintRuntimes

This resource manages a collection of weblogic.management.runtime.MaxThreadsConstraintRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/maxThreadsConstraintRuntimes/{name}

This resource manages a weblogic.management.runtime.MaxThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/minThreadsConstraintRuntimes

This resource manages a collection of weblogic.management.runtime.MinThreadsConstraintRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/minThreadsConstraintRuntimes/{name}

This resource manages a weblogic.management.runtime.MinThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/optionalPackageRuntimes

This resource manages a collection of weblogic.management.runtime.LibraryRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/optionalPackageRuntimes/{name}

This resource manages a weblogic.management.runtime.LibraryRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/optionalPackageRuntimes/{name}/referencingRuntimes

This resource manages a collection of weblogic.management.runtime.RuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/optionalPackageRuntimes/{name}/referencingRuntimes/{name}

This resource manages a weblogic.management.runtime.RuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/persistenceUnitRuntimes

This resource manages a collection of weblogic.management.runtime.PersistenceUnitRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/persistenceUnitRuntimes/{name}

This resource manages a weblogic.management.runtime.PersistenceUnitRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/queryCacheRuntimes

This resource manages a collection of weblogic.management.runtime.QueryCacheRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.QueryCacheRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/queryCacheRuntimes/{name}

This resource manages a weblogic.management.runtime.QueryCacheRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/reInitializeApplicationCachesAndPools

The resource supports the following methods:

POST

If the application has an (EJB) Application Level Cache, then this method will reinitialize the cache and any of its associated pools to their startup time states if possible.

Roles

Admin, Operator

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/requestClassRuntimes

This resource manages a collection of weblogic.management.runtime.RequestClassRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/requestClassRuntimes/{name}

This resource manages a weblogic.management.runtime.RequestClassRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/workManagerRuntimes

This resource manages a collection of weblogic.management.runtime.WorkManagerRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/workManagerRuntimes/{name}

This resource manages a weblogic.management.runtime.WorkManagerRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WorkManagerRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.WorkManagerRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/workManagerRuntimes/{name}/capacityRuntime

This resource manages a weblogic.management.runtime.CapacityRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MaxThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MinThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/workManagerRuntimes/{name}/requestClassRuntime

This resource manages a weblogic.management.runtime.RequestClassRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/wseeV2Runtimes

This resource manages a collection of weblogic.management.runtime.WseeV2RuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.WseeV2RuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/wseeV2Runtimes/{name}

This resource manages a weblogic.management.runtime.WseeV2RuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/wseeV2Runtimes/{name}/policyRuntime

This resource manages a weblogic.management.runtime.WseePolicyRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports

This resource manages a collection of weblogic.management.runtime.WseePortRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}

This resource manages a weblogic.management.runtime.WseePortRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WseePortRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.WseePortRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}/aggregatedBaseOperations

This resource manages a weblogic.management.runtime.WseeAggregatableBaseOperationRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}/baseOperations

This resource manages a collection of weblogic.management.runtime.WseeBaseOperationRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}/baseOperations/{name}

This resource manages a weblogic.management.runtime.WseeBaseOperationRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}/clusterRouting

This resource manages a weblogic.management.runtime.WseeClusterRoutingRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}/handlers

This resource manages a collection of weblogic.management.runtime.WseeHandlerRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}/handlers/{name}

This resource manages a weblogic.management.runtime.WseeHandlerRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}/mc

This resource manages a weblogic.management.runtime.WseeMcRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}/operations

This resource manages a collection of weblogic.management.runtime.WseeOperationRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}/operations/{name}

This resource manages a weblogic.management.runtime.WseeOperationRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}/portPolicy

This resource manages a weblogic.management.runtime.WseePortPolicyRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/applicationRuntimes/{name}/wseeV2Runtimes/{name}/ports/{name}/wsrm

This resource manages a weblogic.management.runtime.WseeWsrmRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/batchJobRepositoryRuntime

This resource manages a weblogic.management.runtime.BatchJobRepositoryRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.BatchJobRepositoryRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/concurrentManagedObjectsRuntime

This resource manages a weblogic.management.runtime.ConcurrentManagedObjectsRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.ConcurrentManagedObjectsRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.ConcurrentManagedObjectsRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/concurrentManagedObjectsRuntime/managedExecutorServiceRuntimes

This resource manages a collection of weblogic.management.runtime.ManagedExecutorServiceRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/concurrentManagedObjectsRuntime/managedExecutorServiceRuntimes/{name}

This resource manages a weblogic.management.runtime.ManagedExecutorServiceRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/concurrentManagedObjectsRuntime/managedExecutorServiceRuntimes/{name}/workManager

This resource manages a weblogic.management.runtime.WorkManagerRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WorkManagerRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.WorkManagerRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/concurrentManagedObjectsRuntime/managedExecutorServiceRuntimes/{name}/workManager/capacityRuntime

This resource manages a weblogic.management.runtime.CapacityRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/concurrentManagedObjectsRuntime/managedExecutorServiceRuntimes/{name}/workManager/maxThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MaxThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/concurrentManagedObjectsRuntime/managedExecutorServiceRuntimes/{name}/workManager/minThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MinThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/concurrentManagedObjectsRuntime/managedExecutorServiceRuntimes/{name}/workManager/requestClassRuntime

This resource manages a weblogic.management.runtime.RequestClassRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/concurrentManagedObjectsRuntime/managedScheduledExecutorServiceRuntimes

This resource manages a collection of weblogic.management.runtime.ManagedScheduledExecutorServiceRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/concurrentManagedObjectsRuntime/managedScheduledExecutorServiceRuntimes/{name}

This resource manages a weblogic.management.runtime.ManagedScheduledExecutorServiceRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/concurrentManagedObjectsRuntime/managedScheduledExecutorServiceRuntimes/{name}/workManager

This resource manages a weblogic.management.runtime.WorkManagerRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WorkManagerRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.WorkManagerRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/concurrentManagedObjectsRuntime/managedScheduledExecutorServiceRuntimes/{name}/workManager/capacityRuntime

This resource manages a weblogic.management.runtime.CapacityRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/concurrentManagedObjectsRuntime/managedScheduledExecutorServiceRuntimes/{name}/workManager/maxThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MaxThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/concurrentManagedObjectsRuntime/managedScheduledExecutorServiceRuntimes/{name}/workManager/minThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MinThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/concurrentManagedObjectsRuntime/managedScheduledExecutorServiceRuntimes/{name}/workManager/requestClassRuntime

This resource manages a weblogic.management.runtime.RequestClassRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/concurrentManagedObjectsRuntime/managedThreadFactoryRuntimes

This resource manages a collection of weblogic.management.runtime.ManagedThreadFactoryRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/concurrentManagedObjectsRuntime/managedThreadFactoryRuntimes/{name}

This resource manages a weblogic.management.runtime.ManagedThreadFactoryRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime

This resource manages a weblogic.management.runtime.ConnectorServiceRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.ConnectorServiceRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.ConnectorServiceRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs

This resource manages a collection of weblogic.management.runtime.ConnectorComponentRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.ConnectorComponentRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}

This resource manages a weblogic.management.runtime.ConnectorComponentRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.ConnectorComponentRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.ConnectorComponentRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools

This resource manages a collection of weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}

This resource manages a weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/connections

This resource manages a collection of weblogic.management.runtime.ConnectorConnectionRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/connections/{name}

This resource manages a weblogic.management.runtime.ConnectorConnectionRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.ConnectorConnectionRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/connections/{name}/delete

The resource supports the following methods:

POST

Provides a way to manually close a connection through the console.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/connections/{name}/hasError

The resource supports the following methods:

POST

Return a flag indicating whether the connection has an error or not. A "true" is returned if there is an error.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/connections/{name}/testConnection

The resource supports the following methods:

POST

Test the connection. Returns true if the test was successful.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/ensureLogOpened

The resource supports the following methods:

POST

Ensures that that the output stream to the underlying is opened if it got closed previously due to errors.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/flushLog

The resource supports the following methods:

POST

Flushes the buffer to the log file on disk.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/forceLogRotation

The resource supports the following methods:

POST

Forces the rotation of the underlying log immediately.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/forceReset

The resource supports the following methods:

POST

Force immediately discard all used/unused connections and recreate connection pool (and using new configuration if user update the pool's configuration).

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/logRuntime

This resource manages a weblogic.management.runtime.LogRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/logRuntime/ensureLogOpened

The resource supports the following methods:

POST

Ensures that that the output stream to the underlying is opened if it got closed previously due to errors.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/logRuntime/flushLog

The resource supports the following methods:

POST

Flushes the buffer to the log file on disk.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/logRuntime/forceLogRotation

The resource supports the following methods:

POST

Forces the rotation of the underlying log immediately.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/reset

The resource supports the following methods:

POST

Reset connection pool Discard all unused connections and recreate connection pool (and using new configuration if user update the pool's configuration) if no connection from pool is reserved by client application. If any connection from the connection pool is currently in use, the operation fails and false will be returned, otherwise all connections will be reset and true will be returned.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/testPool

The resource supports the following methods:

POST

Test all the available connections in the pool. Returns true if all the connections passed the test and false it at least one failed the test.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime

This resource manages a weblogic.management.runtime.ConnectorServiceRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.ConnectorServiceRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.ConnectorServiceRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/getInboundConnections

The resource supports the following methods:

POST

Returns runtime information for the specified inbound connection. A null is returned if the inbound connection is not found.

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

messageListenerType

Message listener type.

Type: string

Response Body

Contains a JSON object with a array of weblogic.management.runtime.ConnectorInboundRuntimeMBean references return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/getRA

The resource supports the following methods:

POST

Returns the runtime information of the resource adapter specified by the given JNDI name. A null is returned if the resource adapter cannot be found. This function returns the active RA if multiple versions of the resource adapters has been deployed

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

key

The JNDI name of the resource adapter.

Type: string

Response Body

Contains a JSON object with a weblogic.management.runtime.ConnectorComponentRuntimeMBean reference return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs

This resource manages a collection of weblogic.management.runtime.ConnectorComponentRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}

This resource manages a weblogic.management.runtime.ConnectorComponentRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.ConnectorComponentRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.ConnectorComponentRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools

This resource manages a collection of weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}

This resource manages a weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/connections

This resource manages a collection of weblogic.management.runtime.ConnectorConnectionRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/connections/{name}

This resource manages a weblogic.management.runtime.ConnectorConnectionRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.ConnectorConnectionRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.ConnectorConnectionRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/connections/{name}/delete

The resource supports the following methods:

POST

Provides a way to manually close a connection through the console.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/connections/{name}/hasError

The resource supports the following methods:

POST

Return a flag indicating whether the connection has an error or not. A "true" is returned if there is an error.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/connections/{name}/testConnection

The resource supports the following methods:

POST

Test the connection. Returns true if the test was successful.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/ensureLogOpened

The resource supports the following methods:

POST

Ensures that that the output stream to the underlying is opened if it got closed previously due to errors.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/flushLog

The resource supports the following methods:

POST

Flushes the buffer to the log file on disk.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/forceLogRotation

The resource supports the following methods:

POST

Forces the rotation of the underlying log immediately.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/forceReset

The resource supports the following methods:

POST

Force immediately discard all used/unused connections and recreate connection pool (and using new configuration if user update the pool's configuration).

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/logRuntime

This resource manages a weblogic.management.runtime.LogRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.LogRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.LogRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/logRuntime/ensureLogOpened

The resource supports the following methods:

POST

Ensures that that the output stream to the underlying is opened if it got closed previously due to errors.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/logRuntime/flushLog

The resource supports the following methods:

POST

Flushes the buffer to the log file on disk.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/logRuntime/forceLogRotation

The resource supports the following methods:

POST

Forces the rotation of the underlying log immediately.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/reset

The resource supports the following methods:

POST

Reset connection pool Discard all unused connections and recreate connection pool (and using new configuration if user update the pool's configuration) if no connection from pool is reserved by client application. If any connection from the connection pool is currently in use, the operation fails and false will be returned, otherwise all connections will be reset and true will be returned.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/testPool

The resource supports the following methods:

POST

Test all the available connections in the pool. Returns true if all the connections passed the test and false it at least one failed the test.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorWorkManagerRuntime

This resource manages a weblogic.management.runtime.ConnectorWorkManagerRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/getConfiguration

The resource supports the following methods:

POST

Return the xml string representing the RA configuration. The xml corresponding to the version specified is returned.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

version

String

Type: string

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/getConnectionPool

The resource supports the following methods:

POST

Returns a ConnectorConnectionPoolRuntimeMBean that represents the statistics for a connection pool. The pool that is accessed in this call must be part of the resource adapter that is being accessed. A null is returned if the JNDI name or resource-link name is not found.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

key

JNDI name or resource-link name of the connection pool.

Type: string

Response Body

Contains a JSON object with a weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean reference return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/getInboundConnection

The resource supports the following methods:

POST

Runtime information for the specified inbound connection. A null is returned if the inbound connection is not found in the resource adapter.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

messageListenerType

Message listener type.

Type: string

Response Body

Contains a JSON object with a weblogic.management.runtime.ConnectorInboundRuntimeMBean reference return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/getSchema

The resource supports the following methods:

POST

Get the schema for RA configuration based on the version that is provided. Return null if the version is not found. The current supported version is "1.0"

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

version

String

Type: string

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections

This resource manages a collection of weblogic.management.runtime.ConnectorInboundRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes

This resource manages a collection of weblogic.management.runtime.MessageDrivenEJBRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}

This resource manages a weblogic.management.runtime.MessageDrivenEJBRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.MessageDrivenEJBRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.MessageDrivenEJBRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime

This resource manages a weblogic.management.runtime.EJBPoolRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime/initializePool

The resource supports the following methods:

POST

Instructs the Pool to initialize itself to its configured startup time size.

This is a synchronous and will wait until the pool is initialized before returning.

Roles

Admin, Operator

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resources

This resource manages a collection of weblogic.management.runtime.RuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resources/{name}

This resource manages a weblogic.management.runtime.RuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resume

The resource supports the following methods:

POST

Resumes the specific type of MDB by calling start on the JMS Connection.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/suspend

The resource supports the following methods:

POST

Suspends the specific type of MDB by calling stop on the JMS Connection.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime

This resource manages a weblogic.management.runtime.EJBTimerRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime/activateDisabledTimers

The resource supports the following methods:

POST

Activate any temporarily disabled timers.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/transactionRuntime

This resource manages a weblogic.management.runtime.EJBTransactionRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/resume

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Resumes the specified type of activity for this resource adapter

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

Response Body

Contains an empty JSON object.

POST

Resumes the specified type of activity for this resource adapter

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

props

Properties to pass on to the RA or null

Type: java.util.Properties

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/resumeAll

The resource supports the following methods:

POST

Resumes all activities of this resource adapter.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/suspend

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Suspends the specified type of activity for this resource adapter

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

props

Properties to pass on to the RA or null

Type: java.util.Properties

Response Body

Contains an empty JSON object.

POST

Suspend a particular type of activity for this resource adapter

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/suspendAll

The resource supports the following methods:

POST

Resumes all activities of this resource adapter.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime

This resource manages a weblogic.management.runtime.WorkManagerRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WorkManagerRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.WorkManagerRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime/capacityRuntime

This resource manages a weblogic.management.runtime.CapacityRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime/maxThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MaxThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime/minThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MinThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime/requestClassRuntime

This resource manages a weblogic.management.runtime.RequestClassRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes

This resource manages a collection of weblogic.management.runtime.WorkManagerRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name}

This resource manages a weblogic.management.runtime.WorkManagerRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WorkManagerRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.WorkManagerRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name}/capacityRuntime

This resource manages a weblogic.management.runtime.CapacityRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MaxThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MinThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name}/requestClassRuntime

This resource manages a weblogic.management.runtime.RequestClassRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs

This resource manages a collection of weblogic.management.runtime.ConnectorComponentRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}

This resource manages a weblogic.management.runtime.ConnectorComponentRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.ConnectorComponentRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.ConnectorComponentRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools

This resource manages a collection of weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}

This resource manages a weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/connections

This resource manages a collection of weblogic.management.runtime.ConnectorConnectionRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/connections/{name}

This resource manages a weblogic.management.runtime.ConnectorConnectionRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.ConnectorConnectionRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.ConnectorConnectionRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/connections/{name}/delete

The resource supports the following methods:

POST

Provides a way to manually close a connection through the console.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/connections/{name}/hasError

The resource supports the following methods:

POST

Return a flag indicating whether the connection has an error or not. A "true" is returned if there is an error.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/connections/{name}/testConnection

The resource supports the following methods:

POST

Test the connection. Returns true if the test was successful.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/ensureLogOpened

The resource supports the following methods:

POST

Ensures that that the output stream to the underlying is opened if it got closed previously due to errors.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/flushLog

The resource supports the following methods:

POST

Flushes the buffer to the log file on disk.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/forceLogRotation

The resource supports the following methods:

POST

Forces the rotation of the underlying log immediately.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/forceReset

The resource supports the following methods:

POST

Force immediately discard all used/unused connections and recreate connection pool (and using new configuration if user update the pool's configuration).

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/logRuntime

This resource manages a weblogic.management.runtime.LogRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.LogRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.LogRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/logRuntime/ensureLogOpened

The resource supports the following methods:

POST

Ensures that that the output stream to the underlying is opened if it got closed previously due to errors.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/logRuntime/flushLog

The resource supports the following methods:

POST

Flushes the buffer to the log file on disk.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/logRuntime/forceLogRotation

The resource supports the following methods:

POST

Forces the rotation of the underlying log immediately.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/reset

The resource supports the following methods:

POST

Reset connection pool Discard all unused connections and recreate connection pool (and using new configuration if user update the pool's configuration) if no connection from pool is reserved by client application. If any connection from the connection pool is currently in use, the operation fails and false will be returned, otherwise all connections will be reset and true will be returned.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/testPool

The resource supports the following methods:

POST

Test all the available connections in the pool. Returns true if all the connections passed the test and false it at least one failed the test.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/connectorWorkManagerRuntime

This resource manages a weblogic.management.runtime.ConnectorWorkManagerRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/getConfiguration

The resource supports the following methods:

POST

Return the xml string representing the RA configuration. The xml corresponding to the version specified is returned.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

version

String

Type: string

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/getConnectionPool

The resource supports the following methods:

POST

Returns a ConnectorConnectionPoolRuntimeMBean that represents the statistics for a connection pool. The pool that is accessed in this call must be part of the resource adapter that is being accessed. A null is returned if the JNDI name or resource-link name is not found.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

key

JNDI name or resource-link name of the connection pool.

Type: string

Response Body

Contains a JSON object with a weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean reference return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/getInboundConnection

The resource supports the following methods:

POST

Runtime information for the specified inbound connection. A null is returned if the inbound connection is not found in the resource adapter.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

messageListenerType

Message listener type.

Type: string

Response Body

Contains a JSON object with a weblogic.management.runtime.ConnectorInboundRuntimeMBean reference return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/getSchema

The resource supports the following methods:

POST

Get the schema for RA configuration based on the version that is provided. Return null if the version is not found. The current supported version is "1.0"

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

version

String

Type: string

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections

This resource manages a collection of weblogic.management.runtime.ConnectorInboundRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}

This resource manages a weblogic.management.runtime.ConnectorInboundRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes

This resource manages a collection of weblogic.management.runtime.MessageDrivenEJBRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}

This resource manages a weblogic.management.runtime.MessageDrivenEJBRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.MessageDrivenEJBRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.MessageDrivenEJBRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime

This resource manages a weblogic.management.runtime.EJBPoolRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime/initializePool

The resource supports the following methods:

POST

Instructs the Pool to initialize itself to its configured startup time size.

This is a synchronous and will wait until the pool is initialized before returning.

Roles

Admin, Operator

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resources

This resource manages a collection of weblogic.management.runtime.RuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resources/{name}

This resource manages a weblogic.management.runtime.RuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resume

The resource supports the following methods:

POST

Resumes the specific type of MDB by calling start on the JMS Connection.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/suspend

The resource supports the following methods:

POST

Suspends the specific type of MDB by calling stop on the JMS Connection.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime

This resource manages a weblogic.management.runtime.EJBTimerRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime/activateDisabledTimers

The resource supports the following methods:

POST

Activate any temporarily disabled timers.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/transactionRuntime

This resource manages a weblogic.management.runtime.EJBTransactionRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/resume

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Resumes the specified type of activity for this resource adapter

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

Response Body

Contains an empty JSON object.

POST

Resumes the specified type of activity for this resource adapter

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

props

Properties to pass on to the RA or null

Type: java.util.Properties

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/resumeAll

The resource supports the following methods:

POST

Resumes all activities of this resource adapter.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/suspend

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Suspends the specified type of activity for this resource adapter

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

props

Properties to pass on to the RA or null

Type: java.util.Properties

Response Body

Contains an empty JSON object.

POST

Suspend a particular type of activity for this resource adapter

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/suspendAll

The resource supports the following methods:

POST

Resumes all activities of this resource adapter.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime

This resource manages a weblogic.management.runtime.WorkManagerRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WorkManagerRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.WorkManagerRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime/capacityRuntime

This resource manages a weblogic.management.runtime.CapacityRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime/maxThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MaxThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime/minThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MinThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime/requestClassRuntime

This resource manages a weblogic.management.runtime.RequestClassRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes

This resource manages a collection of weblogic.management.runtime.WorkManagerRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name}

This resource manages a weblogic.management.runtime.WorkManagerRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WorkManagerRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.WorkManagerRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name}/capacityRuntime

This resource manages a weblogic.management.runtime.CapacityRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MaxThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MinThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name}/requestClassRuntime

This resource manages a weblogic.management.runtime.RequestClassRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/resume

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Resumes the specified type of activity for all RAs

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

props

Properties to pass on to the RA or null

Type: java.util.Properties

Response Body

Contains an empty JSON object.

POST

Resumes the specified type of activity for all RAs.

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/resumeAll

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Resumes all activities of all resource adapters.

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

props

Properties to be passed to the resource adapters or null

Type: java.util.Properties

Response Body

Contains an empty JSON object.

POST

Resumes all activities of all resource adapters.

Roles

Admin, Operator

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/suspend

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Suspends the specified type of activity for all RAs

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

props

Properties to pass on to the RA or null

Type: java.util.Properties

Response Body

Contains an empty JSON object.

POST

Suspends the specified type of activity for all RAs.

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorServiceRuntime/suspendAll

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Suspends all activities of all resource adapters.

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

props

Properties to be passed to the resource adapters or null

Type: java.util.Properties

Response Body

Contains an empty JSON object.

POST

Suspends all activities of all resource adapters.

Roles

Admin, Operator

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/connectorWorkManagerRuntime

This resource manages a weblogic.management.runtime.ConnectorWorkManagerRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/getConfiguration

The resource supports the following methods:

POST

Return the xml string representing the RA configuration. The xml corresponding to the version specified is returned.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

version

String

Type: string

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/getConnectionPool

The resource supports the following methods:

POST

Returns a ConnectorConnectionPoolRuntimeMBean that represents the statistics for a connection pool. The pool that is accessed in this call must be part of the resource adapter that is being accessed. A null is returned if the JNDI name or resource-link name is not found.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

key

JNDI name or resource-link name of the connection pool.

Type: string

Response Body

Contains a JSON object with a weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean reference return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/getInboundConnection

The resource supports the following methods:

POST

Runtime information for the specified inbound connection. A null is returned if the inbound connection is not found in the resource adapter.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

messageListenerType

Message listener type.

Type: string

Response Body

Contains a JSON object with a weblogic.management.runtime.ConnectorInboundRuntimeMBean reference return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/getSchema

The resource supports the following methods:

POST

Get the schema for RA configuration based on the version that is provided. Return null if the version is not found. The current supported version is "1.0"

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

version

String

Type: string

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections

This resource manages a collection of weblogic.management.runtime.ConnectorInboundRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}

This resource manages a weblogic.management.runtime.ConnectorInboundRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes

This resource manages a collection of weblogic.management.runtime.MessageDrivenEJBRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}

This resource manages a weblogic.management.runtime.MessageDrivenEJBRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.MessageDrivenEJBRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.MessageDrivenEJBRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime

This resource manages a weblogic.management.runtime.EJBPoolRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime/initializePool

The resource supports the following methods:

POST

Instructs the Pool to initialize itself to its configured startup time size.

This is a synchronous and will wait until the pool is initialized before returning.

Roles

Admin, Operator

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resources

This resource manages a collection of weblogic.management.runtime.RuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resources/{name}

This resource manages a weblogic.management.runtime.RuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resume

The resource supports the following methods:

POST

Resumes the specific type of MDB by calling start on the JMS Connection.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/suspend

The resource supports the following methods:

POST

Suspends the specific type of MDB by calling stop on the JMS Connection.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime

This resource manages a weblogic.management.runtime.EJBTimerRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime/activateDisabledTimers

The resource supports the following methods:

POST

Activate any temporarily disabled timers.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/transactionRuntime

This resource manages a weblogic.management.runtime.EJBTransactionRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/resume

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Resumes the specified type of activity for this resource adapter

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

Response Body

Contains an empty JSON object.

POST

Resumes the specified type of activity for this resource adapter

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

props

Properties to pass on to the RA or null

Type: java.util.Properties

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/resumeAll

The resource supports the following methods:

POST

Resumes all activities of this resource adapter.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/suspend

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Suspends the specified type of activity for this resource adapter

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

props

Properties to pass on to the RA or null

Type: java.util.Properties

Response Body

Contains an empty JSON object.

POST

Suspend a particular type of activity for this resource adapter

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/suspendAll

The resource supports the following methods:

POST

Resumes all activities of this resource adapter.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime

This resource manages a weblogic.management.runtime.WorkManagerRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WorkManagerRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.WorkManagerRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime/capacityRuntime

This resource manages a weblogic.management.runtime.CapacityRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime/maxThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MaxThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime/minThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MinThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime/requestClassRuntime

This resource manages a weblogic.management.runtime.RequestClassRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes

This resource manages a collection of weblogic.management.runtime.WorkManagerRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name}

This resource manages a weblogic.management.runtime.WorkManagerRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WorkManagerRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.WorkManagerRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name}/capacityRuntime

This resource manages a weblogic.management.runtime.CapacityRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MaxThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MinThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name}/requestClassRuntime

This resource manages a weblogic.management.runtime.RequestClassRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/getInboundConnections

The resource supports the following methods:

POST

Returns runtime information for the specified inbound connection. A null is returned if the inbound connection is not found.

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

messageListenerType

Message listener type.

Type: string

Response Body

Contains a JSON object with a array of weblogic.management.runtime.ConnectorInboundRuntimeMBean references return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/getRA

The resource supports the following methods:

POST

Returns the runtime information of the resource adapter specified by the given JNDI name. A null is returned if the resource adapter cannot be found. This function returns the active RA if multiple versions of the resource adapters has been deployed

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

key

The JNDI name of the resource adapter.

Type: string

Response Body

Contains a JSON object with a weblogic.management.runtime.ConnectorComponentRuntimeMBean reference return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs

This resource manages a collection of weblogic.management.runtime.ConnectorComponentRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.ConnectorComponentRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}

This resource manages a weblogic.management.runtime.ConnectorComponentRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.ConnectorComponentRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.ConnectorComponentRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools

This resource manages a collection of weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}

This resource manages a weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/connections

This resource manages a collection of weblogic.management.runtime.ConnectorConnectionRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/connections/{name}

This resource manages a weblogic.management.runtime.ConnectorConnectionRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.ConnectorConnectionRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/connections/{name}/delete

The resource supports the following methods:

POST

Provides a way to manually close a connection through the console.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/connections/{name}/hasError

The resource supports the following methods:

POST

Return a flag indicating whether the connection has an error or not. A "true" is returned if there is an error.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/connections/{name}/testConnection

The resource supports the following methods:

POST

Test the connection. Returns true if the test was successful.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/ensureLogOpened

The resource supports the following methods:

POST

Ensures that that the output stream to the underlying is opened if it got closed previously due to errors.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/flushLog

The resource supports the following methods:

POST

Flushes the buffer to the log file on disk.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/forceLogRotation

The resource supports the following methods:

POST

Forces the rotation of the underlying log immediately.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/forceReset

The resource supports the following methods:

POST

Force immediately discard all used/unused connections and recreate connection pool (and using new configuration if user update the pool's configuration).

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/logRuntime

This resource manages a weblogic.management.runtime.LogRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.LogRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/logRuntime/ensureLogOpened

The resource supports the following methods:

POST

Ensures that that the output stream to the underlying is opened if it got closed previously due to errors.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/logRuntime/flushLog

The resource supports the following methods:

POST

Flushes the buffer to the log file on disk.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/logRuntime/forceLogRotation

The resource supports the following methods:

POST

Forces the rotation of the underlying log immediately.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/reset

The resource supports the following methods:

POST

Reset connection pool Discard all unused connections and recreate connection pool (and using new configuration if user update the pool's configuration) if no connection from pool is reserved by client application. If any connection from the connection pool is currently in use, the operation fails and false will be returned, otherwise all connections will be reset and true will be returned.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/testPool

The resource supports the following methods:

POST

Test all the available connections in the pool. Returns true if all the connections passed the test and false it at least one failed the test.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime

This resource manages a weblogic.management.runtime.ConnectorServiceRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.ConnectorServiceRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.ConnectorServiceRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs

This resource manages a collection of weblogic.management.runtime.ConnectorComponentRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}

This resource manages a weblogic.management.runtime.ConnectorComponentRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.ConnectorComponentRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.ConnectorComponentRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools

This resource manages a collection of weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}

This resource manages a weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/connections

This resource manages a collection of weblogic.management.runtime.ConnectorConnectionRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/connections/{name}

This resource manages a weblogic.management.runtime.ConnectorConnectionRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.ConnectorConnectionRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.ConnectorConnectionRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/connections/{name}/delete

The resource supports the following methods:

POST

Provides a way to manually close a connection through the console.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/connections/{name}/hasError

The resource supports the following methods:

POST

Return a flag indicating whether the connection has an error or not. A "true" is returned if there is an error.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/connections/{name}/testConnection

The resource supports the following methods:

POST

Test the connection. Returns true if the test was successful.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/ensureLogOpened

The resource supports the following methods:

POST

Ensures that that the output stream to the underlying is opened if it got closed previously due to errors.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/flushLog

The resource supports the following methods:

POST

Flushes the buffer to the log file on disk.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/forceLogRotation

The resource supports the following methods:

POST

Forces the rotation of the underlying log immediately.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/forceReset

The resource supports the following methods:

POST

Force immediately discard all used/unused connections and recreate connection pool (and using new configuration if user update the pool's configuration).

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/logRuntime

This resource manages a weblogic.management.runtime.LogRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.LogRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.LogRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/logRuntime/ensureLogOpened

The resource supports the following methods:

POST

Ensures that that the output stream to the underlying is opened if it got closed previously due to errors.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/logRuntime/flushLog

The resource supports the following methods:

POST

Flushes the buffer to the log file on disk.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/logRuntime/forceLogRotation

The resource supports the following methods:

POST

Forces the rotation of the underlying log immediately.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/reset

The resource supports the following methods:

POST

Reset connection pool Discard all unused connections and recreate connection pool (and using new configuration if user update the pool's configuration) if no connection from pool is reserved by client application. If any connection from the connection pool is currently in use, the operation fails and false will be returned, otherwise all connections will be reset and true will be returned.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/testPool

The resource supports the following methods:

POST

Test all the available connections in the pool. Returns true if all the connections passed the test and false it at least one failed the test.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectorWorkManagerRuntime

This resource manages a weblogic.management.runtime.ConnectorWorkManagerRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/getConfiguration

The resource supports the following methods:

POST

Return the xml string representing the RA configuration. The xml corresponding to the version specified is returned.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

version

String

Type: string

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/getConnectionPool

The resource supports the following methods:

POST

Returns a ConnectorConnectionPoolRuntimeMBean that represents the statistics for a connection pool. The pool that is accessed in this call must be part of the resource adapter that is being accessed. A null is returned if the JNDI name or resource-link name is not found.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

key

JNDI name or resource-link name of the connection pool.

Type: string

Response Body

Contains a JSON object with a weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean reference return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/getInboundConnection

The resource supports the following methods:

POST

Runtime information for the specified inbound connection. A null is returned if the inbound connection is not found in the resource adapter.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

messageListenerType

Message listener type.

Type: string

Response Body

Contains a JSON object with a weblogic.management.runtime.ConnectorInboundRuntimeMBean reference return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/getSchema

The resource supports the following methods:

POST

Get the schema for RA configuration based on the version that is provided. Return null if the version is not found. The current supported version is "1.0"

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

version

String

Type: string

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections

This resource manages a collection of weblogic.management.runtime.ConnectorInboundRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes

This resource manages a collection of weblogic.management.runtime.MessageDrivenEJBRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}

This resource manages a weblogic.management.runtime.MessageDrivenEJBRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.MessageDrivenEJBRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.MessageDrivenEJBRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime

This resource manages a weblogic.management.runtime.EJBPoolRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime/initializePool

The resource supports the following methods:

POST

Instructs the Pool to initialize itself to its configured startup time size.

This is a synchronous and will wait until the pool is initialized before returning.

Roles

Admin, Operator

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resources

This resource manages a collection of weblogic.management.runtime.RuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resources/{name}

This resource manages a weblogic.management.runtime.RuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resume

The resource supports the following methods:

POST

Resumes the specific type of MDB by calling start on the JMS Connection.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/suspend

The resource supports the following methods:

POST

Suspends the specific type of MDB by calling stop on the JMS Connection.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime

This resource manages a weblogic.management.runtime.EJBTimerRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime/activateDisabledTimers

The resource supports the following methods:

POST

Activate any temporarily disabled timers.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/transactionRuntime

This resource manages a weblogic.management.runtime.EJBTransactionRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/resume

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Resumes the specified type of activity for this resource adapter

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

Response Body

Contains an empty JSON object.

POST

Resumes the specified type of activity for this resource adapter

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

props

Properties to pass on to the RA or null

Type: java.util.Properties

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/resumeAll

The resource supports the following methods:

POST

Resumes all activities of this resource adapter.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/suspend

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Suspends the specified type of activity for this resource adapter

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

props

Properties to pass on to the RA or null

Type: java.util.Properties

Response Body

Contains an empty JSON object.

POST

Suspend a particular type of activity for this resource adapter

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/suspendAll

The resource supports the following methods:

POST

Resumes all activities of this resource adapter.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime

This resource manages a weblogic.management.runtime.WorkManagerRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WorkManagerRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.WorkManagerRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime/capacityRuntime

This resource manages a weblogic.management.runtime.CapacityRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime/maxThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MaxThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime/minThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MinThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime/requestClassRuntime

This resource manages a weblogic.management.runtime.RequestClassRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes

This resource manages a collection of weblogic.management.runtime.WorkManagerRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name}

This resource manages a weblogic.management.runtime.WorkManagerRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WorkManagerRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.WorkManagerRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name}/capacityRuntime

This resource manages a weblogic.management.runtime.CapacityRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MaxThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MinThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name}/requestClassRuntime

This resource manages a weblogic.management.runtime.RequestClassRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/getInboundConnections

The resource supports the following methods:

POST

Returns runtime information for the specified inbound connection. A null is returned if the inbound connection is not found.

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

messageListenerType

Message listener type.

Type: string

Response Body

Contains a JSON object with a array of weblogic.management.runtime.ConnectorInboundRuntimeMBean references return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/getRA

The resource supports the following methods:

POST

Returns the runtime information of the resource adapter specified by the given JNDI name. A null is returned if the resource adapter cannot be found. This function returns the active RA if multiple versions of the resource adapters has been deployed

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

key

The JNDI name of the resource adapter.

Type: string

Response Body

Contains a JSON object with a weblogic.management.runtime.ConnectorComponentRuntimeMBean reference return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs

This resource manages a collection of weblogic.management.runtime.ConnectorComponentRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}

This resource manages a weblogic.management.runtime.ConnectorComponentRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.ConnectorComponentRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.ConnectorComponentRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools

This resource manages a collection of weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}

This resource manages a weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/connections

This resource manages a collection of weblogic.management.runtime.ConnectorConnectionRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/connections/{name}

This resource manages a weblogic.management.runtime.ConnectorConnectionRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.ConnectorConnectionRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.ConnectorConnectionRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/connections/{name}/delete

The resource supports the following methods:

POST

Provides a way to manually close a connection through the console.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/connections/{name}/hasError

The resource supports the following methods:

POST

Return a flag indicating whether the connection has an error or not. A "true" is returned if there is an error.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/connections/{name}/testConnection

The resource supports the following methods:

POST

Test the connection. Returns true if the test was successful.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/ensureLogOpened

The resource supports the following methods:

POST

Ensures that that the output stream to the underlying is opened if it got closed previously due to errors.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/flushLog

The resource supports the following methods:

POST

Flushes the buffer to the log file on disk.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/forceLogRotation

The resource supports the following methods:

POST

Forces the rotation of the underlying log immediately.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/forceReset

The resource supports the following methods:

POST

Force immediately discard all used/unused connections and recreate connection pool (and using new configuration if user update the pool's configuration).

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/logRuntime

This resource manages a weblogic.management.runtime.LogRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.LogRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.LogRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/logRuntime/ensureLogOpened

The resource supports the following methods:

POST

Ensures that that the output stream to the underlying is opened if it got closed previously due to errors.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/logRuntime/flushLog

The resource supports the following methods:

POST

Flushes the buffer to the log file on disk.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/logRuntime/forceLogRotation

The resource supports the following methods:

POST

Forces the rotation of the underlying log immediately.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/reset

The resource supports the following methods:

POST

Reset connection pool Discard all unused connections and recreate connection pool (and using new configuration if user update the pool's configuration) if no connection from pool is reserved by client application. If any connection from the connection pool is currently in use, the operation fails and false will be returned, otherwise all connections will be reset and true will be returned.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/testPool

The resource supports the following methods:

POST

Test all the available connections in the pool. Returns true if all the connections passed the test and false it at least one failed the test.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/connectorWorkManagerRuntime

This resource manages a weblogic.management.runtime.ConnectorWorkManagerRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/getConfiguration

The resource supports the following methods:

POST

Return the xml string representing the RA configuration. The xml corresponding to the version specified is returned.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

version

String

Type: string

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/getConnectionPool

The resource supports the following methods:

POST

Returns a ConnectorConnectionPoolRuntimeMBean that represents the statistics for a connection pool. The pool that is accessed in this call must be part of the resource adapter that is being accessed. A null is returned if the JNDI name or resource-link name is not found.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

key

JNDI name or resource-link name of the connection pool.

Type: string

Response Body

Contains a JSON object with a weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean reference return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/getInboundConnection

The resource supports the following methods:

POST

Runtime information for the specified inbound connection. A null is returned if the inbound connection is not found in the resource adapter.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

messageListenerType

Message listener type.

Type: string

Response Body

Contains a JSON object with a weblogic.management.runtime.ConnectorInboundRuntimeMBean reference return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/getSchema

The resource supports the following methods:

POST

Get the schema for RA configuration based on the version that is provided. Return null if the version is not found. The current supported version is "1.0"

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

version

String

Type: string

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections

This resource manages a collection of weblogic.management.runtime.ConnectorInboundRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}

This resource manages a weblogic.management.runtime.ConnectorInboundRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes

This resource manages a collection of weblogic.management.runtime.MessageDrivenEJBRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}

This resource manages a weblogic.management.runtime.MessageDrivenEJBRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.MessageDrivenEJBRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.MessageDrivenEJBRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime

This resource manages a weblogic.management.runtime.EJBPoolRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime/initializePool

The resource supports the following methods:

POST

Instructs the Pool to initialize itself to its configured startup time size.

This is a synchronous and will wait until the pool is initialized before returning.

Roles

Admin, Operator

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resources

This resource manages a collection of weblogic.management.runtime.RuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resources/{name}

This resource manages a weblogic.management.runtime.RuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resume

The resource supports the following methods:

POST

Resumes the specific type of MDB by calling start on the JMS Connection.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/suspend

The resource supports the following methods:

POST

Suspends the specific type of MDB by calling stop on the JMS Connection.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime

This resource manages a weblogic.management.runtime.EJBTimerRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime/activateDisabledTimers

The resource supports the following methods:

POST

Activate any temporarily disabled timers.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/transactionRuntime

This resource manages a weblogic.management.runtime.EJBTransactionRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/resume

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Resumes the specified type of activity for this resource adapter

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

Response Body

Contains an empty JSON object.

POST

Resumes the specified type of activity for this resource adapter

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

props

Properties to pass on to the RA or null

Type: java.util.Properties

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/resumeAll

The resource supports the following methods:

POST

Resumes all activities of this resource adapter.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/suspend

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Suspends the specified type of activity for this resource adapter

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

props

Properties to pass on to the RA or null

Type: java.util.Properties

Response Body

Contains an empty JSON object.

POST

Suspend a particular type of activity for this resource adapter

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/suspendAll

The resource supports the following methods:

POST

Resumes all activities of this resource adapter.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime

This resource manages a weblogic.management.runtime.WorkManagerRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WorkManagerRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.WorkManagerRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime/capacityRuntime

This resource manages a weblogic.management.runtime.CapacityRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime/maxThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MaxThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime/minThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MinThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime/requestClassRuntime

This resource manages a weblogic.management.runtime.RequestClassRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes

This resource manages a collection of weblogic.management.runtime.WorkManagerRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name}

This resource manages a weblogic.management.runtime.WorkManagerRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WorkManagerRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.WorkManagerRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name}/capacityRuntime

This resource manages a weblogic.management.runtime.CapacityRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MaxThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MinThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name}/requestClassRuntime

This resource manages a weblogic.management.runtime.RequestClassRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/resume

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Resumes the specified type of activity for all RAs

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

props

Properties to pass on to the RA or null

Type: java.util.Properties

Response Body

Contains an empty JSON object.

POST

Resumes the specified type of activity for all RAs.

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/resumeAll

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Resumes all activities of all resource adapters.

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

props

Properties to be passed to the resource adapters or null

Type: java.util.Properties

Response Body

Contains an empty JSON object.

POST

Resumes all activities of all resource adapters.

Roles

Admin, Operator

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/suspend

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Suspends the specified type of activity for all RAs

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

props

Properties to pass on to the RA or null

Type: java.util.Properties

Response Body

Contains an empty JSON object.

POST

Suspends the specified type of activity for all RAs.

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorServiceRuntime/suspendAll

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Suspends all activities of all resource adapters.

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

props

Properties to be passed to the resource adapters or null

Type: java.util.Properties

Response Body

Contains an empty JSON object.

POST

Suspends all activities of all resource adapters.

Roles

Admin, Operator

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorWorkManagerRuntime

This resource manages a weblogic.management.runtime.ConnectorWorkManagerRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/getConfiguration

The resource supports the following methods:

POST

Return the xml string representing the RA configuration. The xml corresponding to the version specified is returned.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

version

String

Type: string

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/getConnectionPool

The resource supports the following methods:

POST

Returns a ConnectorConnectionPoolRuntimeMBean that represents the statistics for a connection pool. The pool that is accessed in this call must be part of the resource adapter that is being accessed. A null is returned if the JNDI name or resource-link name is not found.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

key

JNDI name or resource-link name of the connection pool.

Type: string

Response Body

Contains a JSON object with a weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean reference return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/getInboundConnection

The resource supports the following methods:

POST

Runtime information for the specified inbound connection. A null is returned if the inbound connection is not found in the resource adapter.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

messageListenerType

Message listener type.

Type: string

Response Body

Contains a JSON object with a weblogic.management.runtime.ConnectorInboundRuntimeMBean reference return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/getSchema

The resource supports the following methods:

POST

Get the schema for RA configuration based on the version that is provided. Return null if the version is not found. The current supported version is "1.0"

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

version

String

Type: string

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections

This resource manages a collection of weblogic.management.runtime.ConnectorInboundRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}

This resource manages a weblogic.management.runtime.ConnectorInboundRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes

This resource manages a collection of weblogic.management.runtime.MessageDrivenEJBRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}

This resource manages a weblogic.management.runtime.MessageDrivenEJBRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.MessageDrivenEJBRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.MessageDrivenEJBRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime

This resource manages a weblogic.management.runtime.EJBPoolRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime/initializePool

The resource supports the following methods:

POST

Instructs the Pool to initialize itself to its configured startup time size.

This is a synchronous and will wait until the pool is initialized before returning.

Roles

Admin, Operator

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resources

This resource manages a collection of weblogic.management.runtime.RuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resources/{name}

This resource manages a weblogic.management.runtime.RuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resume

The resource supports the following methods:

POST

Resumes the specific type of MDB by calling start on the JMS Connection.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/suspend

The resource supports the following methods:

POST

Suspends the specific type of MDB by calling stop on the JMS Connection.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime

This resource manages a weblogic.management.runtime.EJBTimerRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime/activateDisabledTimers

The resource supports the following methods:

POST

Activate any temporarily disabled timers.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/transactionRuntime

This resource manages a weblogic.management.runtime.EJBTransactionRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/resume

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Resumes the specified type of activity for this resource adapter

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

Response Body

Contains an empty JSON object.

POST

Resumes the specified type of activity for this resource adapter

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

props

Properties to pass on to the RA or null

Type: java.util.Properties

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/resumeAll

The resource supports the following methods:

POST

Resumes all activities of this resource adapter.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/suspend

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Suspends the specified type of activity for this resource adapter

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

props

Properties to pass on to the RA or null

Type: java.util.Properties

Response Body

Contains an empty JSON object.

POST

Suspend a particular type of activity for this resource adapter

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/suspendAll

The resource supports the following methods:

POST

Resumes all activities of this resource adapter.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime

This resource manages a weblogic.management.runtime.WorkManagerRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WorkManagerRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.WorkManagerRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime/capacityRuntime

This resource manages a weblogic.management.runtime.CapacityRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime/maxThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MaxThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime/minThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MinThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime/requestClassRuntime

This resource manages a weblogic.management.runtime.RequestClassRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes

This resource manages a collection of weblogic.management.runtime.WorkManagerRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name}

This resource manages a weblogic.management.runtime.WorkManagerRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WorkManagerRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.WorkManagerRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name}/capacityRuntime

This resource manages a weblogic.management.runtime.CapacityRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MaxThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MinThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name}/requestClassRuntime

This resource manages a weblogic.management.runtime.RequestClassRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs

This resource manages a collection of weblogic.management.runtime.ConnectorComponentRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.ConnectorComponentRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}

This resource manages a weblogic.management.runtime.ConnectorComponentRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.ConnectorComponentRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.ConnectorComponentRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectionPools

This resource manages a collection of weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}

This resource manages a weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/connections

This resource manages a collection of weblogic.management.runtime.ConnectorConnectionRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/connections/{name}

This resource manages a weblogic.management.runtime.ConnectorConnectionRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.ConnectorConnectionRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/connections/{name}/delete

The resource supports the following methods:

POST

Provides a way to manually close a connection through the console.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/connections/{name}/hasError

The resource supports the following methods:

POST

Return a flag indicating whether the connection has an error or not. A "true" is returned if there is an error.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/connections/{name}/testConnection

The resource supports the following methods:

POST

Test the connection. Returns true if the test was successful.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/ensureLogOpened

The resource supports the following methods:

POST

Ensures that that the output stream to the underlying is opened if it got closed previously due to errors.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/flushLog

The resource supports the following methods:

POST

Flushes the buffer to the log file on disk.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/forceLogRotation

The resource supports the following methods:

POST

Forces the rotation of the underlying log immediately.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/forceReset

The resource supports the following methods:

POST

Force immediately discard all used/unused connections and recreate connection pool (and using new configuration if user update the pool's configuration).

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/logRuntime

This resource manages a weblogic.management.runtime.LogRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/logRuntime/ensureLogOpened

The resource supports the following methods:

POST

Ensures that that the output stream to the underlying is opened if it got closed previously due to errors.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/logRuntime/flushLog

The resource supports the following methods:

POST

Flushes the buffer to the log file on disk.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/logRuntime/forceLogRotation

The resource supports the following methods:

POST

Forces the rotation of the underlying log immediately.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/reset

The resource supports the following methods:

POST

Reset connection pool Discard all unused connections and recreate connection pool (and using new configuration if user update the pool's configuration) if no connection from pool is reserved by client application. If any connection from the connection pool is currently in use, the operation fails and false will be returned, otherwise all connections will be reset and true will be returned.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectionPools/{name}/testPool

The resource supports the following methods:

POST

Test all the available connections in the pool. Returns true if all the connections passed the test and false it at least one failed the test.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime

This resource manages a weblogic.management.runtime.ConnectorServiceRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.ConnectorServiceRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.ConnectorServiceRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs

This resource manages a collection of weblogic.management.runtime.ConnectorComponentRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}

This resource manages a weblogic.management.runtime.ConnectorComponentRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.ConnectorComponentRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.ConnectorComponentRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools

This resource manages a collection of weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}

This resource manages a weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/connections

This resource manages a collection of weblogic.management.runtime.ConnectorConnectionRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/connections/{name}

This resource manages a weblogic.management.runtime.ConnectorConnectionRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.ConnectorConnectionRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.ConnectorConnectionRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/connections/{name}/delete

The resource supports the following methods:

POST

Provides a way to manually close a connection through the console.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/connections/{name}/hasError

The resource supports the following methods:

POST

Return a flag indicating whether the connection has an error or not. A "true" is returned if there is an error.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/connections/{name}/testConnection

The resource supports the following methods:

POST

Test the connection. Returns true if the test was successful.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/ensureLogOpened

The resource supports the following methods:

POST

Ensures that that the output stream to the underlying is opened if it got closed previously due to errors.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/flushLog

The resource supports the following methods:

POST

Flushes the buffer to the log file on disk.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/forceLogRotation

The resource supports the following methods:

POST

Forces the rotation of the underlying log immediately.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/forceReset

The resource supports the following methods:

POST

Force immediately discard all used/unused connections and recreate connection pool (and using new configuration if user update the pool's configuration).

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/logRuntime

This resource manages a weblogic.management.runtime.LogRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.LogRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.LogRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/logRuntime/ensureLogOpened

The resource supports the following methods:

POST

Ensures that that the output stream to the underlying is opened if it got closed previously due to errors.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/logRuntime/flushLog

The resource supports the following methods:

POST

Flushes the buffer to the log file on disk.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/logRuntime/forceLogRotation

The resource supports the following methods:

POST

Forces the rotation of the underlying log immediately.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/reset

The resource supports the following methods:

POST

Reset connection pool Discard all unused connections and recreate connection pool (and using new configuration if user update the pool's configuration) if no connection from pool is reserved by client application. If any connection from the connection pool is currently in use, the operation fails and false will be returned, otherwise all connections will be reset and true will be returned.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectionPools/{name}/testPool

The resource supports the following methods:

POST

Test all the available connections in the pool. Returns true if all the connections passed the test and false it at least one failed the test.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/connectorWorkManagerRuntime

This resource manages a weblogic.management.runtime.ConnectorWorkManagerRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/getConfiguration

The resource supports the following methods:

POST

Return the xml string representing the RA configuration. The xml corresponding to the version specified is returned.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

version

String

Type: string

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/getConnectionPool

The resource supports the following methods:

POST

Returns a ConnectorConnectionPoolRuntimeMBean that represents the statistics for a connection pool. The pool that is accessed in this call must be part of the resource adapter that is being accessed. A null is returned if the JNDI name or resource-link name is not found.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

key

JNDI name or resource-link name of the connection pool.

Type: string

Response Body

Contains a JSON object with a weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean reference return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/getInboundConnection

The resource supports the following methods:

POST

Runtime information for the specified inbound connection. A null is returned if the inbound connection is not found in the resource adapter.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

messageListenerType

Message listener type.

Type: string

Response Body

Contains a JSON object with a weblogic.management.runtime.ConnectorInboundRuntimeMBean reference return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/getSchema

The resource supports the following methods:

POST

Get the schema for RA configuration based on the version that is provided. Return null if the version is not found. The current supported version is "1.0"

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

version

String

Type: string

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections

This resource manages a collection of weblogic.management.runtime.ConnectorInboundRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}

This resource manages a weblogic.management.runtime.ConnectorInboundRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes

This resource manages a collection of weblogic.management.runtime.MessageDrivenEJBRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}

This resource manages a weblogic.management.runtime.MessageDrivenEJBRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.MessageDrivenEJBRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.MessageDrivenEJBRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime

This resource manages a weblogic.management.runtime.EJBPoolRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime/initializePool

The resource supports the following methods:

POST

Instructs the Pool to initialize itself to its configured startup time size.

This is a synchronous and will wait until the pool is initialized before returning.

Roles

Admin, Operator

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resources

This resource manages a collection of weblogic.management.runtime.RuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resources/{name}

This resource manages a weblogic.management.runtime.RuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resume

The resource supports the following methods:

POST

Resumes the specific type of MDB by calling start on the JMS Connection.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/suspend

The resource supports the following methods:

POST

Suspends the specific type of MDB by calling stop on the JMS Connection.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime

This resource manages a weblogic.management.runtime.EJBTimerRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime/activateDisabledTimers

The resource supports the following methods:

POST

Activate any temporarily disabled timers.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/transactionRuntime

This resource manages a weblogic.management.runtime.EJBTransactionRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/resume

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Resumes the specified type of activity for this resource adapter

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

Response Body

Contains an empty JSON object.

POST

Resumes the specified type of activity for this resource adapter

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

props

Properties to pass on to the RA or null

Type: java.util.Properties

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/resumeAll

The resource supports the following methods:

POST

Resumes all activities of this resource adapter.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/suspend

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Suspends the specified type of activity for this resource adapter

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

props

Properties to pass on to the RA or null

Type: java.util.Properties

Response Body

Contains an empty JSON object.

POST

Suspend a particular type of activity for this resource adapter

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/suspendAll

The resource supports the following methods:

POST

Resumes all activities of this resource adapter.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime

This resource manages a weblogic.management.runtime.WorkManagerRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WorkManagerRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.WorkManagerRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime/capacityRuntime

This resource manages a weblogic.management.runtime.CapacityRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime/maxThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MaxThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime/minThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MinThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntime/requestClassRuntime

This resource manages a weblogic.management.runtime.RequestClassRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes

This resource manages a collection of weblogic.management.runtime.WorkManagerRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name}

This resource manages a weblogic.management.runtime.WorkManagerRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WorkManagerRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.WorkManagerRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name}/capacityRuntime

This resource manages a weblogic.management.runtime.CapacityRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MaxThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MinThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/activeRAs/{name}/workManagerRuntimes/{name}/requestClassRuntime

This resource manages a weblogic.management.runtime.RequestClassRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/getInboundConnections

The resource supports the following methods:

POST

Returns runtime information for the specified inbound connection. A null is returned if the inbound connection is not found.

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

messageListenerType

Message listener type.

Type: string

Response Body

Contains a JSON object with a array of weblogic.management.runtime.ConnectorInboundRuntimeMBean references return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/getRA

The resource supports the following methods:

POST

Returns the runtime information of the resource adapter specified by the given JNDI name. A null is returned if the resource adapter cannot be found. This function returns the active RA if multiple versions of the resource adapters has been deployed

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

key

The JNDI name of the resource adapter.

Type: string

Response Body

Contains a JSON object with a weblogic.management.runtime.ConnectorComponentRuntimeMBean reference return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs

This resource manages a collection of weblogic.management.runtime.ConnectorComponentRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}

This resource manages a weblogic.management.runtime.ConnectorComponentRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.ConnectorComponentRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.ConnectorComponentRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools

This resource manages a collection of weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}

This resource manages a weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/connections

This resource manages a collection of weblogic.management.runtime.ConnectorConnectionRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/connections/{name}

This resource manages a weblogic.management.runtime.ConnectorConnectionRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.ConnectorConnectionRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.ConnectorConnectionRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/connections/{name}/delete

The resource supports the following methods:

POST

Provides a way to manually close a connection through the console.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/connections/{name}/hasError

The resource supports the following methods:

POST

Return a flag indicating whether the connection has an error or not. A "true" is returned if there is an error.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/connections/{name}/testConnection

The resource supports the following methods:

POST

Test the connection. Returns true if the test was successful.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/ensureLogOpened

The resource supports the following methods:

POST

Ensures that that the output stream to the underlying is opened if it got closed previously due to errors.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/flushLog

The resource supports the following methods:

POST

Flushes the buffer to the log file on disk.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/forceLogRotation

The resource supports the following methods:

POST

Forces the rotation of the underlying log immediately.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/forceReset

The resource supports the following methods:

POST

Force immediately discard all used/unused connections and recreate connection pool (and using new configuration if user update the pool's configuration).

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/logRuntime

This resource manages a weblogic.management.runtime.LogRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.LogRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.LogRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/logRuntime/ensureLogOpened

The resource supports the following methods:

POST

Ensures that that the output stream to the underlying is opened if it got closed previously due to errors.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/logRuntime/flushLog

The resource supports the following methods:

POST

Flushes the buffer to the log file on disk.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/logRuntime/forceLogRotation

The resource supports the following methods:

POST

Forces the rotation of the underlying log immediately.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/reset

The resource supports the following methods:

POST

Reset connection pool Discard all unused connections and recreate connection pool (and using new configuration if user update the pool's configuration) if no connection from pool is reserved by client application. If any connection from the connection pool is currently in use, the operation fails and false will be returned, otherwise all connections will be reset and true will be returned.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectionPools/{name}/testPool

The resource supports the following methods:

POST

Test all the available connections in the pool. Returns true if all the connections passed the test and false it at least one failed the test.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/connectorWorkManagerRuntime

This resource manages a weblogic.management.runtime.ConnectorWorkManagerRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/getConfiguration

The resource supports the following methods:

POST

Return the xml string representing the RA configuration. The xml corresponding to the version specified is returned.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

version

String

Type: string

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/getConnectionPool

The resource supports the following methods:

POST

Returns a ConnectorConnectionPoolRuntimeMBean that represents the statistics for a connection pool. The pool that is accessed in this call must be part of the resource adapter that is being accessed. A null is returned if the JNDI name or resource-link name is not found.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

key

JNDI name or resource-link name of the connection pool.

Type: string

Response Body

Contains a JSON object with a weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean reference return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/getInboundConnection

The resource supports the following methods:

POST

Runtime information for the specified inbound connection. A null is returned if the inbound connection is not found in the resource adapter.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

messageListenerType

Message listener type.

Type: string

Response Body

Contains a JSON object with a weblogic.management.runtime.ConnectorInboundRuntimeMBean reference return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/getSchema

The resource supports the following methods:

POST

Get the schema for RA configuration based on the version that is provided. Return null if the version is not found. The current supported version is "1.0"

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

version

String

Type: string

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections

This resource manages a collection of weblogic.management.runtime.ConnectorInboundRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}

This resource manages a weblogic.management.runtime.ConnectorInboundRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes

This resource manages a collection of weblogic.management.runtime.MessageDrivenEJBRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}

This resource manages a weblogic.management.runtime.MessageDrivenEJBRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.MessageDrivenEJBRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.MessageDrivenEJBRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime

This resource manages a weblogic.management.runtime.EJBPoolRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime/initializePool

The resource supports the following methods:

POST

Instructs the Pool to initialize itself to its configured startup time size.

This is a synchronous and will wait until the pool is initialized before returning.

Roles

Admin, Operator

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resources

This resource manages a collection of weblogic.management.runtime.RuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resources/{name}

This resource manages a weblogic.management.runtime.RuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resume

The resource supports the following methods:

POST

Resumes the specific type of MDB by calling start on the JMS Connection.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/suspend

The resource supports the following methods:

POST

Suspends the specific type of MDB by calling stop on the JMS Connection.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime

This resource manages a weblogic.management.runtime.EJBTimerRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime/activateDisabledTimers

The resource supports the following methods:

POST

Activate any temporarily disabled timers.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/transactionRuntime

This resource manages a weblogic.management.runtime.EJBTransactionRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/resume

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Resumes the specified type of activity for this resource adapter

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

Response Body

Contains an empty JSON object.

POST

Resumes the specified type of activity for this resource adapter

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

props

Properties to pass on to the RA or null

Type: java.util.Properties

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/resumeAll

The resource supports the following methods:

POST

Resumes all activities of this resource adapter.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/suspend

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Suspends the specified type of activity for this resource adapter

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

props

Properties to pass on to the RA or null

Type: java.util.Properties

Response Body

Contains an empty JSON object.

POST

Suspend a particular type of activity for this resource adapter

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/suspendAll

The resource supports the following methods:

POST

Resumes all activities of this resource adapter.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime

This resource manages a weblogic.management.runtime.WorkManagerRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WorkManagerRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.WorkManagerRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime/capacityRuntime

This resource manages a weblogic.management.runtime.CapacityRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime/maxThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MaxThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime/minThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MinThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntime/requestClassRuntime

This resource manages a weblogic.management.runtime.RequestClassRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes

This resource manages a collection of weblogic.management.runtime.WorkManagerRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name}

This resource manages a weblogic.management.runtime.WorkManagerRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WorkManagerRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.WorkManagerRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name}/capacityRuntime

This resource manages a weblogic.management.runtime.CapacityRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MaxThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MinThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/inactiveRAs/{name}/workManagerRuntimes/{name}/requestClassRuntime

This resource manages a weblogic.management.runtime.RequestClassRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/resume

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Resumes the specified type of activity for all RAs

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

props

Properties to pass on to the RA or null

Type: java.util.Properties

Response Body

Contains an empty JSON object.

POST

Resumes the specified type of activity for all RAs.

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/resumeAll

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Resumes all activities of all resource adapters.

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

props

Properties to be passed to the resource adapters or null

Type: java.util.Properties

Response Body

Contains an empty JSON object.

POST

Resumes all activities of all resource adapters.

Roles

Admin, Operator

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/suspend

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Suspends the specified type of activity for all RAs

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

props

Properties to pass on to the RA or null

Type: java.util.Properties

Response Body

Contains an empty JSON object.

POST

Suspends the specified type of activity for all RAs.

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorServiceRuntime/suspendAll

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Suspends all activities of all resource adapters.

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

props

Properties to be passed to the resource adapters or null

Type: java.util.Properties

Response Body

Contains an empty JSON object.

POST

Suspends all activities of all resource adapters.

Roles

Admin, Operator

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/connectorWorkManagerRuntime

This resource manages a weblogic.management.runtime.ConnectorWorkManagerRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/getConfiguration

The resource supports the following methods:

POST

Return the xml string representing the RA configuration. The xml corresponding to the version specified is returned.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

version

String

Type: string

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/getConnectionPool

The resource supports the following methods:

POST

Returns a ConnectorConnectionPoolRuntimeMBean that represents the statistics for a connection pool. The pool that is accessed in this call must be part of the resource adapter that is being accessed. A null is returned if the JNDI name or resource-link name is not found.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

key

JNDI name or resource-link name of the connection pool.

Type: string

Response Body

Contains a JSON object with a weblogic.management.runtime.ConnectorConnectionPoolRuntimeMBean reference return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/getInboundConnection

The resource supports the following methods:

POST

Runtime information for the specified inbound connection. A null is returned if the inbound connection is not found in the resource adapter.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

messageListenerType

Message listener type.

Type: string

Response Body

Contains a JSON object with a weblogic.management.runtime.ConnectorInboundRuntimeMBean reference return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/getSchema

The resource supports the following methods:

POST

Get the schema for RA configuration based on the version that is provided. Return null if the version is not found. The current supported version is "1.0"

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

version

String

Type: string

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections

This resource manages a collection of weblogic.management.runtime.ConnectorInboundRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}

This resource manages a weblogic.management.runtime.ConnectorInboundRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes

This resource manages a collection of weblogic.management.runtime.MessageDrivenEJBRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}

This resource manages a weblogic.management.runtime.MessageDrivenEJBRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.MessageDrivenEJBRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.MessageDrivenEJBRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime

This resource manages a weblogic.management.runtime.EJBPoolRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/poolRuntime/initializePool

The resource supports the following methods:

POST

Instructs the Pool to initialize itself to its configured startup time size.

This is a synchronous and will wait until the pool is initialized before returning.

Roles

Admin, Operator

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resources

This resource manages a collection of weblogic.management.runtime.RuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resources/{name}

This resource manages a weblogic.management.runtime.RuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/resume

The resource supports the following methods:

POST

Resumes the specific type of MDB by calling start on the JMS Connection.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/suspend

The resource supports the following methods:

POST

Suspends the specific type of MDB by calling stop on the JMS Connection.

Roles

Admin

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime

This resource manages a weblogic.management.runtime.EJBTimerRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/timerRuntime/activateDisabledTimers

The resource supports the following methods:

POST

Activate any temporarily disabled timers.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/inboundConnections/{name}/MDBRuntimes/{name}/transactionRuntime

This resource manages a weblogic.management.runtime.EJBTransactionRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/resume

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Resumes the specified type of activity for this resource adapter

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

Response Body

Contains an empty JSON object.

POST

Resumes the specified type of activity for this resource adapter

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

props

Properties to pass on to the RA or null

Type: java.util.Properties

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/resumeAll

The resource supports the following methods:

POST

Resumes all activities of this resource adapter.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/suspend

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Suspends the specified type of activity for this resource adapter

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

props

Properties to pass on to the RA or null

Type: java.util.Properties

Response Body

Contains an empty JSON object.

POST

Suspend a particular type of activity for this resource adapter

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/suspendAll

The resource supports the following methods:

POST

Resumes all activities of this resource adapter.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime

This resource manages a weblogic.management.runtime.WorkManagerRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WorkManagerRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.WorkManagerRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime/capacityRuntime

This resource manages a weblogic.management.runtime.CapacityRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime/maxThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MaxThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime/minThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MinThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntime/requestClassRuntime

This resource manages a weblogic.management.runtime.RequestClassRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes

This resource manages a collection of weblogic.management.runtime.WorkManagerRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name}

This resource manages a weblogic.management.runtime.WorkManagerRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WorkManagerRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.WorkManagerRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name}/capacityRuntime

This resource manages a weblogic.management.runtime.CapacityRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MaxThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MinThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/RAs/{name}/workManagerRuntimes/{name}/requestClassRuntime

This resource manages a weblogic.management.runtime.RequestClassRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/resume

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Resumes the specified type of activity for all RAs

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

props

Properties to pass on to the RA or null

Type: java.util.Properties

Response Body

Contains an empty JSON object.

POST

Resumes the specified type of activity for all RAs.

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/resumeAll

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Resumes all activities of all resource adapters.

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

props

Properties to be passed to the resource adapters or null

Type: java.util.Properties

Response Body

Contains an empty JSON object.

POST

Resumes all activities of all resource adapters.

Roles

Admin, Operator

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/suspend

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Suspends the specified type of activity for all RAs

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

props

Properties to pass on to the RA or null

Type: java.util.Properties

Response Body

Contains an empty JSON object.

POST

Suspends the specified type of activity for all RAs.

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

type

int The type of activity(ies), see weblogic.connector.extensions.Suspendable

Type: int

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/connectorServiceRuntime/suspendAll

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Suspends all activities of all resource adapters.

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

props

Properties to be passed to the resource adapters or null

Type: java.util.Properties

Response Body

Contains an empty JSON object.

POST

Suspends all activities of all resource adapters.

Roles

Admin, Operator

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/forceShutdown

The resource supports the following methods:

POST

Force shutdown the partition. Causes the partition to reject new requests and fail pending requests.

Roles

Admin, Operator

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/forceShutdownResourceGroup

The resource supports the following methods:

POST

Force shutdown the resource group. Causes the resource group to reject new requests and fail pending requests.

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

resourceGroupName

resourceGroupName

Type: string

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/forceSuspend

The resource supports the following methods:

POST

Transitions the partition from RUNNING to ADMIN state forcefully cancelling inflight work.

Work that cannot be cancelled is dropped. Applications are transitioned to admin mode. This forcefully suspends the partition and transitions it to ADMIN state.

Roles

Admin, Operator

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/forceSuspendResourceGroup

The resource supports the following methods:

POST

Transitions the resource group from RUNNING to ADMIN state forcefully cancelling inflight work.

Work that cannot be cancelled is dropped. Applications are brought into the admin mode. This forcefully suspends the resource group and transitions it ADMIN state.

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

resourceGroupName

resourceGroupName

Type: string

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/getRgState

The resource supports the following methods:

POST

The current state of the named resource group MBean

Roles

Admin, Deployer, Monitor, Operator

Request Body

Must contain a JSON object with the following fields:

resourceGroupName

the resource group name

Type: string

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/halt

The resource supports the following methods:

POST

Halts the partition.

Roles

Admin, Operator

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime

This resource manages a weblogic.management.runtime.JDBCPartitionRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.JDBCPartitionRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.JDBCPartitionRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans

This resource manages a collection of weblogic.management.runtime.JDBCDataSourceRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}

This resource manages a weblogic.management.runtime.JDBCDataSourceRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.JDBCDataSourceRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.JDBCDataSourceRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/asyncShutdown

The resource supports the following methods:

POST

Gracefully, asynchronously shuts down a data source that has a health state of Running. A graceful (non-forced) datasource shutdown operation involves first gracefully suspending the data source and then releasing the associated resources including the connections. See the description above for details of gracefully suspending the datasource. After the datasource is gracefully suspended, all remaining in-use connections are closed and the datasource is marked as shut down.

Setting IgnoreInUseConnectionsEnabled to false causes the operation to fail if in-use connections exist.

If successful, the health state is set to Shutdown

This is a privileged operation that can only be invoked by an authorized user.

This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

operationSecs

The number of seconds to allow the operation to run before stopping processing. If set to 0, the default is used. The default is to use Inactive Connection Timeout Seconds if set or 60 seconds. If you want a minimal timeout, set the value to 1. If you want no timeout, set it to a large value (not recommended).

Type: int

Response Body

Contains a JSON object with a weblogic.management.runtime.JDBCDataSourceTaskRuntimeMBean reference return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/asyncSuspend

The resource supports the following methods:

POST

Asynchronously, gracefully suspends a data source that has the health state of Running and disables existing connections. This operation immediately marks the data source as suspended and no further connections are created. Idle (not reserved) connections are marked as disabled. After a timeout period for the suspend operation, all remaining connections in the pool are marked as suspended and the following exception is thrown for any operations on the connection, indicating that the data source is suspended: java.sql.SQLRecoverableException: Connection has been administratively disabled. Try later. These connections remain in the pool and are not closed because the pool may be resumed.

Setting IgnoreInUseConnectionsEnabled to false causes the operation to fail if in-use connections exist.

If successful, the health state is set to Suspended

This is a privileged operation that can only be invoked by an authorized user.

This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

operationSecs

The number of seconds to allow the operation to run before stopping processing. If set to 0, the default is used. The default is to use Inactive Connection Timeout Seconds if set or 60 seconds. If you want a minimal timeout, set the value to 1. If you want no timeout, set it to a large value (not recommended).

Type: int

Response Body

Contains a JSON object with a weblogic.management.runtime.JDBCDataSourceTaskRuntimeMBean reference return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/clearStatementCache

The resource supports the following methods:

POST

For each connection in the connection pool, clears the statement cache of Prepared and Callable Statements.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/dumpPool

The resource supports the following methods:

POST

Prints out information about all the connections in the connection pool in the data source.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/dumpPoolProfile

The resource supports the following methods:

POST

Prints out profile information about the data source.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/forceShutdown

The resource supports the following methods:

POST

Forcefully shuts down a data source that has a health state of Running, including forcing the disconnection of all current connection users.

If successful, the health state is set to Shutdown

This is a privileged operation that can only be invoked by an authorized user.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/forceSuspend

The resource supports the following methods:

POST

Forcefully suspends a data source that has the health state of Running, including disconnecting all current connection users. All current connections are closed and recreated.

If successful, the health state is set to Suspended

This is a privileged operation that can only be invoked by an authorized user.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/JDBCDriverRuntime

This resource manages a weblogic.management.runtime.JDBCDriverRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/JDBCReplayStatisticsRuntimeMBean

This resource manages a weblogic.management.runtime.JDBCReplayStatisticsRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.JDBCReplayStatisticsRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/JDBCReplayStatisticsRuntimeMBean/clearStatistics

The resource supports the following methods:

POST

Clear the statistics on all connections.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/JDBCReplayStatisticsRuntimeMBean/refreshStatistics

The resource supports the following methods:

POST

Update the snapshot

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/JDBCReplayStatisticsRuntimeMBean/workManagerRuntimes

This resource manages a collection of weblogic.management.runtime.WorkManagerRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/JDBCReplayStatisticsRuntimeMBean/workManagerRuntimes/{name}

This resource manages a weblogic.management.runtime.WorkManagerRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WorkManagerRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.WorkManagerRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/JDBCReplayStatisticsRuntimeMBean/workManagerRuntimes/{name}/capacityRuntime

This resource manages a weblogic.management.runtime.CapacityRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/JDBCReplayStatisticsRuntimeMBean/workManagerRuntimes/{name}/maxThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MaxThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/JDBCReplayStatisticsRuntimeMBean/workManagerRuntimes/{name}/minThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MinThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/JDBCReplayStatisticsRuntimeMBean/workManagerRuntimes/{name}/requestClassRuntime

This resource manages a weblogic.management.runtime.RequestClassRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/poolExists

The resource supports the following methods:

POST

Specifies whether a data source with the given name exists.

This is a privileged operation that can only be invoked by an authorized user.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

poolName

Name of the pool being looked for

Type: string

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/reset

The resource supports the following methods:

POST

Resets the connection pool in the data source by shutting down and recreating all available database connections in the pool.

Use when a data source is in the health state of Unhealthy and needs to be reinitialized.

This is a privileged operation that can only be invoked by an authorized user.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/resume

The resource supports the following methods:

POST

Restores all access to and operations on a data source that has a health state of Suspended

If successful, the health state is set to Running

This is a privileged operation that can only be invoked by an authorized user.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/shrink

The resource supports the following methods:

POST

Shrinks the database connection pool in the data source to either the current number of reserved connections or the initial size of the connection pool, which ever is greater.

This is a privileged operation that can only be invoked by an authorized user.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/shutdown

The resource supports the following methods:

POST

Gracefully, synchronously shuts down a data source that has a health state of Running. A graceful (non-forced) datasource shutdown operation involves first gracefully suspending the data source and then releasing the associated resources including the connections. See the description above for details of gracefully suspending the datasource. After the datasource is gracefully suspended, all remaining in-use connections are closed and the datasource is marked as shut down.

If successful, the health state is set to Shutdown

This is a privileged operation that can only be invoked by an authorized user.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/start

The resource supports the following methods:

POST

Starts a data source that has a health state of Shutdown

If successful, the health state is set to Running

This is a privileged operation that can only be invoked by an authorized user.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/suspend

The resource supports the following methods:

POST

Synchronously, gracefully suspends a data source that has the health state of Running and disables existing connections. This operation immediately marks the data source as suspended and no further connections are created. Idle (not reserved) connections are marked as disabled. After a timeout period for the suspend operation, all remaining connections in the pool are marked as suspended and the following exception is thrown for any operations on the connection, indicating that the data source is suspended: java.sql.SQLRecoverableException: Connection has been administratively disabled. Try later. If graceful suspend is done as part of a graceful shutdown operation, connections are immediately closed when no longer reserved or at the end of the timeout period. If not done as part of a shutdown operation, these connections remain in the pool and are not closed because the pool may be resumed.

By default, the timeout period is 60 seconds. You can change the value of this timeout period by configuring or dynamically setting Inactive Connection Timeout Seconds to a non-zero value.

Setting IgnoreInUseConnectionsEnabled to false causes the operation to fail if in-use connections exist.

If successful, the health state is set to Suspended

This is a privileged operation that can only be invoked by an authorized user.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/tasks

This resource manages a collection of weblogic.management.runtime.JDBCDataSourceTaskRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/tasks/{name}

This resource manages a weblogic.management.runtime.JDBCDataSourceTaskRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/tasks/{name}/cancel

The resource supports the following methods:

POST

Attempts to cancel this task.

An exception is thrown to indicate failure to cancel the task. Not all tasks can be cancelled.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/tasks/{name}/subTasks

This resource manages a collection of weblogic.management.runtime.TaskRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/tasks/{name}/subTasks/{name}

This resource manages a weblogic.management.runtime.TaskRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/tasks/{name}/subTasks/{name}/cancel

The resource supports the following methods:

POST

Attempts to cancel this task.

An exception is thrown to indicate failure to cancel the task. Not all tasks can be cancelled.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/tasks/{name}/subTasks/{name}/subTasks

This resource manages a collection of weblogic.management.runtime.TaskRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/tasks/{name}/subTasks/{name}/subTasks/{name}

This resource manages a weblogic.management.runtime.TaskRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.TaskRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.TaskRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/tasks/{name}/subTasks/{name}/subTasks/{name}/cancel

The resource supports the following methods:

POST

Attempts to cancel this task.

An exception is thrown to indicate failure to cancel the task. Not all tasks can be cancelled.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/testPool

The resource supports the following methods:

POST

Tests the connection pool in the data source by reserving and releasing a connection from it.

If the pool configuration attribute TestConnectionsOnReserve is enabled, the acquired connection is also tested as part of the reserve operation.

Roles

Admin

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/workManagerRuntimes

This resource manages a collection of weblogic.management.runtime.WorkManagerRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/workManagerRuntimes/{name}

This resource manages a weblogic.management.runtime.WorkManagerRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WorkManagerRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.WorkManagerRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/workManagerRuntimes/{name}/capacityRuntime

This resource manages a weblogic.management.runtime.CapacityRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MaxThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MinThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCDataSourceRuntimeMBeans/{name}/workManagerRuntimes/{name}/requestClassRuntime

This resource manages a weblogic.management.runtime.RequestClassRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCMultiDataSourceRuntimeMBeans

This resource manages a collection of weblogic.management.runtime.JDBCMultiDataSourceRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCMultiDataSourceRuntimeMBeans/{name}

This resource manages a weblogic.management.runtime.JDBCMultiDataSourceRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCMultiDataSourceRuntimeMBeans/{name}/workManagerRuntimes

This resource manages a collection of weblogic.management.runtime.WorkManagerRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCMultiDataSourceRuntimeMBeans/{name}/workManagerRuntimes/{name}

This resource manages a weblogic.management.runtime.WorkManagerRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WorkManagerRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.WorkManagerRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCMultiDataSourceRuntimeMBeans/{name}/workManagerRuntimes/{name}/capacityRuntime

This resource manages a weblogic.management.runtime.CapacityRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCMultiDataSourceRuntimeMBeans/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MaxThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCMultiDataSourceRuntimeMBeans/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MinThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JDBCPartitionRuntime/JDBCMultiDataSourceRuntimeMBeans/{name}/workManagerRuntimes/{name}/requestClassRuntime

This resource manages a weblogic.management.runtime.RequestClassRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime

This resource manages a weblogic.management.runtime.JMSRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.JMSRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.JMSRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/connections

This resource manages a collection of weblogic.management.runtime.JMSConnectionRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.JMSConnectionRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/connections/{name}

This resource manages a weblogic.management.runtime.JMSConnectionRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/connections/{name}/destroy

The resource supports the following methods:

POST

Destroys server side context for the connection.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/connections/{name}/sessions

This resource manages a collection of weblogic.management.runtime.JMSSessionRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.JMSSessionRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/connections/{name}/sessions/{name}

This resource manages a weblogic.management.runtime.JMSSessionRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/connections/{name}/sessions/{name}/consumers

This resource manages a collection of weblogic.management.runtime.JMSConsumerRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/connections/{name}/sessions/{name}/consumers/{name}

This resource manages a weblogic.management.runtime.JMSConsumerRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/connections/{name}/sessions/{name}/producers

This resource manages a collection of weblogic.management.runtime.JMSProducerRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/connections/{name}/sessions/{name}/producers/{name}

This resource manages a weblogic.management.runtime.JMSProducerRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers

This resource manages a collection of weblogic.management.runtime.JMSServerRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.JMSServerRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}

This resource manages a weblogic.management.runtime.JMSServerRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.JMSServerRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.JMSServerRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/closeCursor

The resource supports the following methods:

POST

Releases the server-side resources associated with the cursor and removes the runtime MBean instance.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations

This resource manages a collection of weblogic.management.runtime.JMSDestinationRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.JMSDestinationRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}

This resource manages a weblogic.management.runtime.JMSDestinationRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.JMSDestinationRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.JMSDestinationRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/closeCursor

The resource supports the following methods:

POST

Releases the server-side resources associated with the cursor and removes the runtime MBean instance.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/createDurableSubscriber

The resource supports the following methods:

POST

Creates a durable subscriber on the destination with the specified client ID and subscription name. A message selector and no-local flag may also be specified.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

ClientID

An identifier that uniquely identifies a client connection.

Type: string

subscriptionName

The name used to identify this subscription.

Type: string

selector

Only messages with properties matching the message selector expression are delivered. A value of null or an empty string indicates that there is no message selector for the message consumer.

Type: string

noLocal

If set, inhibits the delivery of messages published by its own connection.

Type: boolean

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/deleteMessages

The resource supports the following methods:

POST

Deletes the set of messages from the destination that are qualified by the specified JMS message selector.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

selector

A JMS message selector to identify which messages to delete.

Type: string

Response Body

Contains a JSON object with a int return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers

This resource manages a collection of weblogic.management.runtime.JMSDurableSubscriberRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}

This resource manages a weblogic.management.runtime.JMSDurableSubscriberRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.JMSDurableSubscriberRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.JMSDurableSubscriberRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/closeCursor

The resource supports the following methods:

POST

Releases the server-side resources associated with the cursor and removes the runtime MBean instance.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/deleteMessages

The resource supports the following methods:

POST

Deletes the set of messages from the destination that are qualified by the specified JMS message selector.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

selector

A JMS message selector to identify which messages to delete.

Type: string

Response Body

Contains a JSON object with a int return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime

This resource manages a weblogic.management.runtime.JMSDestinationRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.JMSDestinationRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.JMSDestinationRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime/closeCursor

The resource supports the following methods:

POST

Releases the server-side resources associated with the cursor and removes the runtime MBean instance.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime/createDurableSubscriber

The resource supports the following methods:

POST

Creates a durable subscriber on the destination with the specified client ID and subscription name. A message selector and no-local flag may also be specified.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

ClientID

An identifier that uniquely identifies a client connection.

Type: string

subscriptionName

The name used to identify this subscription.

Type: string

selector

Only messages with properties matching the message selector expression are delivered. A value of null or an empty string indicates that there is no message selector for the message consumer.

Type: string

noLocal

If set, inhibits the delivery of messages published by its own connection.

Type: boolean

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime/deleteMessages

The resource supports the following methods:

POST

Deletes the set of messages from the destination that are qualified by the specified JMS message selector.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

selector

A JMS message selector to identify which messages to delete.

Type: string

Response Body

Contains a JSON object with a int return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime/getCursorEndPosition

The resource supports the following methods:

POST

Returns the cursor end position in the result set.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime/getCursorSize

The resource supports the following methods:

POST

Returns the number of items in the result set.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime/getCursorStartPosition

The resource supports the following methods:

POST

Returns the cursor start position in the result set.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime/getMessages

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Queries messages on the queue according to the provided message selector and state bitmask and returns a message cursor representing the result set. The timeout parameter specifies the amount of time in seconds for which the cursor is valid. Upon timeout expiration the cursor is invalidated and the associated resources released.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

selector

A valid JMS message selector.

Type: string

timeout

The last access timeout for the cursor. The cursor resources will be reclaimed if it is not accessed within the specified time interval. A value of 0 indicates no timeout.

Type: int

state

A messaging kernel state bitmask. Refer to the messaging kernel MessageElement interface for a description of the various message states.

Type: int

Response Body

Contains a JSON object with a string return field.

POST

Queries messages on the queue according to the provided message selector and returns a message cursor representing the result set. The timeout parameter specifies the amount of time in seconds for which the cursor is valid. Upon timeout expiration the cursor is invalidated and the associated resources released.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

selector

A valid JMS message selector.

Type: string

timeout

The last access timeout for the cursor. The cursor resources will be reclaimed if it is not accessed within the specified time interval. A value of 0 indicates no timeout.

Type: int

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime/pauseConsumption

The resource supports the following methods:

POST

Pauses the consumption on the destination.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime/pauseInsertion

The resource supports the following methods:

POST

Pauses the insertion on the destination.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime/pauseProduction

The resource supports the following methods:

POST

Pauses the production on the destination.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime/resumeConsumption

The resource supports the following methods:

POST

Resumes the consumption operations on the destination.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime/resumeInsertion

The resource supports the following methods:

POST

Resumes the insertion operations on the destination.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime/resumeProduction

The resource supports the following methods:

POST

Resumes the production operations on the destination.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/destinationRuntime/sort

The resource supports the following methods:

POST

Sorts the entire message result set managed by the cursor according to the JMS header attributes specified. The cursor position is set to the new position of the message corresponding to the "start" location before the sort is performed. The method returns the new cursor position.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The handle of the cursor.

Type: string

start

The location of the message before the sort that will be the first message returned after the sort. A value of -1 will place the cursor start position at the head of the new sort order.

Type: long

fields

The JMS header attributes on which to sort.

Type: array of string

ascending

Determines whether the sort of the corresponding fields element is in ascending or descending order.

Type: array of boolean

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/getCursorEndPosition

The resource supports the following methods:

POST

Returns the cursor end position in the result set.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/getCursorSize

The resource supports the following methods:

POST

Returns the number of items in the result set.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/getCursorStartPosition

The resource supports the following methods:

POST

Returns the cursor start position in the result set.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/getMessages

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Queries messages on the queue according to the provided message selector and state bitmask and returns a message cursor representing the result set. The timeout parameter specifies the amount of time in seconds for which the cursor is valid. Upon timeout expiration the cursor is invalidated and the associated resources released.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

selector

A valid JMS message selector.

Type: string

timeout

The last access timeout for the cursor. The cursor resources will be reclaimed if it is not accessed within the specified time interval. A value of 0 indicates no timeout.

Type: int

state

A messaging kernel state bitmask. Refer to the messaging kernel MessageElement interface for a description of the various message states.

Type: int

Response Body

Contains a JSON object with a string return field.

POST

Queries messages on the queue according to the provided message selector and returns a message cursor representing the result set. The timeout parameter specifies the amount of time in seconds for which the cursor is valid. Upon timeout expiration the cursor is invalidated and the associated resources released.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

selector

A valid JMS message selector.

Type: string

timeout

The last access timeout for the cursor. The cursor resources will be reclaimed if it is not accessed within the specified time interval. A value of 0 indicates no timeout.

Type: int

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/durableSubscribers/{name}/sort

The resource supports the following methods:

POST

Sorts the entire message result set managed by the cursor according to the JMS header attributes specified. The cursor position is set to the new position of the message corresponding to the "start" location before the sort is performed. The method returns the new cursor position.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The handle of the cursor.

Type: string

start

The location of the message before the sort that will be the first message returned after the sort. A value of -1 will place the cursor start position at the head of the new sort order.

Type: long

fields

The JMS header attributes on which to sort.

Type: array of string

ascending

Determines whether the sort of the corresponding fields element is in ascending or descending order.

Type: array of boolean

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/getCursorEndPosition

The resource supports the following methods:

POST

Returns the cursor end position in the result set.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/getCursorSize

The resource supports the following methods:

POST

Returns the number of items in the result set.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/getCursorStartPosition

The resource supports the following methods:

POST

Returns the cursor start position in the result set.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/getMessages

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Queries messages on the queue according to the provided message selector and state bitmask and returns a message cursor representing the result set. The timeout parameter specifies the amount of time in seconds for which the cursor is valid. Upon timeout expiration the cursor is invalidated and the associated resources released.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

selector

A valid JMS message selector.

Type: string

timeout

The last access timeout for the cursor. The cursor resources will be reclaimed if it is not accessed within the specified time interval. A value of 0 indicates no timeout.

Type: int

state

A messaging kernel state bitmask. Refer to the messaging kernel MessageElement interface for a description of the various message states.

Type: int

Response Body

Contains a JSON object with a string return field.

POST

Queries messages on the queue according to the provided message selector and returns a message cursor representing the result set. The timeout parameter specifies the amount of time in seconds for which the cursor is valid. Upon timeout expiration the cursor is invalidated and the associated resources released.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

selector

A valid JMS message selector.

Type: string

timeout

The last access timeout for the cursor. The cursor resources will be reclaimed if it is not accessed within the specified time interval. A value of 0 indicates no timeout.

Type: int

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/pauseConsumption

The resource supports the following methods:

POST

Pauses the consumption on the destination.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/pauseInsertion

The resource supports the following methods:

POST

Pauses the insertion on the destination.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/pauseProduction

The resource supports the following methods:

POST

Pauses the production on the destination.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/resumeConsumption

The resource supports the following methods:

POST

Resumes the consumption operations on the destination.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/resumeInsertion

The resource supports the following methods:

POST

Resumes the insertion operations on the destination.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/resumeProduction

The resource supports the following methods:

POST

Resumes the production operations on the destination.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/destinations/{name}/sort

The resource supports the following methods:

POST

Sorts the entire message result set managed by the cursor according to the JMS header attributes specified. The cursor position is set to the new position of the message corresponding to the "start" location before the sort is performed. The method returns the new cursor position.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The handle of the cursor.

Type: string

start

The location of the message before the sort that will be the first message returned after the sort. A value of -1 will place the cursor start position at the head of the new sort order.

Type: long

fields

The JMS header attributes on which to sort.

Type: array of string

ascending

Determines whether the sort of the corresponding fields element is in ascending or descending order.

Type: array of boolean

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/forceCommit

The resource supports the following methods:

POST

Causes the work associated with the specified transaction branch to be committed.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

xid

An xid in string representation for a JMS transaction branch.

Type: string

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/forceRollback

The resource supports the following methods:

POST

Causes the work associated with the specified transaction branch to be rolled back.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

xid

An xid in string representation for a JMS transaction branch.

Type: string

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/getCursorEndPosition

The resource supports the following methods:

POST

Returns the cursor end position in the result set.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/getCursorSize

The resource supports the following methods:

POST

Returns the number of items in the result set.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/getCursorStartPosition

The resource supports the following methods:

POST

Returns the cursor start position in the result set.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/getMessages

The resource supports the following methods:

POST

Returns a set of messages that are associated with a JMS transaction branch. Note that the result set is returned to the caller in the form of a message cursor that may contain messages from several destinations on this JMS server.

The timeout parameter specifies the amount of time in seconds for which the cursor is valid. Upon timeout expiration the cursor is invalidated and the associated resources released.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

xid

An Xid in string representation for a JMS transaction branch.

Type: string

timeoutSeconds

The last access timeout for the cursor. The cursor resources will be reclaimed if it is not accessed within the specified time interval. A value of 0 indicates no timeout.

Type: int

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/getTransactionStatus

The resource supports the following methods:

POST

Given an Xid this method returns the JTA status of the associated JMS transaction branch.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

xid

An Xid in string representation for a JMS transaction branch.

Type: string

Response Body

Contains a JSON object with a int return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/logRuntime

This resource manages a weblogic.management.runtime.LogRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/logRuntime/ensureLogOpened

The resource supports the following methods:

POST

Ensures that that the output stream to the underlying is opened if it got closed previously due to errors.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/logRuntime/flushLog

The resource supports the following methods:

POST

Flushes the buffer to the log file on disk.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/logRuntime/forceLogRotation

The resource supports the following methods:

POST

Forces the rotation of the underlying log immediately.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/pauseConsumption

The resource supports the following methods:

POST

Pauses the consumption operation on all the destinations hosted by the JMSServer.

When the JMSServer is paused for consumption, all of its destination's state is marked as "consumption paused" and all the new synchronous receive operations will block until the destination is resumed and there are messages available for consumption. All the synchronous receive with blocking timeout will block until the timeout happens during the consumption paused state.

All the asynchronous consumers attached to that destination will not get any messages delivered to them while the destination in "consumption paused" state.

After a successful consumption "pause" operation, the user has to explicitly "resume" the destination to allow for any further consume operations on that destination

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/pauseInsertion

The resource supports the following methods:

POST

Pauses the appearance of any messages on all the destinations of the JMSServer, that are result of the in-flight work completion on all the destinations hosted by this JMSServer.

Definition of In-Flight work

The definitions below are based on the current implementation of WebLogic JMS subsystem.

  • In-flight messages associated with Producers

    • UN-BORN MESSAGES

      Messages that are produced by the producer, with "birth time" (TimeToDeliver) set in future are called un-born messages and are counted as "pending" messages in the destination statistics and are not available for consumers yet.

    • UN-COMMITTED MESSAGES

      These are the messages that are produced by the producer as part of the transaction (using either user transaction or transacted session) and the transaction is still not committed or rolled back. These messages are also counted as "pending" messages in the destination statistics and are not available for consumption.

    • QUOTA BLOCKING SEND

      These are the messages that are produced by the producers but are not able reach the destination because of (either message or byte or both) quota limit on the destination and the producers are willing to block for a specific period of time for the quota to be available. These messages are invisible to the system and are not counted against any of the destination statistics.

  • In-flight messages associated with Consumers

    • UN-ACKNOWLEDGED (CLIENT ACK PENDING) MESSAGES

      These are the messages that are successfully consumed by the clients using a "client acknowledge" session, and are awaiting acknowledgements from the clients. These are "pending messages" which will be removed from the destination/system when the acknowledgement is received.

    • UN-COMMITTED MESSAGES

      These are the messages that are consumed (received) by the clients within a transaction (using either user transaction or transacted session) and the transaction is still not committed or rolled back. When the clients successfully commit the transaction the messages get removed from the system.

    • ROLLED BACK MESSAGES

      These are the messages that are put back on the destination because of a successful rollback of transactional receive by the consumers. These messages might or might not be ready for consumption (re-delivered) to the clients immediately, depending on the redelivery parameters, RedeliveryDelay and/or RedeliveryDelayOverride and RedeliveryLimit configured on the associated JMSConnectionFactory and JMSDestination respectively.

      If there is a redelivery delay configured, then for that "delay" duration, the messages are not available for consumption and are counted as "pending" in the destination statistics and after the "delay" period, if the redelivery limit is not exceeded, then they are delivered (made available for consumption) on that destination and are counted as "current" messages in the destination statistics. If the redelivery limit exceeds, then those messages will be moved to the ErrorDestination, if one configured.

      Another parameter that controls the availability of the rolled back messages is RedeliveryLimit.

    • RECOVERED MESSAGES

      These messages are similar to ROLLED BACK MESSAGES except that these messages appear on the queue because of an explicit call to session "recover" by the client.

    • REDELIVERED MESSAGES

      These are again similar to ROLLED BACK MESSAGES except that these messages may re-appear on the destination because of an un-successful delivery attempt to the client (consumer crash, close etc.).

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/pauseProduction

The resource supports the following methods:

POST

Pauses the new message production on all the destinations hosted by the JMSServer.

When the production paused, it would prevent any new produce operations from both new and existing producers attached to the destinations. When the destination is "resumed from production pause", all the new message production is allowed from both new and existing producers attached to that destination.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/resumeConsumption

The resource supports the following methods:

POST

Resumes the consumption operation on all the destinations hosted by the JMSSever.

The state of the destinations shall be marked as "consumption enabled" thus allowing all the "consuming" activity to continue normally.

Invoking this API on a JMSServer that is currently not in "consumption paused" state has no effect.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/resumeInsertion

The resource supports the following methods:

POST

Resumes the in-flight message production operation on all the destinations hosted by the JMSServer. The state of the JMSServer shall be marked as "insertion enabled" thus allowing all the messages from in-flight work completion are alloed to appear on the destinations.

Invoking this API on a JMSServer that is currently not in "insertion paused" state has no effect.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/resumeProduction

The resource supports the following methods:

POST

Resumes the new message production operation on all the destinations hosted by the JMSServer. The state of the JMSServer shall be marked as "production enabled" thus allowing all the new "producing" activity to continue normally. Invoking this API on a JMSServer that is currently not in "production paused" state has no effect.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes

This resource manages a collection of weblogic.management.runtime.JMSSessionPoolRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}

This resource manages a weblogic.management.runtime.JMSSessionPoolRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/connectionConsumers

This resource manages a collection of weblogic.management.runtime.JMSConsumerRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/connectionConsumers/{name}

This resource manages a weblogic.management.runtime.JMSConsumerRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer

This resource manages a weblogic.management.runtime.JMSServerRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.JMSServerRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.JMSServerRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/closeCursor

The resource supports the following methods:

POST

Releases the server-side resources associated with the cursor and removes the runtime MBean instance.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations

This resource manages a collection of weblogic.management.runtime.JMSDestinationRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}

This resource manages a weblogic.management.runtime.JMSDestinationRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.JMSDestinationRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.JMSDestinationRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/closeCursor

The resource supports the following methods:

POST

Releases the server-side resources associated with the cursor and removes the runtime MBean instance.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/createDurableSubscriber

The resource supports the following methods:

POST

Creates a durable subscriber on the destination with the specified client ID and subscription name. A message selector and no-local flag may also be specified.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

ClientID

An identifier that uniquely identifies a client connection.

Type: string

subscriptionName

The name used to identify this subscription.

Type: string

selector

Only messages with properties matching the message selector expression are delivered. A value of null or an empty string indicates that there is no message selector for the message consumer.

Type: string

noLocal

If set, inhibits the delivery of messages published by its own connection.

Type: boolean

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/deleteMessages

The resource supports the following methods:

POST

Deletes the set of messages from the destination that are qualified by the specified JMS message selector.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

selector

A JMS message selector to identify which messages to delete.

Type: string

Response Body

Contains a JSON object with a int return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers

This resource manages a collection of weblogic.management.runtime.JMSDurableSubscriberRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}

This resource manages a weblogic.management.runtime.JMSDurableSubscriberRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.JMSDurableSubscriberRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.JMSDurableSubscriberRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/closeCursor

The resource supports the following methods:

POST

Releases the server-side resources associated with the cursor and removes the runtime MBean instance.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/deleteMessages

The resource supports the following methods:

POST

Deletes the set of messages from the destination that are qualified by the specified JMS message selector.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

selector

A JMS message selector to identify which messages to delete.

Type: string

Response Body

Contains a JSON object with a int return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/destinationRuntime

This resource manages a weblogic.management.runtime.JMSDestinationRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.JMSDestinationRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.JMSDestinationRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/destinationRuntime/closeCursor

The resource supports the following methods:

POST

Releases the server-side resources associated with the cursor and removes the runtime MBean instance.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/destinationRuntime/createDurableSubscriber

The resource supports the following methods:

POST

Creates a durable subscriber on the destination with the specified client ID and subscription name. A message selector and no-local flag may also be specified.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

ClientID

An identifier that uniquely identifies a client connection.

Type: string

subscriptionName

The name used to identify this subscription.

Type: string

selector

Only messages with properties matching the message selector expression are delivered. A value of null or an empty string indicates that there is no message selector for the message consumer.

Type: string

noLocal

If set, inhibits the delivery of messages published by its own connection.

Type: boolean

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/destinationRuntime/deleteMessages

The resource supports the following methods:

POST

Deletes the set of messages from the destination that are qualified by the specified JMS message selector.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

selector

A JMS message selector to identify which messages to delete.

Type: string

Response Body

Contains a JSON object with a int return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/destinationRuntime/getCursorEndPosition

The resource supports the following methods:

POST

Returns the cursor end position in the result set.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/destinationRuntime/getCursorSize

The resource supports the following methods:

POST

Returns the number of items in the result set.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/destinationRuntime/getCursorStartPosition

The resource supports the following methods:

POST

Returns the cursor start position in the result set.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/destinationRuntime/getMessages

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Queries messages on the queue according to the provided message selector and state bitmask and returns a message cursor representing the result set. The timeout parameter specifies the amount of time in seconds for which the cursor is valid. Upon timeout expiration the cursor is invalidated and the associated resources released.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

selector

A valid JMS message selector.

Type: string

timeout

The last access timeout for the cursor. The cursor resources will be reclaimed if it is not accessed within the specified time interval. A value of 0 indicates no timeout.

Type: int

state

A messaging kernel state bitmask. Refer to the messaging kernel MessageElement interface for a description of the various message states.

Type: int

Response Body

Contains a JSON object with a string return field.

POST

Queries messages on the queue according to the provided message selector and returns a message cursor representing the result set. The timeout parameter specifies the amount of time in seconds for which the cursor is valid. Upon timeout expiration the cursor is invalidated and the associated resources released.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

selector

A valid JMS message selector.

Type: string

timeout

The last access timeout for the cursor. The cursor resources will be reclaimed if it is not accessed within the specified time interval. A value of 0 indicates no timeout.

Type: int

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/destinationRuntime/pauseConsumption

The resource supports the following methods:

POST

Pauses the consumption on the destination.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/destinationRuntime/pauseInsertion

The resource supports the following methods:

POST

Pauses the insertion on the destination.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/destinationRuntime/pauseProduction

The resource supports the following methods:

POST

Pauses the production on the destination.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/destinationRuntime/resumeConsumption

The resource supports the following methods:

POST

Resumes the consumption operations on the destination.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/destinationRuntime/resumeInsertion

The resource supports the following methods:

POST

Resumes the insertion operations on the destination.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/destinationRuntime/resumeProduction

The resource supports the following methods:

POST

Resumes the production operations on the destination.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/destinationRuntime/sort

The resource supports the following methods:

POST

Sorts the entire message result set managed by the cursor according to the JMS header attributes specified. The cursor position is set to the new position of the message corresponding to the "start" location before the sort is performed. The method returns the new cursor position.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The handle of the cursor.

Type: string

start

The location of the message before the sort that will be the first message returned after the sort. A value of -1 will place the cursor start position at the head of the new sort order.

Type: long

fields

The JMS header attributes on which to sort.

Type: array of string

ascending

Determines whether the sort of the corresponding fields element is in ascending or descending order.

Type: array of boolean

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/getCursorEndPosition

The resource supports the following methods:

POST

Returns the cursor end position in the result set.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/getCursorSize

The resource supports the following methods:

POST

Returns the number of items in the result set.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/getCursorStartPosition

The resource supports the following methods:

POST

Returns the cursor start position in the result set.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/getMessages

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Queries messages on the queue according to the provided message selector and state bitmask and returns a message cursor representing the result set. The timeout parameter specifies the amount of time in seconds for which the cursor is valid. Upon timeout expiration the cursor is invalidated and the associated resources released.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

selector

A valid JMS message selector.

Type: string

timeout

The last access timeout for the cursor. The cursor resources will be reclaimed if it is not accessed within the specified time interval. A value of 0 indicates no timeout.

Type: int

state

A messaging kernel state bitmask. Refer to the messaging kernel MessageElement interface for a description of the various message states.

Type: int

Response Body

Contains a JSON object with a string return field.

POST

Queries messages on the queue according to the provided message selector and returns a message cursor representing the result set. The timeout parameter specifies the amount of time in seconds for which the cursor is valid. Upon timeout expiration the cursor is invalidated and the associated resources released.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

selector

A valid JMS message selector.

Type: string

timeout

The last access timeout for the cursor. The cursor resources will be reclaimed if it is not accessed within the specified time interval. A value of 0 indicates no timeout.

Type: int

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/durableSubscribers/{name}/sort

The resource supports the following methods:

POST

Sorts the entire message result set managed by the cursor according to the JMS header attributes specified. The cursor position is set to the new position of the message corresponding to the "start" location before the sort is performed. The method returns the new cursor position.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The handle of the cursor.

Type: string

start

The location of the message before the sort that will be the first message returned after the sort. A value of -1 will place the cursor start position at the head of the new sort order.

Type: long

fields

The JMS header attributes on which to sort.

Type: array of string

ascending

Determines whether the sort of the corresponding fields element is in ascending or descending order.

Type: array of boolean

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/getCursorEndPosition

The resource supports the following methods:

POST

Returns the cursor end position in the result set.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/getCursorSize

The resource supports the following methods:

POST

Returns the number of items in the result set.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/getCursorStartPosition

The resource supports the following methods:

POST

Returns the cursor start position in the result set.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/getMessages

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Queries messages on the queue according to the provided message selector and state bitmask and returns a message cursor representing the result set. The timeout parameter specifies the amount of time in seconds for which the cursor is valid. Upon timeout expiration the cursor is invalidated and the associated resources released.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

selector

A valid JMS message selector.

Type: string

timeout

The last access timeout for the cursor. The cursor resources will be reclaimed if it is not accessed within the specified time interval. A value of 0 indicates no timeout.

Type: int

state

A messaging kernel state bitmask. Refer to the messaging kernel MessageElement interface for a description of the various message states.

Type: int

Response Body

Contains a JSON object with a string return field.

POST

Queries messages on the queue according to the provided message selector and returns a message cursor representing the result set. The timeout parameter specifies the amount of time in seconds for which the cursor is valid. Upon timeout expiration the cursor is invalidated and the associated resources released.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

selector

A valid JMS message selector.

Type: string

timeout

The last access timeout for the cursor. The cursor resources will be reclaimed if it is not accessed within the specified time interval. A value of 0 indicates no timeout.

Type: int

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/pauseConsumption

The resource supports the following methods:

POST

Pauses the consumption on the destination.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/pauseInsertion

The resource supports the following methods:

POST

Pauses the insertion on the destination.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/pauseProduction

The resource supports the following methods:

POST

Pauses the production on the destination.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/resumeConsumption

The resource supports the following methods:

POST

Resumes the consumption operations on the destination.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/resumeInsertion

The resource supports the following methods:

POST

Resumes the insertion operations on the destination.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/resumeProduction

The resource supports the following methods:

POST

Resumes the production operations on the destination.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/destinations/{name}/sort

The resource supports the following methods:

POST

Sorts the entire message result set managed by the cursor according to the JMS header attributes specified. The cursor position is set to the new position of the message corresponding to the "start" location before the sort is performed. The method returns the new cursor position.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The handle of the cursor.

Type: string

start

The location of the message before the sort that will be the first message returned after the sort. A value of -1 will place the cursor start position at the head of the new sort order.

Type: long

fields

The JMS header attributes on which to sort.

Type: array of string

ascending

Determines whether the sort of the corresponding fields element is in ascending or descending order.

Type: array of boolean

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/forceCommit

The resource supports the following methods:

POST

Causes the work associated with the specified transaction branch to be committed.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

xid

An xid in string representation for a JMS transaction branch.

Type: string

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/forceRollback

The resource supports the following methods:

POST

Causes the work associated with the specified transaction branch to be rolled back.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

xid

An xid in string representation for a JMS transaction branch.

Type: string

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/getCursorEndPosition

The resource supports the following methods:

POST

Returns the cursor end position in the result set.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/getCursorSize

The resource supports the following methods:

POST

Returns the number of items in the result set.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/getCursorStartPosition

The resource supports the following methods:

POST

Returns the cursor start position in the result set.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/getMessages

The resource supports the following methods:

POST

Returns a set of messages that are associated with a JMS transaction branch. Note that the result set is returned to the caller in the form of a message cursor that may contain messages from several destinations on this JMS server.

The timeout parameter specifies the amount of time in seconds for which the cursor is valid. Upon timeout expiration the cursor is invalidated and the associated resources released.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

xid

An Xid in string representation for a JMS transaction branch.

Type: string

timeoutSeconds

The last access timeout for the cursor. The cursor resources will be reclaimed if it is not accessed within the specified time interval. A value of 0 indicates no timeout.

Type: int

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/getTransactionStatus

The resource supports the following methods:

POST

Given an Xid this method returns the JTA status of the associated JMS transaction branch.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

xid

An Xid in string representation for a JMS transaction branch.

Type: string

Response Body

Contains a JSON object with a int return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/logRuntime

This resource manages a weblogic.management.runtime.LogRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.LogRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/logRuntime/ensureLogOpened

The resource supports the following methods:

POST

Ensures that that the output stream to the underlying is opened if it got closed previously due to errors.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/logRuntime/flushLog

The resource supports the following methods:

POST

Flushes the buffer to the log file on disk.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/logRuntime/forceLogRotation

The resource supports the following methods:

POST

Forces the rotation of the underlying log immediately.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/pauseConsumption

The resource supports the following methods:

POST

Pauses the consumption operation on all the destinations hosted by the JMSServer.

When the JMSServer is paused for consumption, all of its destination's state is marked as "consumption paused" and all the new synchronous receive operations will block until the destination is resumed and there are messages available for consumption. All the synchronous receive with blocking timeout will block until the timeout happens during the consumption paused state.

All the asynchronous consumers attached to that destination will not get any messages delivered to them while the destination in "consumption paused" state.

After a successful consumption "pause" operation, the user has to explicitly "resume" the destination to allow for any further consume operations on that destination

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/pauseInsertion

The resource supports the following methods:

POST

Pauses the appearance of any messages on all the destinations of the JMSServer, that are result of the in-flight work completion on all the destinations hosted by this JMSServer.

Definition of In-Flight work

The definitions below are based on the current implementation of WebLogic JMS subsystem.

  • In-flight messages associated with Producers

    • UN-BORN MESSAGES

      Messages that are produced by the producer, with "birth time" (TimeToDeliver) set in future are called un-born messages and are counted as "pending" messages in the destination statistics and are not available for consumers yet.

    • UN-COMMITTED MESSAGES

      These are the messages that are produced by the producer as part of the transaction (using either user transaction or transacted session) and the transaction is still not committed or rolled back. These messages are also counted as "pending" messages in the destination statistics and are not available for consumption.

    • QUOTA BLOCKING SEND

      These are the messages that are produced by the producers but are not able reach the destination because of (either message or byte or both) quota limit on the destination and the producers are willing to block for a specific period of time for the quota to be available. These messages are invisible to the system and are not counted against any of the destination statistics.

  • In-flight messages associated with Consumers

    • UN-ACKNOWLEDGED (CLIENT ACK PENDING) MESSAGES

      These are the messages that are successfully consumed by the clients using a "client acknowledge" session, and are awaiting acknowledgements from the clients. These are "pending messages" which will be removed from the destination/system when the acknowledgement is received.

    • UN-COMMITTED MESSAGES

      These are the messages that are consumed (received) by the clients within a transaction (using either user transaction or transacted session) and the transaction is still not committed or rolled back. When the clients successfully commit the transaction the messages get removed from the system.

    • ROLLED BACK MESSAGES

      These are the messages that are put back on the destination because of a successful rollback of transactional receive by the consumers. These messages might or might not be ready for consumption (re-delivered) to the clients immediately, depending on the redelivery parameters, RedeliveryDelay and/or RedeliveryDelayOverride and RedeliveryLimit configured on the associated JMSConnectionFactory and JMSDestination respectively.

      If there is a redelivery delay configured, then for that "delay" duration, the messages are not available for consumption and are counted as "pending" in the destination statistics and after the "delay" period, if the redelivery limit is not exceeded, then they are delivered (made available for consumption) on that destination and are counted as "current" messages in the destination statistics. If the redelivery limit exceeds, then those messages will be moved to the ErrorDestination, if one configured.

      Another parameter that controls the availability of the rolled back messages is RedeliveryLimit.

    • RECOVERED MESSAGES

      These messages are similar to ROLLED BACK MESSAGES except that these messages appear on the queue because of an explicit call to session "recover" by the client.

    • REDELIVERED MESSAGES

      These are again similar to ROLLED BACK MESSAGES except that these messages may re-appear on the destination because of an un-successful delivery attempt to the client (consumer crash, close etc.).

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/pauseProduction

The resource supports the following methods:

POST

Pauses the new message production on all the destinations hosted by the JMSServer.

When the production paused, it would prevent any new produce operations from both new and existing producers attached to the destinations. When the destination is "resumed from production pause", all the new message production is allowed from both new and existing producers attached to that destination.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/resumeConsumption

The resource supports the following methods:

POST

Resumes the consumption operation on all the destinations hosted by the JMSSever.

The state of the destinations shall be marked as "consumption enabled" thus allowing all the "consuming" activity to continue normally.

Invoking this API on a JMSServer that is currently not in "consumption paused" state has no effect.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/resumeInsertion

The resource supports the following methods:

POST

Resumes the in-flight message production operation on all the destinations hosted by the JMSServer. The state of the JMSServer shall be marked as "insertion enabled" thus allowing all the messages from in-flight work completion are alloed to appear on the destinations.

Invoking this API on a JMSServer that is currently not in "insertion paused" state has no effect.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/resumeProduction

The resource supports the following methods:

POST

Resumes the new message production operation on all the destinations hosted by the JMSServer. The state of the JMSServer shall be marked as "production enabled" thus allowing all the new "producing" activity to continue normally. Invoking this API on a JMSServer that is currently not in "production paused" state has no effect.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sessionPoolRuntimes/{name}/JMSServer/sort

The resource supports the following methods:

POST

Sorts the entire message result set managed by the cursor according to the JMS header attributes specified. The cursor position is set to the new position of the message corresponding to the "start" location before the sort is performed. The method returns the new cursor position.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The handle of the cursor.

Type: string

start

The location of the message before the sort that will be the first message returned after the sort. A value of -1 will place the cursor start position at the head of the new sort order.

Type: long

fields

The JMS header attributes on which to sort.

Type: array of string

ascending

Determines whether the sort of the corresponding fields element is in ascending or descending order.

Type: array of boolean

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JMSRuntime/JMSServers/{name}/sort

The resource supports the following methods:

POST

Sorts the entire message result set managed by the cursor according to the JMS header attributes specified. The cursor position is set to the new position of the message corresponding to the "start" location before the sort is performed. The method returns the new cursor position.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The handle of the cursor.

Type: string

start

The location of the message before the sort that will be the first message returned after the sort. A value of -1 will place the cursor start position at the head of the new sort order.

Type: long

fields

The JMS header attributes on which to sort.

Type: array of string

ascending

Determines whether the sort of the corresponding fields element is in ascending or descending order.

Type: array of boolean

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JTAPartitionRuntime

This resource manages a weblogic.management.runtime.JTAPartitionRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.JTAPartitionRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.JTAPartitionRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JTAPartitionRuntime/nonXAResourceRuntimeMBeans

This resource manages a collection of weblogic.management.runtime.NonXAResourceRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.NonXAResourceRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JTAPartitionRuntime/nonXAResourceRuntimeMBeans/{name}

This resource manages a weblogic.management.runtime.NonXAResourceRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JTAPartitionRuntime/transactionNameRuntimeMBeans

This resource manages a collection of weblogic.management.runtime.TransactionNameRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JTAPartitionRuntime/transactionNameRuntimeMBeans/{name}

This resource manages a weblogic.management.runtime.TransactionNameRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JTAPartitionRuntime/transactionResourceRuntimeMBeans

This resource manages a collection of weblogic.management.runtime.TransactionResourceRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/JTAPartitionRuntime/transactionResourceRuntimeMBeans/{name}

This resource manages a weblogic.management.runtime.TransactionResourceRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/libraryRuntimes

This resource manages a collection of weblogic.management.runtime.LibraryRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.LibraryRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.runtime.LibraryRuntimeMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/libraryRuntimes/{name}

This resource manages a weblogic.management.runtime.LibraryRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.LibraryRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/libraryRuntimes/{name}/referencingRuntimes

This resource manages a collection of weblogic.management.runtime.RuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.RuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/libraryRuntimes/{name}/referencingRuntimes/{name}

This resource manages a weblogic.management.runtime.RuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/mailSessionRuntimes

This resource manages a collection of weblogic.management.runtime.MailSessionRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.MailSessionRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.runtime.MailSessionRuntimeMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/mailSessionRuntimes/{name}

This resource manages a weblogic.management.runtime.MailSessionRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.MailSessionRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/maxThreadsConstraintRuntimes

This resource manages a collection of weblogic.management.runtime.MaxThreadsConstraintRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.MaxThreadsConstraintRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/maxThreadsConstraintRuntimes/{name}

This resource manages a weblogic.management.runtime.MaxThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/messagingBridgeRuntimes

This resource manages a collection of weblogic.management.runtime.MessagingBridgeRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.MessagingBridgeRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/messagingBridgeRuntimes/{name}

This resource manages a weblogic.management.runtime.MessagingBridgeRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/minThreadsConstraintRuntimes

This resource manages a collection of weblogic.management.runtime.MinThreadsConstraintRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.MinThreadsConstraintRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/minThreadsConstraintRuntimes/{name}

This resource manages a weblogic.management.runtime.MinThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/partitionResourceMetricsRuntime

This resource manages a weblogic.management.runtime.PartitionResourceMetricsRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/partitionWorkManagerRuntime

This resource manages a weblogic.management.runtime.PartitionWorkManagerRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.PartitionWorkManagerRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.PartitionWorkManagerRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/partitionWorkManagerRuntime/fairShareRuntime

This resource manages a weblogic.management.runtime.PartitionFairShareRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/partitionWorkManagerRuntime/maxThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MaxThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/partitionWorkManagerRuntime/minThreadsConstraintCapRuntime

This resource manages a weblogic.management.runtime.PartitionMinThreadsConstraintCapRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/pathServiceRuntimes

This resource manages a collection of weblogic.management.runtime.PathServiceRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.PathServiceRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.runtime.PathServiceRuntimeMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/pathServiceRuntimes/{name}

This resource manages a weblogic.management.runtime.PathServiceRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.PathServiceRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/pathServiceRuntimes/{name}/assemblies

This resource manages a collection of weblogic.management.runtime.PSAssemblyRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.PSAssemblyRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/pathServiceRuntimes/{name}/assemblies/{name}

This resource manages a weblogic.management.runtime.PSAssemblyRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.PSAssemblyRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.PSAssemblyRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/pathServiceRuntimes/{name}/assemblies/{name}/closeCursor

The resource supports the following methods:

POST

Releases the server-side resources associated with the cursor and removes the runtime MBean instance.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/pathServiceRuntimes/{name}/assemblies/{name}/getCursorEndPosition

The resource supports the following methods:

POST

Returns the cursor end position in the result set.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/pathServiceRuntimes/{name}/assemblies/{name}/getCursorSize

The resource supports the following methods:

POST

Returns the number of items in the result set.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/pathServiceRuntimes/{name}/assemblies/{name}/getCursorStartPosition

The resource supports the following methods:

POST

Returns the cursor start position in the result set.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/pathServiceRuntimes/{name}/assemblies/{name}/getMapEntries

The resource supports the following methods:

POST

Returns all entries in a persistent map's assembly.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

timeout

how many seconds till operatoin times out. Zero is an infinite timeout.

Type: int

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/pathServiceRuntimes/{name}/assemblies/{name}/remove

The resource supports the following methods:

POST

Remove the path service entry referenced by this object.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

the handle to the cursor

Type: string

itemHandle

the handle to a specific item in the cursor

Type: int

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/persistentStoreRuntimes

This resource manages a collection of weblogic.management.runtime.PersistentStoreRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.PersistentStoreRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/persistentStoreRuntimes/{name}

This resource manages a weblogic.management.runtime.PersistentStoreRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/persistentStoreRuntimes/{name}/connections

This resource manages a collection of weblogic.management.runtime.PersistentStoreConnectionRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/persistentStoreRuntimes/{name}/connections/{name}

This resource manages a weblogic.management.runtime.PersistentStoreConnectionRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/requestClassRuntimes

This resource manages a collection of weblogic.management.runtime.RequestClassRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.RequestClassRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.runtime.RequestClassRuntimeMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/requestClassRuntimes/{name}

This resource manages a weblogic.management.runtime.RequestClassRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.RequestClassRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/resourceManagerRuntime

This resource manages a weblogic.management.runtime.ResourceManagerRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.ResourceManagerRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/resourceManagerRuntime/resourceRuntimes

This resource manages a collection of weblogic.management.runtime.ResourceRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.ResourceRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/resourceManagerRuntime/resourceRuntimes/{name}

This resource manages a weblogic.management.runtime.ResourceRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/resourceManagerRuntime/resourceRuntimes/{name}/fairShareConstraintRuntime

This resource manages a weblogic.management.runtime.FairShareConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/resourceManagerRuntime/resourceRuntimes/{name}/triggerRuntimes

This resource manages a collection of weblogic.management.runtime.TriggerRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/resourceManagerRuntime/resourceRuntimes/{name}/triggerRuntimes/{name}

This resource manages a weblogic.management.runtime.TriggerRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/resume

The resource supports the following methods:

POST

Resume a suspended partition. Allow new requests. This operation transitions the partition into RUNNING state.

Roles

Admin, Operator

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/resumeResourceGroup

The resource supports the following methods:

POST

Resume suspended resource group. Allow new requests. This operation transitions the resource group into RUNNING state.

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

resourceGroupName

resourceGroupName

Type: string

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime

This resource manages a weblogic.management.runtime.SAFRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.SAFRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.SAFRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents

This resource manages a collection of weblogic.management.runtime.SAFAgentRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.SAFAgentRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.runtime.SAFAgentRuntimeMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}

This resource manages a weblogic.management.runtime.SAFAgentRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.SAFAgentRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.SAFAgentRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/conversations

This resource manages a collection of weblogic.management.runtime.SAFConversationRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.SAFConversationRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/conversations/{name}

This resource manages a weblogic.management.runtime.SAFConversationRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/conversations/{name}/destroy

The resource supports the following methods:

POST

Destroys the conversation and purges all the messages.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/logRuntime

This resource manages a weblogic.management.runtime.LogRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.LogRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/logRuntime/ensureLogOpened

The resource supports the following methods:

POST

Ensures that that the output stream to the underlying is opened if it got closed previously due to errors.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/logRuntime/flushLog

The resource supports the following methods:

POST

Flushes the buffer to the log file on disk.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/logRuntime/forceLogRotation

The resource supports the following methods:

POST

Forces the rotation of the underlying log immediately.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/pauseForwarding

The resource supports the following methods:

POST

Pauses the sending agent on forwarding messages so that the agent will not forward messages but will accept new messages.

Roles

Admin, Operator

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/pauseIncoming

The resource supports the following methods:

POST

Pauses the sending agent on accepting new messages.

Roles

Admin, Operator

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/pauseReceiving

The resource supports the following methods:

POST

Pauses the receiving agent on receiving messages.

Roles

Admin, Operator

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/remoteEndpoints

This resource manages a collection of weblogic.management.runtime.SAFRemoteEndpointRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.SAFRemoteEndpointRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/remoteEndpoints/{name}

This resource manages a weblogic.management.runtime.SAFRemoteEndpointRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.SAFRemoteEndpointRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.SAFRemoteEndpointRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/remoteEndpoints/{name}/closeCursor

The resource supports the following methods:

POST

Releases the server-side resources associated with the cursor and removes the runtime MBean instance.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/remoteEndpoints/{name}/expireAll

The resource supports the following methods:

POST

All pending messages for a remote destination are processed according to the policy specified by the associated Error Handling configuration and then removed.

  • When selected, expireAll is performed asynchronously by the server.

  • Oracle recommends that the remote endpoint is paused for incoming messages prior to expiring messages. When all pending messages are processed and removed, the remote endpoint can be set to resume and accept new messages.

  • The state of the expireAll operation can be determined by the getOperationState method.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/remoteEndpoints/{name}/getCursorEndPosition

The resource supports the following methods:

POST

Returns the cursor end position in the result set.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/remoteEndpoints/{name}/getCursorSize

The resource supports the following methods:

POST

Returns the number of items in the result set.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/remoteEndpoints/{name}/getCursorStartPosition

The resource supports the following methods:

POST

Returns the cursor start position in the result set.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/remoteEndpoints/{name}/getMessages

The resource supports the following methods:

POST

Queries messages on the queue according to the message selector and returns a message cursor representing the result set. The timeout parameter specifies the amount of time in seconds for which the cursor is valid. If the cursor expires, the associated resources are released.

Roles

Admin, Monitor, Operator

Request Body

Must contain a JSON object with the following fields:

selector

A valid JMS message selector or SAF message selector.

Type: string

timeout

Specifies the amount of time the message cursor is valid. A value of 0 indicates the cursor does not expire.

Type: int

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/remoteEndpoints/{name}/pauseForwarding

The resource supports the following methods:

POST

Pauses the forwarding of messages for a remote endpoint. The agent accepts new messages but does not forward them.

Roles

Admin, Operator

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/remoteEndpoints/{name}/pauseIncoming

The resource supports the following methods:

POST

Pauses a remote endpoint so that new messages are not accepted.

Roles

Admin, Operator

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/remoteEndpoints/{name}/purge

The resource supports the following methods:

POST

Destroys all conversations and purges all the pending messages for a remote destination.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/remoteEndpoints/{name}/resumeForwarding

The resource supports the following methods:

POST

Resumes the forwarding of messages for the remote endpoint.

Roles

Admin, Operator

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/remoteEndpoints/{name}/resumeIncoming

The resource supports the following methods:

POST

Resumes a remote endpoint so that new messages are accepted.

Roles

Admin, Operator

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/remoteEndpoints/{name}/sort

The resource supports the following methods:

POST

Sorts the entire message result set managed by the cursor according to the SAF header attributes specified. The cursor position is set to the new position of the message corresponding to the "start" location before the sort is performed. The method returns the new cursor position.

Roles

Admin, Monitor, Operator

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The handle of the cursor on which to perform the sort operation

Type: string

start

The location of the message before the sort that will be the first message returned after the sort. A value of -1 will place the cursor start position at the head of the new sort order.

Type: long

fields

The SAF header attributes on which to sort.

Type: array of string

ascending

Determines whether the sort of the corresponding fields element is in ascending or descending order.

Type: array of boolean

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/resumeForwarding

The resource supports the following methods:

POST

Resumes the sending agent for forwarding messages.

Roles

Admin, Operator

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/resumeIncoming

The resource supports the following methods:

POST

Resumes the sending agent for accepting new messages.

Roles

Admin, Operator

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/SAFRuntime/agents/{name}/resumeReceiving

The resource supports the following methods:

POST

Resumes the receiving agent for receiving messages.

Roles

Admin, Operator

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/shutdown

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Gracefully shuts down the partition after handling inflight work; optionally ignores pending HTTP sessions while handling inflight work.

The following inflight work is allowed to complete before shutdown:

  • Pending transaction's and TLOG checkpoint

  • Pending HTTP sessions

  • Pending JMS work

  • Pending work in the execute queues

  • RMI requests with transaction context

Further administrative calls are accepted while the partition is completing inflight work. For example, a forceShutdown command can be issued to quickly shutdown the partition if graceful shutdown is taking too long to complete.

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

timeout

Number of seconds to wait before aborting inflight work and shutting down the partition.

Type: int

ignoreSessions

true indicates ignore pending HTTP sessions during inflight work handling.

Type: boolean

waitForAllSessions

true indicates waiting for all HTTP sessions during inflight work handling; false indicates waiting for non-persisted HTTP sessions only.

Type: boolean

Response Body

Contains an empty JSON object.

POST

Gracefully shuts down the partition after handling inflight work.

Roles

Admin, Operator

Response Body

Contains an empty JSON object.

POST

Gracefully shuts down the partition after handling inflight work.

This method is same to call: shutdown(timeout, ignoreSessions, false);

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

timeout

timeout

Type: int

ignoreSessions

ignoreSessions

Type: boolean

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/shutdownResourceGroup

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Gracefully shuts down the resource group after handling inflight work.

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

resourceGroupName

resourceGroupName

Type: string

Response Body

Contains an empty JSON object.

POST

Gracefully shuts down the partition after handling inflight work. Optionally, ignores pending HTTP sessions while handling inflight work.

The following inflight work is allowed to complete before shutdown:

  • Pending transaction's and TLOG checkpoint

  • Pending HTTP sessions

  • Pending JMS work

  • Pending work in the execute queues

  • RMI requests with transaction context

Further administrative calls are accepted while the server is completing inflight work. For example a forceShutdown command can be issued to quickly shutdown the partition if graceful shutdown takes a long time.

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

resourceGroupName

resourceGroupName

Type: string

timeout

Number of seconds to wait before aborting inflight work and shutting down the partition.

Type: int

ignoreSessions

true indicates ignore pending HTTP sessions during inflight work handling.

Type: boolean

waitForAllSessions

true indicates waiting for all HTTP sessions during inflight work handling; false indicates waiting for non-persisted HTTP sessions only.

Type: boolean

Response Body

Contains an empty JSON object.

POST

Gracefully shuts down the partition after handling inflight work.

This method is same to call: shutdown(timeout, ignoreSessions, false);

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

resourceGroupName

resourceGroupName

Type: string

timeout

timeout

Type: int

ignoreSessions

ignoreSessions

Type: boolean

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/startResourceGroup

The resource supports the following methods:

POST

starts the resource group.

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

resourceGroupName

The resource group name

Type: string

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/startResourceGroupInAdmin

The resource supports the following methods:

POST

Starts the resource group in ADMIN state. Applications and resources are fully available to administrators in ADMIN state. Non-admin users are denied access to applications and resources

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

resourceGroupName

resourceGroupName

Type: string

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/suspend

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Suspends the partition. Denies new requests except by privileged users. Allows pending requests to complete. This operation transitions the partition into ADMIN state. Applications and resources are fully available to administrators in ADMIN state. Non-admin users are denied access to applications and resources

Roles

Admin, Operator

Response Body

Contains an empty JSON object.

POST

Transitions the partition from RUNNING to ADMIN state gracefully.

Applications are in admin mode. Inflight work is completed. Applications and resources are fully available to administrators in ADMIN state. Non-admin users are denied access to applications and resources

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

timeout

Seconds to wait for partition to transition gracefully. The forceSuspend() is called after timeout.

Type: int

ignoreSessions

drop inflight HTTP sessions during graceful suspend

Type: boolean

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/suspendResourceGroup

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Suspends resource group. Denies new requests except by privileged users. Allows pending requests to complete. This operation transitions the partition into ADMIN state. Applications and resources are fully available to administrators in ADMIN state. Non-admin users are denied access to applications and resources

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

resourceGroupName

resourceGroupName

Type: string

timeout

timeout

Type: int

ignoreSessions

ignoreSessions

Type: boolean

Response Body

Contains an empty JSON object.

POST

Suspends resource group. Denies new requests except by privileged users. Allows pending requests to complete. This operation transitions the partition into ADMIN state. Applications and resources are fully available to administrators in ADMIN state. Non-admin users are denied access to applications and resources

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

resourceGroupName

resourceGroupName

Type: string

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime

This resource manages a weblogic.management.runtime.WLDFPartitionRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WLDFPartitionRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.WLDFPartitionRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionAccessRuntime

This resource manages a weblogic.management.runtime.WLDFPartitionAccessRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionAccessRuntime/dataAccessRuntimes

This resource manages a collection of weblogic.diagnostics.accessor.runtime.DataAccessRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionAccessRuntime/dataAccessRuntimes/{name}

This resource manages a weblogic.diagnostics.accessor.runtime.DataAccessRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.diagnostics.accessor.runtime.DataAccessRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.diagnostics.accessor.runtime.DataAccessRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionAccessRuntime/dataAccessRuntimes/{name}/closeCursor

The resource supports the following methods:

POST

Disposes of the cursor once the client has fetched all the records.

Roles

Admin, Deployer, Monitor, Operator

Request Body

Must contain a JSON object with the following fields:

cursorName

cursorName

Type: string

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionAccessRuntime/dataAccessRuntimes/{name}/deleteDataRecords

The resource supports the following methods:

POST

Delete records within the specified time range that match the specified query. If the query is null or empty, all records within the time range will be deleted.

Start and end times are specified as the number of milliseconds elapsed since the epoch: Jan 1 1970 AD, 00:00:00 GMT.

Not all archives support a deletion feature. If not supported, this method will throw an UnsupportedOperationException exception.

Roles

Admin, Deployer, Monitor, Operator

Request Body

Must contain a JSON object with the following fields:

startTime

Start time of the interval (inclusive)

Type: long

endTime

End time of the interval (exclusive)

Type: long

queryString

Query criterion

Type: string

Response Body

Contains a JSON object with a int return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionAccessRuntime/dataAccessRuntimes/{name}/getDataRecordCount

The resource supports the following methods:

POST

The resource supports the following methods:

POST

The number of records that match the specified query and time range.

Start and end times are specified as the number of milliseconds elapsed since the epoch: Jan 1 1970 AD, 00:00:00 GMT.

Roles

Admin, Deployer, Monitor, Operator

Request Body

Must contain a JSON object with the following fields:

startTime

Start time of the interval (inclusive)

Type: long

endTime

End time of the interval (exclusive)

Type: long

query

Query criterion

Type: string

Response Body

Contains a JSON object with a int return field.

POST

The number of records that match the specified query.

Roles

Admin, Deployer, Monitor, Operator

Request Body

Must contain a JSON object with the following fields:

query

Query expression

Type: string

Response Body

Contains a JSON object with a int return field.

POST

The number that match the specified query and record-ID range, and whose timestamp (if it is available) is earlier than the specified end time.

The end time is specified as the number of milliseconds elapsed since the epoch: Jan 1 1970 AD, 00:00:00 GMT.

Roles

Admin, Deployer, Monitor, Operator

Request Body

Must contain a JSON object with the following fields:

startRecordId

Record id of the first record

Type: long

endRecordId

Look at records whose record-ids are smaller than specified endrecordId

Type: long

endTime

Look at records which were entered prior to endTime

Type: long

query

Query criterion

Type: string

Response Body

Contains a JSON object with a int return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionAccessRuntime/dataAccessRuntimes/{name}/hasMoreData

The resource supports the following methods:

POST

Determines whether the specified cursor has more data to be fetched.

Roles

Admin, Deployer, Monitor, Operator

Request Body

Must contain a JSON object with the following fields:

cursorName

cursorName

Type: string

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionAccessRuntime/dataAccessRuntimes/{name}/openCursor

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Opens a cursor with the specified timeout value, in milliseconds.

Roles

Admin, Deployer, Monitor, Operator

Request Body

Must contain a JSON object with the following fields:

query

The query expression to filter the result set from the underlying diagnostic log.

Type: string

cursorTimeout

The timeout interval after which the cursor will become invalid if not invoked.

Type: long

Response Body

Contains a JSON object with a string return field.

POST

Opens a cursor for records that meet the specified time range and query condition. The timeout value for the cursor is also specified.

Timestamps are specified as the number of milliseconds elapsed since the epoch: Jan 1 1970 AD, 00:00:00 GMT.

Roles

Admin, Deployer, Monitor, Operator

Request Body

Must contain a JSON object with the following fields:

beginTimestamp

beginTimestamp

Type: long

endTimestamp

endTimestamp

Type: long

query

query

Type: string

cusorTimeout

cusorTimeout

Type: long

Response Body

Contains a JSON object with a string return field.

POST

Opens a cursor on the server side for the query.

Roles

Admin, Deployer, Monitor, Operator

Request Body

Must contain a JSON object with the following fields:

query

The query expression to filter the result set from the underlying diagnostic log.

Type: string

Response Body

Contains a JSON object with a string return field.

POST

Opens a cursor with the specified query and time range.

Timestamps are specified as the number of milliseconds elapsed since the epoch: Jan 1 1970 AD, 00:00:00 GMT.

The default cursor timeout period is 5 minutes.

Roles

Admin, Deployer, Monitor, Operator

Request Body

Must contain a JSON object with the following fields:

beginTimestamp

beginTimestamp

Type: long

endTimestamp

endTimestamp

Type: long

query

query

Type: string

Response Body

Contains a JSON object with a string return field.

POST

Opens a cursor using the specified record-ID range, end timestamp, and query. The timeout value for the cursor is also specified.

The timestamp is specified as the number of milliseconds elapsed since the epoch: Jan 1 1970 AD, 00:00:00 GMT.

Roles

Admin, Deployer, Monitor, Operator

Request Body

Must contain a JSON object with the following fields:

beginRecordId

Record id of the first record (inclusive) in the result set

Type: long

endRecordId

Record id of the last record (exclusive) in the result set

Type: long

endTimestamp

Include only those records whose timestamp is earlier than this value

Type: long

query

Query criterion

Type: string

cusorTimeout

cusorTimeout

Type: long

Response Body

Contains a JSON object with a string return field.

POST

Opens a cursor with a given query and a record-id range.

The timestamp is specified as the number of milliseconds elapsed since the epoch: Jan 1 1970 AD, 00:00:00 GMT.

The default cursor timeout period is 5 minutes.

Roles

Admin, Deployer, Monitor, Operator

Request Body

Must contain a JSON object with the following fields:

beginRecordId

Record id of the first record (inclusive) in the result set

Type: long

endRecordId

Record id of the last record (exclusive) in the result set

Type: long

endTimestamp

Include only those records whose timestamp is earlier than this value

Type: long

query

Query criterion

Type: string

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionAccessRuntime/lookupWLDFDataAccessRuntime

The resource supports the following methods:

POST

An instance of a WLDFDataAccessMBean defined by its logical name. The name is constructed from the specific type of log data requested.

Roles

Admin, Deployer, Monitor, Operator

Request Body

Must contain a JSON object with the following fields:

logicalName

logicalName

Type: string

Response Body

Contains a JSON object with a weblogic.management.runtime.WLDFDataAccessRuntimeMBean reference return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionAccessRuntime/WLDFDataAccessRuntimes

This resource manages a collection of weblogic.management.runtime.WLDFDataAccessRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionAccessRuntime/WLDFDataAccessRuntimes/{name}

This resource manages a weblogic.management.runtime.WLDFDataAccessRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionAccessRuntime/WLDFDataAccessRuntimes/{name}/closeArchive

The resource supports the following methods:

POST

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionHarvesterRuntime

This resource manages a weblogic.management.runtime.WLDFPartitionHarvesterRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionImageRuntime

This resource manages a weblogic.management.runtime.WLDFPartitionImageRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WLDFPartitionImageRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.WLDFPartitionImageRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionImageRuntime/captureImage

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Creates a diagnostic image in the configured destination directory.

This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.

Roles

Admin

Response Body

Contains a JSON object with a weblogic.management.runtime.WLDFImageCreationTaskRuntimeMBean reference return field.

POST

Creates a diagnostic image in the configured destination directory.

No additional image capture requests will be accepted until the specified lockout period has expired.

This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

lockoutMinutes

number of minutes before the next image capture request will be accepted

Type: int

Response Body

Contains a JSON object with a weblogic.management.runtime.WLDFImageCreationTaskRuntimeMBean reference return field.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionImageRuntime/clearCompletedImageCaptureTasks

The resource supports the following methods:

POST

Removes all completed image capture tasks.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionImageRuntime/imageCaptureTasks

This resource manages a collection of weblogic.management.runtime.WLDFImageCreationTaskRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionImageRuntime/imageCaptureTasks/{name}

This resource manages a weblogic.management.runtime.WLDFImageCreationTaskRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionImageRuntime/imageCaptureTasks/{name}/cancel

The resource supports the following methods:

POST

Attempts to cancel this task.

An exception is thrown to indicate failure to cancel the task. Not all tasks can be cancelled.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionImageRuntime/imageCaptureTasks/{name}/subTasks

This resource manages a collection of weblogic.management.runtime.TaskRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionImageRuntime/imageCaptureTasks/{name}/subTasks/{name}

This resource manages a weblogic.management.runtime.TaskRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionImageRuntime/imageCaptureTasks/{name}/subTasks/{name}/cancel

The resource supports the following methods:

POST

Attempts to cancel this task.

An exception is thrown to indicate failure to cancel the task. Not all tasks can be cancelled.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionImageRuntime/imageCaptureTasks/{name}/subTasks/{name}/subTasks

This resource manages a collection of weblogic.management.runtime.TaskRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionImageRuntime/imageCaptureTasks/{name}/subTasks/{name}/subTasks/{name}

This resource manages a weblogic.management.runtime.TaskRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.TaskRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.TaskRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionImageRuntime/imageCaptureTasks/{name}/subTasks/{name}/subTasks/{name}/cancel

The resource supports the following methods:

POST

Attempts to cancel this task.

An exception is thrown to indicate failure to cancel the task. Not all tasks can be cancelled.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionImageRuntime/purgeCapturedImages

The resource supports the following methods:

POST

Delete captured images specified by the age criteria.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

age

Purge diagnostic images older than specified age specified in the format Days:Hours:Minutes. If empty or null all existing image files on disk are purged. The hours and minutes components are optional.

Type: string

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFPartitionImageRuntime/resetImageLockout

The resource supports the following methods:

POST

Reset the lockout period, thus allowing image capture requests to be accepted.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFWatchNotificationRuntime

This resource manages a weblogic.management.runtime.WLDFWatchNotificationRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFWatchNotificationRuntime/resetWatchAlarm

The resource supports the following methods:

POST

Resets a policy alarm.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

watchName

the name of the policy to reset

Type: string

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/WLDFPartitionRuntime/WLDFWatchNotificationRuntime/WLDFWatchJMXNotificationSource

This resource manages a weblogic.management.runtime.WLDFWatchNotificationSourceRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/workManagerRuntimes

This resource manages a collection of weblogic.management.runtime.WorkManagerRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.WorkManagerRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.runtime.WorkManagerRuntimeMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/workManagerRuntimes/{name}

This resource manages a weblogic.management.runtime.WorkManagerRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WorkManagerRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.WorkManagerRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/workManagerRuntimes/{name}/capacityRuntime

This resource manages a weblogic.management.runtime.CapacityRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/workManagerRuntimes/{name}/maxThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MaxThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/workManagerRuntimes/{name}/minThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MinThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/workManagerRuntimes/{name}/requestClassRuntime

This resource manages a weblogic.management.runtime.RequestClassRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/wseeClusterFrontEndRuntime

This resource manages a weblogic.management.runtime.WseeClusterFrontEndRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WseeClusterFrontEndRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/partitionRuntimes/{name}/wseeClusterFrontEndRuntime/clusterRouting

This resource manages a weblogic.management.runtime.WseeClusterRoutingRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/pathServiceRuntimes

This resource manages a collection of weblogic.management.runtime.PathServiceRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.PathServiceRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.runtime.PathServiceRuntimeMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/pathServiceRuntimes/{name}

This resource manages a weblogic.management.runtime.PathServiceRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.PathServiceRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.PathServiceRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/pathServiceRuntimes/{name}/assemblies

This resource manages a collection of weblogic.management.runtime.PSAssemblyRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.PSAssemblyRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.runtime.PSAssemblyRuntimeMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/pathServiceRuntimes/{name}/assemblies/{name}

This resource manages a weblogic.management.runtime.PSAssemblyRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.PSAssemblyRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.PSAssemblyRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/pathServiceRuntimes/{name}/assemblies/{name}/closeCursor

The resource supports the following methods:

POST

Releases the server-side resources associated with the cursor and removes the runtime MBean instance.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/pathServiceRuntimes/{name}/assemblies/{name}/getCursorEndPosition

The resource supports the following methods:

POST

Returns the cursor end position in the result set.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/pathServiceRuntimes/{name}/assemblies/{name}/getCursorSize

The resource supports the following methods:

POST

Returns the number of items in the result set.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/pathServiceRuntimes/{name}/assemblies/{name}/getCursorStartPosition

The resource supports the following methods:

POST

Returns the cursor start position in the result set.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/pathServiceRuntimes/{name}/assemblies/{name}/getMapEntries

The resource supports the following methods:

POST

Returns all entries in a persistent map's assembly.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

timeout

how many seconds till operatoin times out. Zero is an infinite timeout.

Type: int

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/serverRuntime/pathServiceRuntimes/{name}/assemblies/{name}/remove

The resource supports the following methods:

POST

Remove the path service entry referenced by this object.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

the handle to the cursor

Type: string

itemHandle

the handle to a specific item in the cursor

Type: int

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/persistentStoreRuntimes

This resource manages a collection of weblogic.management.runtime.PersistentStoreRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.PersistentStoreRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.runtime.PersistentStoreRuntimeMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/persistentStoreRuntimes/{name}

This resource manages a weblogic.management.runtime.PersistentStoreRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.PersistentStoreRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.PersistentStoreRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/persistentStoreRuntimes/{name}/connections

This resource manages a collection of weblogic.management.runtime.PersistentStoreConnectionRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.PersistentStoreConnectionRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/persistentStoreRuntimes/{name}/connections/{name}

This resource manages a weblogic.management.runtime.PersistentStoreConnectionRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/requestClassRuntimes

This resource manages a collection of weblogic.management.runtime.RequestClassRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.RequestClassRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.runtime.RequestClassRuntimeMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/requestClassRuntimes/{name}

This resource manages a weblogic.management.runtime.RequestClassRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.RequestClassRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.RequestClassRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/restartSSLChannels

The resource supports the following methods:

POST

Restart all SSL channels on which the server is listening. This could be necessary because of some change that the server is not aware of, for instance updates to the keystore.

Roles

Admin

Response Body

Contains an empty JSON object.

Example

Example 1   Invoke the restartSSLChannels Action

This example uses the POST method to invoke the restartSSLChannels action.

Example Request

curl -v \
--user admin:admin123 \
-H X-Requested-By:MyClient \
-H Accept:application/json \
-H Content-Type:application/json \
-d "{}" \
-X POST http://localhost:7001/management/weblogic/latest/serverRuntime/restartSSLChannels

Example Response

HTTP/1.1 200 OK

Response Body:
{}

/management/weblogic/{version}/serverRuntime/resume

The resource supports the following methods:

POST

Resume suspended server. Allow new requests. This operation transitions the server into RUNNING state.

Roles

Admin, Operator

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/resumeResourceGroup

The resource supports the following methods:

POST

Resume suspended resource group. Allow new requests. This operation transitions the resource group into RUNNING state.

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

resourceGroupName

resourceGroupName

Type: string

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/SAFRuntime

This resource manages a weblogic.management.runtime.SAFRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.SAFRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.SAFRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/SAFRuntime/agents

This resource manages a collection of weblogic.management.runtime.SAFAgentRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.SAFAgentRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.runtime.SAFAgentRuntimeMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/SAFRuntime/agents/{name}

This resource manages a weblogic.management.runtime.SAFAgentRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.SAFAgentRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.SAFAgentRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/SAFRuntime/agents/{name}/conversations

This resource manages a collection of weblogic.management.runtime.SAFConversationRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.SAFConversationRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.runtime.SAFConversationRuntimeMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/SAFRuntime/agents/{name}/conversations/{name}

This resource manages a weblogic.management.runtime.SAFConversationRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.SAFConversationRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/SAFRuntime/agents/{name}/conversations/{name}/destroy

The resource supports the following methods:

POST

Destroys the conversation and purges all the messages.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/SAFRuntime/agents/{name}/logRuntime

This resource manages a weblogic.management.runtime.LogRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.LogRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.LogRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/SAFRuntime/agents/{name}/logRuntime/ensureLogOpened

The resource supports the following methods:

POST

Ensures that that the output stream to the underlying is opened if it got closed previously due to errors.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/SAFRuntime/agents/{name}/logRuntime/flushLog

The resource supports the following methods:

POST

Flushes the buffer to the log file on disk.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/SAFRuntime/agents/{name}/logRuntime/forceLogRotation

The resource supports the following methods:

POST

Forces the rotation of the underlying log immediately.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/SAFRuntime/agents/{name}/pauseForwarding

The resource supports the following methods:

POST

Pauses the sending agent on forwarding messages so that the agent will not forward messages but will accept new messages.

Roles

Admin, Operator

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/SAFRuntime/agents/{name}/pauseIncoming

The resource supports the following methods:

POST

Pauses the sending agent on accepting new messages.

Roles

Admin, Operator

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/SAFRuntime/agents/{name}/pauseReceiving

The resource supports the following methods:

POST

Pauses the receiving agent on receiving messages.

Roles

Admin, Operator

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/SAFRuntime/agents/{name}/remoteEndpoints

This resource manages a collection of weblogic.management.runtime.SAFRemoteEndpointRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.SAFRemoteEndpointRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.runtime.SAFRemoteEndpointRuntimeMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/SAFRuntime/agents/{name}/remoteEndpoints/{name}

This resource manages a weblogic.management.runtime.SAFRemoteEndpointRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.SAFRemoteEndpointRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.SAFRemoteEndpointRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/SAFRuntime/agents/{name}/remoteEndpoints/{name}/closeCursor

The resource supports the following methods:

POST

Releases the server-side resources associated with the cursor and removes the runtime MBean instance.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/SAFRuntime/agents/{name}/remoteEndpoints/{name}/expireAll

The resource supports the following methods:

POST

All pending messages for a remote destination are processed according to the policy specified by the associated Error Handling configuration and then removed.

  • When selected, expireAll is performed asynchronously by the server.

  • Oracle recommends that the remote endpoint is paused for incoming messages prior to expiring messages. When all pending messages are processed and removed, the remote endpoint can be set to resume and accept new messages.

  • The state of the expireAll operation can be determined by the getOperationState method.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/SAFRuntime/agents/{name}/remoteEndpoints/{name}/getCursorEndPosition

The resource supports the following methods:

POST

Returns the cursor end position in the result set.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/SAFRuntime/agents/{name}/remoteEndpoints/{name}/getCursorSize

The resource supports the following methods:

POST

Returns the number of items in the result set.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/SAFRuntime/agents/{name}/remoteEndpoints/{name}/getCursorStartPosition

The resource supports the following methods:

POST

Returns the cursor start position in the result set.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The cursor handle.

Type: string

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/SAFRuntime/agents/{name}/remoteEndpoints/{name}/getMessages

The resource supports the following methods:

POST

Queries messages on the queue according to the message selector and returns a message cursor representing the result set. The timeout parameter specifies the amount of time in seconds for which the cursor is valid. If the cursor expires, the associated resources are released.

Roles

Admin, Monitor, Operator

Request Body

Must contain a JSON object with the following fields:

selector

A valid JMS message selector or SAF message selector.

Type: string

timeout

Specifies the amount of time the message cursor is valid. A value of 0 indicates the cursor does not expire.

Type: int

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/serverRuntime/SAFRuntime/agents/{name}/remoteEndpoints/{name}/pauseForwarding

The resource supports the following methods:

POST

Pauses the forwarding of messages for a remote endpoint. The agent accepts new messages but does not forward them.

Roles

Admin, Operator

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/SAFRuntime/agents/{name}/remoteEndpoints/{name}/pauseIncoming

The resource supports the following methods:

POST

Pauses a remote endpoint so that new messages are not accepted.

Roles

Admin, Operator

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/SAFRuntime/agents/{name}/remoteEndpoints/{name}/purge

The resource supports the following methods:

POST

Destroys all conversations and purges all the pending messages for a remote destination.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/SAFRuntime/agents/{name}/remoteEndpoints/{name}/resumeForwarding

The resource supports the following methods:

POST

Resumes the forwarding of messages for the remote endpoint.

Roles

Admin, Operator

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/SAFRuntime/agents/{name}/remoteEndpoints/{name}/resumeIncoming

The resource supports the following methods:

POST

Resumes a remote endpoint so that new messages are accepted.

Roles

Admin, Operator

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/SAFRuntime/agents/{name}/remoteEndpoints/{name}/sort

The resource supports the following methods:

POST

Sorts the entire message result set managed by the cursor according to the SAF header attributes specified. The cursor position is set to the new position of the message corresponding to the "start" location before the sort is performed. The method returns the new cursor position.

Roles

Admin, Monitor, Operator

Request Body

Must contain a JSON object with the following fields:

cursorHandle

The handle of the cursor on which to perform the sort operation

Type: string

start

The location of the message before the sort that will be the first message returned after the sort. A value of -1 will place the cursor start position at the head of the new sort order.

Type: long

fields

The SAF header attributes on which to sort.

Type: array of string

ascending

Determines whether the sort of the corresponding fields element is in ascending or descending order.

Type: array of boolean

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/SAFRuntime/agents/{name}/resumeForwarding

The resource supports the following methods:

POST

Resumes the sending agent for forwarding messages.

Roles

Admin, Operator

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/SAFRuntime/agents/{name}/resumeIncoming

The resource supports the following methods:

POST

Resumes the sending agent for accepting new messages.

Roles

Admin, Operator

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/SAFRuntime/agents/{name}/resumeReceiving

The resource supports the following methods:

POST

Resumes the receiving agent for receiving messages.

Roles

Admin, Operator

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/search

The resource supports the following methods:

POST

Search the serverRuntime tree.

Request Body

The search request body includes the search criteria.

Response Body

The search response includes the results of the search.

/management/weblogic/{version}/serverRuntime/serverChannelRuntimes

This resource manages a collection of weblogic.management.runtime.ServerChannelRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.ServerChannelRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.runtime.ServerChannelRuntimeMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/serverChannelRuntimes/{name}

This resource manages a weblogic.management.runtime.ServerChannelRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.ServerChannelRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.ServerChannelRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/serverLogRuntime

This resource manages a weblogic.management.runtime.ServerLogRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.ServerLogRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.ServerLogRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/serverLogRuntime/ensureLogOpened

The resource supports the following methods:

POST

Ensures that that the output stream to the underlying is opened if it got closed previously due to errors.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/serverLogRuntime/flushLog

The resource supports the following methods:

POST

Flushes the buffer to the log file on disk.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/serverLogRuntime/forceLogRotation

The resource supports the following methods:

POST

Forces the rotation of the underlying log immediately.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/serverSecurityRuntime

This resource manages a weblogic.management.runtime.ServerSecurityRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.ServerSecurityRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.ServerSecurityRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/serverSecurityRuntime/checkRole

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Checks whether current Subject has the specified role.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

roleName

Name of the role to check if the Subject has the specified role.

Type: string

Response Body

Contains a JSON object with a boolean return field.

POST

Checks whether current Subject has any of the required roles.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

roleNames

Names of the roles to check if the Subject has one of the specified roles.

Type: array of string

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/serverSecurityRuntime/defaultRealmRuntime

This resource manages a weblogic.management.runtime.RealmRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.RealmRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.RealmRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/serverSecurityRuntime/defaultRealmRuntime/authenticatorRuntimes

This resource manages a collection of weblogic.management.runtime.AuthenticatorRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.AuthenticatorRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/serverSecurityRuntime/defaultRealmRuntime/authenticatorRuntimes/{name}

This resource manages a weblogic.management.runtime.AuthenticatorRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/serverSecurityRuntime/defaultRealmRuntime/userLockoutManagerRuntime

This resource manages a weblogic.management.runtime.UserLockoutManagerRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.UserLockoutManagerRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/serverSecurityRuntime/defaultRealmRuntime/userLockoutManagerRuntime/clearLockout

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Unlocks a user account.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

userName

- A user name. If the user does not exist, this method returns false.

Type: string

Response Body

Contains an empty JSON object.

POST

Unlocks a user account.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

userName

- A user name. If the user does not exist, this method returns false.

Type: string

identityDomain

- The identity domain of the user. May be null.

Type: string

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/serverSecurityRuntime/defaultRealmRuntime/userLockoutManagerRuntime/getLastLoginFailure

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Returns a string that indicates the time of the last invalid login for this user.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

userName

- A user name. If the user does not exist, this method returns false.

Type: string

Response Body

Contains a JSON object with a long return field.

POST

Returns a string that indicates the time of the last invalid login for this user.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

userName

- A user name. If the user does not exist, this method returns false.

Type: string

identityDomain

- The identity domain of the user. May be null.

Type: string

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/serverSecurityRuntime/defaultRealmRuntime/userLockoutManagerRuntime/getLoginFailureCount

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Returns the current count of login failures for a specific user. This value returns to

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

userName

- A user name. If the user does not exist, this method returns false.

Type: string

Response Body

Contains a JSON object with a long return field.

POST

Returns the current count of login failures for a specific user. This value returns to

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

userName

- A user name. If the user does not exist, this method returns false.

Type: string

identityDomain

- The identity domain of the user. May be null.

Type: string

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/serverSecurityRuntime/defaultRealmRuntime/userLockoutManagerRuntime/isLockedOut

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Indicates whether a user is locked out.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

userName

- A user name. If the user does not exist, this method returns false.

Type: string

identityDomain

- The identity domain of the user. May be null.

Type: string

Response Body

Contains a JSON object with a boolean return field.

POST

Indicates whether a user is locked out.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

userName

- A user name. If the user does not exist, this method returns false.

Type: string

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/serverSecurityRuntime/realmRuntimes

This resource manages a collection of weblogic.management.runtime.RealmRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.RealmRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.runtime.RealmRuntimeMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/serverSecurityRuntime/realmRuntimes/{name}

This resource manages a weblogic.management.runtime.RealmRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.RealmRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.RealmRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/serverSecurityRuntime/realmRuntimes/{name}/authenticatorRuntimes

This resource manages a collection of weblogic.management.runtime.AuthenticatorRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.AuthenticatorRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/serverSecurityRuntime/realmRuntimes/{name}/authenticatorRuntimes/{name}

This resource manages a weblogic.management.runtime.AuthenticatorRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/serverSecurityRuntime/realmRuntimes/{name}/userLockoutManagerRuntime

This resource manages a weblogic.management.runtime.UserLockoutManagerRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.UserLockoutManagerRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/serverSecurityRuntime/realmRuntimes/{name}/userLockoutManagerRuntime/clearLockout

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Unlocks a user account.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

userName

- A user name. If the user does not exist, this method returns false.

Type: string

Response Body

Contains an empty JSON object.

POST

Unlocks a user account.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

userName

- A user name. If the user does not exist, this method returns false.

Type: string

identityDomain

- The identity domain of the user. May be null.

Type: string

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/serverSecurityRuntime/realmRuntimes/{name}/userLockoutManagerRuntime/getLastLoginFailure

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Returns a string that indicates the time of the last invalid login for this user.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

userName

- A user name. If the user does not exist, this method returns false.

Type: string

Response Body

Contains a JSON object with a long return field.

POST

Returns a string that indicates the time of the last invalid login for this user.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

userName

- A user name. If the user does not exist, this method returns false.

Type: string

identityDomain

- The identity domain of the user. May be null.

Type: string

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/serverSecurityRuntime/realmRuntimes/{name}/userLockoutManagerRuntime/getLoginFailureCount

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Returns the current count of login failures for a specific user. This value returns to

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

userName

- A user name. If the user does not exist, this method returns false.

Type: string

Response Body

Contains a JSON object with a long return field.

POST

Returns the current count of login failures for a specific user. This value returns to

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

userName

- A user name. If the user does not exist, this method returns false.

Type: string

identityDomain

- The identity domain of the user. May be null.

Type: string

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/serverSecurityRuntime/realmRuntimes/{name}/userLockoutManagerRuntime/isLockedOut

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Indicates whether a user is locked out.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

userName

- A user name. If the user does not exist, this method returns false.

Type: string

identityDomain

- The identity domain of the user. May be null.

Type: string

Response Body

Contains a JSON object with a boolean return field.

POST

Indicates whether a user is locked out.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

userName

- A user name. If the user does not exist, this method returns false.

Type: string

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/shutdown

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Gracefully shuts down the server after handling inflight work; optionally ignores pending HTTP sessions while handling inflight work.

The following inflight work is allowed to complete before shutdown:

  • Pending transaction's and TLOG checkpoint

  • Pending HTTP sessions

  • Pending JMS work

  • Pending work in the execute queues

  • RMI requests with transaction context

Further administrative calls are accepted while the server is completing inflight work. For example a forceShutdown command can be issued to quickly shutdown the server if graceful shutdown takes a long time.

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

timeout

Number of seconds to wait before aborting inflight work and shutting down the server.

Type: int

ignoreSessions

true indicates ignore pending HTTP sessions during inflight work handling.

Type: boolean

waitForAllSessions

true indicates waiting for all HTTP sessions during inflight work handling; false indicates waiting for non-persisted HTTP sessions only.

Type: boolean

Response Body

Contains an empty JSON object.

POST

Gracefully shuts down the server after handling inflight work.

Roles

Admin, Operator

Response Body

Contains an empty JSON object.

POST

Gracefully shuts down the server after handling inflight work.

This method is the same as calling: shutdown(timeout, ignoreSessions, false);

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

timeout

timeout

Type: int

ignoreSessions

ignoreSessions

Type: boolean

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/shutdownResourceGroup

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Gracefully shuts down the resource group after handling inflight work.

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

resourceGroupName

resourceGroupName

Type: string

Response Body

Contains an empty JSON object.

POST

Gracefully shuts down the resource group after handling inflight work; optionally ignores pending HTTP sessions while handling inflight work.

The following inflight work is allowed to complete before shutdown:

  • Pending transaction's and TLOG checkpoint

  • Pending HTTP sessions

  • Pending JMS work

  • Pending work in the execute queues

  • RMI requests with transaction context

Further administrative calls are accepted while the server is completing inflight work. For example a forceShutdown command can be issued to quickly shutdown the partition if graceful shutdown takes a long time.

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

resourceGroupName

resourceGroupName

Type: string

timeout

Number of seconds to wait before aborting inflight work and shutting down the partition.

Type: int

ignoreSessions

true indicates ignore pending HTTP sessions during inflight work handling.

Type: boolean

waitForAllSessions

true indicates waiting for all HTTP sessions during inflight work handling; false indicates waiting for non-persisted HTTP sessions only.

Type: boolean

Response Body

Contains an empty JSON object.

POST

Gracefully shuts down the resource group after handling inflight work.

This method is same to call: shutdown(timeout, ignoreSessions, false);

Roles

Admin, Operator

Request Body

Must contain a JSON object with the following fields:

resourceGroupName

resourceGroupName

Type: string

timeout

timeout

Type: int

ignoreSessions

ignoreSessions

Type: boolean

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/singleSignOnServicesRuntime

This resource manages a weblogic.management.runtime.SingleSignOnServicesRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.SingleSignOnServicesRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.SingleSignOnServicesRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/singleSignOnServicesRuntime/publish

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Publishes SAML 2.0 meta-data for Web Browser SSO Profile

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

fileName

Name of file to create; will silently overwrite existing file, if present

Type: string

Response Body

Contains an empty JSON object.

POST

Publishes SAML 2.0 meta-data for Web Browser SSO Profile

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

fileName

Name of file to create

Type: string

prohibitOverwrite

If true, prohibits overwrite if the file already exists

Type: boolean

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/SNMPAgentRuntime

This resource manages a weblogic.management.runtime.SNMPAgentRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.SNMPAgentRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.SNMPAgentRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/SNMPAgentRuntime/invalidateLocalizedKeyCache

The resource supports the following methods:

POST

Immediately invalidates the cached security keys for the specified WebLogic Server user.

An SNMP security key is an encrypted version of an SNMP agent's engine ID and an authentication password or privacy password. WebLogic Server generates one security key for each entry that you create in the SNMP credential map. When a WebLogic Server SNMP agent receives an SNMPv3 request, it compares the key that is in the request with its WebLogic Server keys. If it finds a match, it processes the request. The SNMP agent also encodes these keys in its responses and notifications. (You configure which keys are encoded when you create a trap destination.)

Instead of regenerating the keys for each SNMPv3 communication, WebLogic Server caches the keys. To make sure that the cache contains the latest set of SNMP credentials, WebLogic Server periodically invalidates the cache. After the cache is invalidated, the next time an SNMP agent requests credentials, WebLogic Server regenerates the cache.

Note that making a change to the credential map does not automatically update the cache. Instead, the cache is updated only after it has been invalidated.

Instead of waiting for WebLogic Server to invalidate the cached entry for a key, you can invalidate it immediately.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

username

Name of the user

Type: string

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/SNMPAgentRuntime/outputCustomMBeansMIBModule

The resource supports the following methods:

POST

Returns WebLogic Server's MIB module for custom MBeans as a java.lang.String. You can save the String to a file and then load the file into a MIB browser.

When you register custom MBeans in the WebLogic Server Runtime MBean Server, WebLogic Server adds entries to a runtime MIB module that it maintains for custom MBeans. For each custom MBean type, WebLogic Server adds a table to the MIB module. For each instance of the custom MBean, it adds a table row. While WebLogic Server does not persist the MIB module as a file or other data structure, the OIDs in the module remain constant across server sessions.

Roles

Admin

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/serverRuntime/startPartition

The resource supports the following methods:

POST

starts the partition.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

partitionName

The resource group name

Type: string

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/startPartitionInAdmin

The resource supports the following methods:

POST

starts the Partition in ADMIN state. Applications and resources are fully available to administrators in ADMIN state. But non-admin users are denied access to applications and resources

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

partitionName

partitionName

Type: string

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/startResourceGroup

The resource supports the following methods:

POST

starts the resource group.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

resourceGroupName

The resource group name

Type: string

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/startResourceGroupInAdmin

The resource supports the following methods:

POST

starts the resource group in ADMIN state. Applications and resources are fully available to administrators in ADMIN state. But non-admin users are denied access to applications and resources

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

resourceGroupName

resourceGroupName

Type: string

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/suspend

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Suspend server. Deny new requests (except by privileged users). Allow pending requests to complete. This operation transitions the server into ADMIN state. Applications and resources are fully available to administrators in ADMIN state. But non-admin users are denied access to applications and resources

Roles

Admin

Response Body

Contains an empty JSON object.

POST

Transitions the server from RUNNING to ADMIN state gracefully.

Applications are in admin mode. Inflight work is completed. Applications and resources are fully available to administrators in ADMIN state. But non-admin users are denied access to applications and resources

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

timeout

Seconds to wait for server to transition gracefully. The server calls forceSuspend() after timeout.

Type: int

ignoreSessions

drop inflight HTTP sessions during graceful suspend

Type: boolean

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/suspendResourceGroup

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Suspend resource group. Deny new requests (except by privileged users). Allow pending requests to complete. This operation transitions the partition into ADMIN state. Applications and resources are fully available to administrators in ADMIN state. But non-admin users are denied access to applications and resources

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

resourceGroupName

resourceGroupName

Type: string

timeout

timeout

Type: int

ignoreSessions

ignoreSessions

Type: boolean

Response Body

Contains an empty JSON object.

POST

Suspend resource group. Deny new requests (except by privileged users). Allow pending requests to complete. This operation transitions the partition into ADMIN state. Applications and resources are fully available to administrators in ADMIN state. But non-admin users are denied access to applications and resources

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

resourceGroupName

resourceGroupName

Type: string

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/threadPoolRuntime

This resource manages a weblogic.management.runtime.ThreadPoolRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.ThreadPoolRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.ThreadPoolRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/timerRuntime

This resource manages a weblogic.management.runtime.TimerRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.TimerRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.TimerRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/WANReplicationRuntime

This resource manages a weblogic.management.runtime.WANReplicationRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WANReplicationRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.WANReplicationRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/WANReplicationRuntime/cleanupExpiredSessionsInTheDatabase

The resource supports the following methods:

POST

Clean up expired sessions in the database

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/webServerRuntimes

This resource manages a collection of weblogic.management.runtime.WebServerRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.WebServerRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.runtime.WebServerRuntimeMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/webServerRuntimes/{name}

This resource manages a weblogic.management.runtime.WebServerRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WebServerRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.WebServerRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/webServerRuntimes/{name}/logRuntime

This resource manages a weblogic.management.runtime.LogRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.LogRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.LogRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/webServerRuntimes/{name}/logRuntime/ensureLogOpened

The resource supports the following methods:

POST

Ensures that that the output stream to the underlying is opened if it got closed previously due to errors.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/webServerRuntimes/{name}/logRuntime/flushLog

The resource supports the following methods:

POST

Flushes the buffer to the log file on disk.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/webServerRuntimes/{name}/logRuntime/forceLogRotation

The resource supports the following methods:

POST

Forces the rotation of the underlying log immediately.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/WLDFRuntime

This resource manages a weblogic.management.runtime.WLDFRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WLDFRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.WLDFRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFAccessRuntime

This resource manages a weblogic.management.runtime.WLDFAccessRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WLDFAccessRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.WLDFAccessRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFAccessRuntime/dataAccessRuntimes

This resource manages a collection of weblogic.diagnostics.accessor.runtime.DataAccessRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.diagnostics.accessor.runtime.DataAccessRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFAccessRuntime/dataAccessRuntimes/{name}

This resource manages a weblogic.diagnostics.accessor.runtime.DataAccessRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.diagnostics.accessor.runtime.DataAccessRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.diagnostics.accessor.runtime.DataAccessRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFAccessRuntime/dataAccessRuntimes/{name}/closeCursor

The resource supports the following methods:

POST

Disposes of the cursor once the client has fetched all the records.

Roles

Admin, Deployer, Monitor, Operator

Request Body

Must contain a JSON object with the following fields:

cursorName

cursorName

Type: string

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFAccessRuntime/dataAccessRuntimes/{name}/deleteDataRecords

The resource supports the following methods:

POST

Delete records within the specified time range that match the specified query. If the query is null or empty, all records within the time range will be deleted.

Start and end times are specified as the number of milliseconds elapsed since the epoch: Jan 1 1970 AD, 00:00:00 GMT.

Not all archives support a deletion feature. If not supported, this method will throw an UnsupportedOperationException exception.

Roles

Admin, Deployer, Monitor, Operator

Request Body

Must contain a JSON object with the following fields:

startTime

Start time of the interval (inclusive)

Type: long

endTime

End time of the interval (exclusive)

Type: long

queryString

Query criterion

Type: string

Response Body

Contains a JSON object with a int return field.

/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFAccessRuntime/dataAccessRuntimes/{name}/getDataRecordCount

The resource supports the following methods:

POST

The resource supports the following methods:

POST

The number of records that match the specified query and time range.

Start and end times are specified as the number of milliseconds elapsed since the epoch: Jan 1 1970 AD, 00:00:00 GMT.

Roles

Admin, Deployer, Monitor, Operator

Request Body

Must contain a JSON object with the following fields:

startTime

Start time of the interval (inclusive)

Type: long

endTime

End time of the interval (exclusive)

Type: long

query

Query criterion

Type: string

Response Body

Contains a JSON object with a int return field.

POST

The number of records that match the specified query.

Roles

Admin, Deployer, Monitor, Operator

Request Body

Must contain a JSON object with the following fields:

query

Query expression

Type: string

Response Body

Contains a JSON object with a int return field.

POST

The number that match the specified query and record-ID range, and whose timestamp (if it is available) is earlier than the specified end time.

The end time is specified as the number of milliseconds elapsed since the epoch: Jan 1 1970 AD, 00:00:00 GMT.

Roles

Admin, Deployer, Monitor, Operator

Request Body

Must contain a JSON object with the following fields:

startRecordId

Record id of the first record

Type: long

endRecordId

Look at records whose record-ids are smaller than specified endrecordId

Type: long

endTime

Look at records which were entered prior to endTime

Type: long

query

Query criterion

Type: string

Response Body

Contains a JSON object with a int return field.

/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFAccessRuntime/dataAccessRuntimes/{name}/hasMoreData

The resource supports the following methods:

POST

Determines whether the specified cursor has more data to be fetched.

Roles

Admin, Deployer, Monitor, Operator

Request Body

Must contain a JSON object with the following fields:

cursorName

cursorName

Type: string

Response Body

Contains a JSON object with a boolean return field.

/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFAccessRuntime/dataAccessRuntimes/{name}/openCursor

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Opens a cursor with the specified timeout value, in milliseconds.

Roles

Admin, Deployer, Monitor, Operator

Request Body

Must contain a JSON object with the following fields:

query

The query expression to filter the result set from the underlying diagnostic log.

Type: string

cursorTimeout

The timeout interval after which the cursor will become invalid if not invoked.

Type: long

Response Body

Contains a JSON object with a string return field.

POST

Opens a cursor for records that meet the specified time range and query condition. The timeout value for the cursor is also specified.

Timestamps are specified as the number of milliseconds elapsed since the epoch: Jan 1 1970 AD, 00:00:00 GMT.

Roles

Admin, Deployer, Monitor, Operator

Request Body

Must contain a JSON object with the following fields:

beginTimestamp

beginTimestamp

Type: long

endTimestamp

endTimestamp

Type: long

query

query

Type: string

cusorTimeout

cusorTimeout

Type: long

Response Body

Contains a JSON object with a string return field.

POST

Opens a cursor on the server side for the query.

Roles

Admin, Deployer, Monitor, Operator

Request Body

Must contain a JSON object with the following fields:

query

The query expression to filter the result set from the underlying diagnostic log.

Type: string

Response Body

Contains a JSON object with a string return field.

POST

Opens a cursor with the specified query and time range.

Timestamps are specified as the number of milliseconds elapsed since the epoch: Jan 1 1970 AD, 00:00:00 GMT.

The default cursor timeout period is 5 minutes.

Roles

Admin, Deployer, Monitor, Operator

Request Body

Must contain a JSON object with the following fields:

beginTimestamp

beginTimestamp

Type: long

endTimestamp

endTimestamp

Type: long

query

query

Type: string

Response Body

Contains a JSON object with a string return field.

POST

Opens a cursor using the specified record-ID range, end timestamp, and query. The timeout value for the cursor is also specified.

The timestamp is specified as the number of milliseconds elapsed since the epoch: Jan 1 1970 AD, 00:00:00 GMT.

Roles

Admin, Deployer, Monitor, Operator

Request Body

Must contain a JSON object with the following fields:

beginRecordId

Record id of the first record (inclusive) in the result set

Type: long

endRecordId

Record id of the last record (exclusive) in the result set

Type: long

endTimestamp

Include only those records whose timestamp is earlier than this value

Type: long

query

Query criterion

Type: string

cusorTimeout

cusorTimeout

Type: long

Response Body

Contains a JSON object with a string return field.

POST

Opens a cursor with a given query and a record-id range.

The timestamp is specified as the number of milliseconds elapsed since the epoch: Jan 1 1970 AD, 00:00:00 GMT.

The default cursor timeout period is 5 minutes.

Roles

Admin, Deployer, Monitor, Operator

Request Body

Must contain a JSON object with the following fields:

beginRecordId

Record id of the first record (inclusive) in the result set

Type: long

endRecordId

Record id of the last record (exclusive) in the result set

Type: long

endTimestamp

Include only those records whose timestamp is earlier than this value

Type: long

query

Query criterion

Type: string

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFAccessRuntime/lookupWLDFDataAccessRuntime

The resource supports the following methods:

POST

An instance of a WLDFDataAccessMBean defined by its logical name. The name is constructed from the specific type of log data requested.

Roles

Admin, Deployer, Monitor, Operator

Request Body

Must contain a JSON object with the following fields:

logicalName

logicalName

Type: string

Response Body

Contains a JSON object with a weblogic.management.runtime.WLDFDataAccessRuntimeMBean reference return field.

/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFAccessRuntime/WLDFDataAccessRuntimes

This resource manages a collection of weblogic.management.runtime.WLDFDataAccessRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.WLDFDataAccessRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFAccessRuntime/WLDFDataAccessRuntimes/{name}

This resource manages a weblogic.management.runtime.WLDFDataAccessRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFAccessRuntime/WLDFDataAccessRuntimes/{name}/closeArchive

The resource supports the following methods:

POST

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFArchiveRuntimes

This resource manages a collection of weblogic.management.runtime.WLDFArchiveRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.WLDFArchiveRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.runtime.WLDFArchiveRuntimeMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFArchiveRuntimes/{name}

This resource manages a weblogic.management.runtime.WLDFArchiveRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WLDFArchiveRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.WLDFArchiveRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFControlRuntime

This resource manages a weblogic.management.runtime.WLDFControlRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WLDFControlRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.WLDFControlRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFControlRuntime/systemResourceControls

This resource manages a collection of weblogic.management.runtime.WLDFSystemResourceControlRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.WLDFSystemResourceControlRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFControlRuntime/systemResourceControls/{name}

This resource manages a weblogic.management.runtime.WLDFSystemResourceControlRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFControlRuntime/systemResourceControls/{name}/harvesterManagerRuntime

This resource manages a weblogic.management.runtime.WLDFHarvesterManagerRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFControlRuntime/systemResourceControls/{name}/watchManagerRuntime

This resource manages a weblogic.management.runtime.WLDFWatchManagerRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFControlRuntime/systemResourceControls/{name}/watchManagerRuntime/resetWatchAlarm

The resource supports the following methods:

POST

Resets a policy alarm.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

watchName

the name of the policy to reset

Type: string

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFDebugPatchesRuntime

This resource manages a weblogic.management.runtime.WLDFDebugPatchesRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WLDFDebugPatchesRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.WLDFDebugPatchesRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFDebugPatchesRuntime/activateDebugPatch

The resource supports the following methods:

POST

Activate specified debug patch, optionally within the scope of given application and module

This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

patch

Patch to be activated

Type: string

application

If not null, limit the scope of activation to specified application. If null, activate at system level.

Type: string

module

If not null and application is specified, limit the scope of activation within specified module within the application.

Type: string

partitionName

partitionName

Type: string

Response Body

Contains a JSON object with a weblogic.management.runtime.WLDFDebugPatchTaskRuntimeMBean reference return field.

/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFDebugPatchesRuntime/clearDebugPatchTasks

The resource supports the following methods:

POST

Clear all completed debug patch activation/deactivation tasks

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFDebugPatchesRuntime/deactivateAllDebugPatches

The resource supports the following methods:

POST

Deactivate all active debug patches

This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.

Roles

Admin

Response Body

Contains a JSON object with a weblogic.management.runtime.WLDFDebugPatchTaskRuntimeMBean reference return field.

/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFDebugPatchesRuntime/deactivateDebugPatches

The resource supports the following methods:

POST

Deactivate specified patches within the scope of given application and module.

This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

patches

Comma separated list of patches to be deactivated

Type: string

application

If not null, deactivate given patches within the scope of specified application. If null, deactivate at system level.

Type: string

module

If not null and application is specified, limit the scope of de-activation to specified module.

Type: string

partitionName

partitionName

Type: string

Response Body

Contains a JSON object with a weblogic.management.runtime.WLDFDebugPatchTaskRuntimeMBean reference return field.

/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFDebugPatchesRuntime/debugPatchTasks

This resource manages a collection of weblogic.management.runtime.WLDFDebugPatchTaskRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.WLDFDebugPatchTaskRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFDebugPatchesRuntime/debugPatchTasks/{name}

This resource manages a weblogic.management.runtime.WLDFDebugPatchTaskRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WLDFDebugPatchTaskRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.WLDFDebugPatchTaskRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFDebugPatchesRuntime/debugPatchTasks/{name}/cancel

The resource supports the following methods:

POST

Attempts to cancel this task.

An exception is thrown to indicate failure to cancel the task. Not all tasks can be cancelled.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFDebugPatchesRuntime/debugPatchTasks/{name}/subTasks

This resource manages a collection of weblogic.management.runtime.TaskRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.TaskRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFDebugPatchesRuntime/debugPatchTasks/{name}/subTasks/{name}

This resource manages a weblogic.management.runtime.TaskRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.TaskRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.TaskRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFDebugPatchesRuntime/debugPatchTasks/{name}/subTasks/{name}/cancel

The resource supports the following methods:

POST

Attempts to cancel this task.

An exception is thrown to indicate failure to cancel the task. Not all tasks can be cancelled.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFDebugPatchesRuntime/debugPatchTasks/{name}/subTasks/{name}/subTasks

This resource manages a collection of weblogic.management.runtime.TaskRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFDebugPatchesRuntime/debugPatchTasks/{name}/subTasks/{name}/subTasks/{name}

This resource manages a weblogic.management.runtime.TaskRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.TaskRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.TaskRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFDebugPatchesRuntime/debugPatchTasks/{name}/subTasks/{name}/subTasks/{name}/cancel

The resource supports the following methods:

POST

Attempts to cancel this task.

An exception is thrown to indicate failure to cancel the task. Not all tasks can be cancelled.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFDebugPatchesRuntime/showDebugPatchInfo

The resource supports the following methods:

POST

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

patch

Debug patch

Type: string

Response Body

Contains a JSON object with a string return field.

/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFHarvesterRuntime

This resource manages a weblogic.management.runtime.WLDFHarvesterRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WLDFHarvesterRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.WLDFHarvesterRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFImageRuntime

This resource manages a weblogic.management.runtime.WLDFImageRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WLDFImageRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.WLDFImageRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFImageRuntime/captureImage

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Creates a diagnostic image in the specified destination directory, which can be specified either as a relative or absolute pathname. If relative, the path is relative to the server's logs directory.

If the directory does not exist, it is created. If the directory exists, it must be writable in order for image creation to proceed.

This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

destination

absolute or relative directory path

Type: string

Response Body

Contains a JSON object with a weblogic.management.runtime.WLDFImageCreationTaskRuntimeMBean reference return field.

POST

Creates a diagnostic image in the configured destination directory.

This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.

Roles

Admin

Response Body

Contains a JSON object with a weblogic.management.runtime.WLDFImageCreationTaskRuntimeMBean reference return field.

POST

Creates a diagnostic image in the specified destination directory, which can be specified either as a relative or absolute pathname. If relative, the path is relative to the server's logs directory.

If the directory does not exist, it is created. If the directory exists, it must be writable in order for image creation to proceed.

No additional image capture requests will be accepted until the specified lockout period has expired.

This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

destination

absolute or relative path

Type: string

lockoutMinutes

number of minutes before next image capture request will be accepted

Type: int

Response Body

Contains a JSON object with a weblogic.management.runtime.WLDFImageCreationTaskRuntimeMBean reference return field.

POST

Creates a diagnostic image in the configured destination directory.

No additional image capture requests will be accepted until the specified lockout period has expired.

This method supports both asynchronous and best effort synchronous invocations. The behavior is controlled by the 'Prefer' header. See About Synchronous and Asynchronous Operations.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

lockoutMinutes

number of minutes before the next image capture request will be accepted

Type: int

Response Body

Contains a JSON object with a weblogic.management.runtime.WLDFImageCreationTaskRuntimeMBean reference return field.

/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFImageRuntime/clearCompletedImageCaptureTasks

The resource supports the following methods:

POST

Removes all completed image capture tasks.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFImageRuntime/imageCaptureTasks

This resource manages a collection of weblogic.management.runtime.WLDFImageCreationTaskRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.WLDFImageCreationTaskRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFImageRuntime/imageCaptureTasks/{name}

This resource manages a weblogic.management.runtime.WLDFImageCreationTaskRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WLDFImageCreationTaskRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.WLDFImageCreationTaskRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFImageRuntime/imageCaptureTasks/{name}/cancel

The resource supports the following methods:

POST

Attempts to cancel this task.

An exception is thrown to indicate failure to cancel the task. Not all tasks can be cancelled.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFImageRuntime/imageCaptureTasks/{name}/subTasks

This resource manages a collection of weblogic.management.runtime.TaskRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.TaskRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFImageRuntime/imageCaptureTasks/{name}/subTasks/{name}

This resource manages a weblogic.management.runtime.TaskRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.TaskRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.TaskRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFImageRuntime/imageCaptureTasks/{name}/subTasks/{name}/cancel

The resource supports the following methods:

POST

Attempts to cancel this task.

An exception is thrown to indicate failure to cancel the task. Not all tasks can be cancelled.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFImageRuntime/imageCaptureTasks/{name}/subTasks/{name}/subTasks

This resource manages a collection of weblogic.management.runtime.TaskRuntimeMBean instances.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFImageRuntime/imageCaptureTasks/{name}/subTasks/{name}/subTasks/{name}

This resource manages a weblogic.management.runtime.TaskRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.TaskRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.TaskRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFImageRuntime/imageCaptureTasks/{name}/subTasks/{name}/subTasks/{name}/cancel

The resource supports the following methods:

POST

Attempts to cancel this task.

An exception is thrown to indicate failure to cancel the task. Not all tasks can be cancelled.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFImageRuntime/purgeCapturedImages

The resource supports the following methods:

POST

Delete captured images specified by the age criteria.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

age

Purge diagnostic images older than specified age specified in the format Days:Hours:Minutes. If empty or null all existing image files on disk are purged. The hours and minutes components are optional.

Type: string

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFImageRuntime/resetImageLockout

The resource supports the following methods:

POST

Reset the lockout period, thus allowing image capture requests to be accepted.

Roles

Admin

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFInstrumentationRuntimes

This resource manages a collection of weblogic.management.runtime.WLDFInstrumentationRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.WLDFInstrumentationRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.runtime.WLDFInstrumentationRuntimeMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFInstrumentationRuntimes/{name}

This resource manages a weblogic.management.runtime.WLDFInstrumentationRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WLDFInstrumentationRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.WLDFInstrumentationRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFInstrumentationRuntimes/{name}/resetMethodInvocationStatisticsData

The resource supports the following methods:

POST

Resets the nested MethodInvocationStatistics structure and reinitializes the underlying metrics.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

expr

Expression conforming to the harvester syntax for the MethodInvocationStatistics property without the attribute name prefix.

Type: string

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFInstrumentationRuntimes/{name}/resetMethodMemoryAllocationStatisticsData

The resource supports the following methods:

POST

Resets the nested MethodMemoryAllocationStatistics structure and reinitializes the underlying metrics.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

expr

Expression conforming to the harvester syntax for the MethodMemoryAllocationStatistics property without the attribute name prefix.

Type: string

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFWatchNotificationRuntime

This resource manages a weblogic.management.runtime.WLDFWatchNotificationRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WLDFWatchNotificationRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.WLDFWatchNotificationRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFWatchNotificationRuntime/resetWatchAlarm

The resource supports the following methods:

POST

Resets a policy alarm.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

watchName

the name of the policy to reset

Type: string

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/WLDFRuntime/WLDFWatchNotificationRuntime/WLDFWatchJMXNotificationSource

This resource manages a weblogic.management.runtime.WLDFWatchNotificationSourceRuntimeMBean instance.

The resource supports the following methods:

/management/weblogic/{version}/serverRuntime/workManagerRuntimes

This resource manages a collection of weblogic.management.runtime.WorkManagerRuntimeMBean instances.

The resource supports the following methods:

GET

Get this collection of weblogic.management.runtime.WorkManagerRuntimeMBean instances.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a list of weblogic.management.runtime.WorkManagerRuntimeMBean entities.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/workManagerRuntimes/{name}

This resource manages a weblogic.management.runtime.WorkManagerRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WorkManagerRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.WorkManagerRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/workManagerRuntimes/{name}/capacityRuntime

This resource manages a weblogic.management.runtime.CapacityRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.CapacityRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.CapacityRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/workManagerRuntimes/{name}/maxThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MaxThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.MaxThreadsConstraintRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/workManagerRuntimes/{name}/minThreadsConstraintRuntime

This resource manages a weblogic.management.runtime.MinThreadsConstraintRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.MinThreadsConstraintRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/workManagerRuntimes/{name}/requestClassRuntime

This resource manages a weblogic.management.runtime.RequestClassRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.RequestClassRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/wseeClusterFrontEndRuntime

This resource manages a weblogic.management.runtime.WseeClusterFrontEndRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WseeClusterFrontEndRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.WseeClusterFrontEndRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/wseeClusterFrontEndRuntime/clusterRouting

This resource manages a weblogic.management.runtime.WseeClusterRoutingRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WseeClusterRoutingRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

/management/weblogic/{version}/serverRuntime/wseeWsrmRuntime

This resource manages a weblogic.management.runtime.WseeWsrmRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WseeWsrmRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.WseeWsrmRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/WTCRuntime

This resource manages a weblogic.management.runtime.WTCRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WTCRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.WTCRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/WTCRuntime/getServiceStatus

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Returns status of a specific imported service provided by the specified local access point and remote access point list. The service name is the resource name of the WTCImport and WTCExport. The remote access point list is a comma separated list; for instance, "TDOM1,TDOM2".

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

localAccessPoint

The local access point name.

Type: string

remoteAccessPointList

The comma separated remote access point names.

Type: string

svcName

The resource name of imported or exported service/resource name.

Type: string

Response Body

Contains a JSON object with a int return field.

POST

Returns status of the Import and Export service/resource configured for the targeted WTC server with the specified service name. This service name is the resource name of the WTCImport and WTCExport. As long as one of the directions is available the returned satatus will be available.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

svcName

The resource name of imported or exported service/resource name.

Type: string

Response Body

Contains a JSON object with a int return field.

POST

Returns status of the imported or exported service of the specified service name and provided by the specified local access point. The service name is the resource name of the WTCImport and WTCExport.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

localAccessPoint

The local access point name.

Type: string

svcName

The resource name of imported or exported service/resource name.

Type: string

isImport

The type of service indicate whether it is import or export. If true, then it is imported service, if false it is targeted for exported service.

Type: boolean

Response Body

Contains a JSON object with a int return field.

POST

Returns status of the Import or Export service/resource configured for the targeted WTC server with the specified service name. This service name is the resource name of the WTCImport and WTCExport.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

svcName

The resource name of imported or exported service/resource name.

Type: string

isImport

The type of service indicate whether it is import or export. If true, then it is imported service, if false it is targeted for exported service.

Type: boolean

Response Body

Contains a JSON object with a int return field.

POST

Returns status of the imported and exported service of the specified service name and provided by the specified local access point. The service name is the resource name of the WTCImport and WTCExport. As long as one of the directions is available then the returned status will be available.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

localAccessPoint

The local access point name.

Type: string

svcName

The resource name of imported or exported service/resource name.

Type: string

Response Body

Contains a JSON object with a int return field.

/management/weblogic/{version}/serverRuntime/WTCRuntime/resumeService

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Resume all the Import or Export services with the specified service name configured for the specified local access point. The service name is the resource name of the WTCImport and WTCExport.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

localAccessPoint

The local access point name.

Type: string

svcName

The resource name of imported or exported service/resource name.

Type: string

isImport

The type of service indicate whether it is import or export. If true, then it is imported service, if false it is targeted for exported service.

Type: boolean

Response Body

Contains an empty JSON object.

POST

Resume all the Import and Export services with the specified service name. This service name is the resource name of the WTCImport and WTCExport.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

svcName

The resource name of imported or exported service/resource name.

Type: string

Response Body

Contains an empty JSON object.

POST

Resume a specific Import service with the specified service name configured for the specified local access point and remote access point list. The service name is the resource name of the WTCImport and WTCExport. The remote access point list is a comma separated list; for instance, "TDOM1,TDOM2".

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

localAccessPoint

The local access point name.

Type: string

remoteAccessPointList

The comma separated remote access point names.

Type: string

svcName

The resource name of imported or exported service/resource name.

Type: string

Response Body

Contains an empty JSON object.

POST

Resume all the Import and Export services with the specified service name configured for the specified local access point. The service name is the resource name of the WTCImport and WTCExport.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

localAccessPoint

The local access point name.

Type: string

svcName

The resource name of imported or exported service/resource name.

Type: string

Response Body

Contains an empty JSON object.

POST

Resume all the Import or Export services with the specified service name. This service name is the resource name of the WTCImport and WTCExport.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

svcName

The resource name of imported or exported service/resource name.

Type: string

isImport

The type of service indicate whether it is import or export. If true, then it is imported service, if false it is targeted for exported service.

Type: boolean

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/WTCRuntime/startConnection

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Attempt to start a connection between the specified local and remote domain access points.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

LDomAccessPointId

The local domain access point id.

Type: string

RDomAccessPointId

The remote domain access point id.

Type: string

Response Body

Contains an empty JSON object.

POST

Attempt to start connections between the specified local domain access point and all remote end points defined for the given local domain domain access point.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

LDomAccessPointId

The local domain access point id.

Type: string

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/WTCRuntime/stopConnection

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Attempt to stop the connection between the specified local and remote domain access points.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

LdomAccessPointId

The local domain access point id.

Type: string

RDomAccessPointId

The remote domain access point id.

Type: string

Response Body

Contains an empty JSON object.

POST

Attempt to stop all remote connections configured for the given local access point id.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

LdomAccessPointId

The local domain access point id.

Type: string

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/WTCRuntime/suspendService

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Suspend a specific Import service with the specified service name configured for the specified local access point and remote access point list. The service name is the resource name of the WTCImport and WTCExport. The remote access point list is a comma separated list; for instance, "TDOM1,TDOM2".

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

localAccessPoint

The local access point name.

Type: string

remoteAccessPointList

The comma separated remote access point names.

Type: string

svcName

The resource name of imported or exported service/resource name.

Type: string

Response Body

Contains an empty JSON object.

POST

Suspend all the Import or Export services with the specified service name. This service name is the resource name of the WTCImport and WTCExport.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

svcName

The resource name of imported or exported service/resource name.

Type: string

isImport

The type of service indicate whether it is import or export. If true, then it is imported service, if false it is targeted for exported service.

Type: boolean

Response Body

Contains an empty JSON object.

POST

Suspend all the Import or Export services with the specified service name configured for the specified local access point. The service name is the resource name of the WTCImport and WTCExport.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

localAccessPoint

The local access point name.

Type: string

svcName

The resource name of imported or exported service/resource name.

Type: string

isImport

The type of service indicate whether it is import or export. If true, then it is imported service, if false it is targeted for exported service.

Type: boolean

Response Body

Contains an empty JSON object.

POST

Suspend all the Import and Export services with the specified service name. This service name is the resource name of the WTCImport and WTCExport.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

svcName

The resource name of imported or exported service/resource name.

Type: string

Response Body

Contains an empty JSON object.

POST

Suspend all the Import and Export services with the specified service name configured for the specified local access point. The service name is the resource name of the WTCImport and WTCExport.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

localAccessPoint

The local access point name.

Type: string

svcName

The resource name of imported or exported service/resource name.

Type: string

Response Body

Contains an empty JSON object.

/management/weblogic/{version}/serverRuntime/WTCRuntime/WTCStatisticsRuntimeMBean

This resource manages a weblogic.management.runtime.WTCStatisticsRuntimeMBean instance.

The resource supports the following methods:

GET

Get this weblogic.management.runtime.WTCStatisticsRuntimeMBean instance.

Roles

Admin, Deployer, Monitor, Operator

Response Body

Contains a weblogic.management.runtime.WTCStatisticsRuntimeMBean entity.

This method can return the following links:

/management/weblogic/{version}/serverRuntime/WTCRuntime/WTCStatisticsRuntimeMBean/getInboundFailReqTotalCount

The resource supports the following methods:

POST

Returns the total number of inbound non-conversational, non-CORBA request that return failure by specific exported service. If specified service is imported, the return value should be 0.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

svcName

The service resource name.

Type: string

lDomAccessPointId

The local access point ID for this exported service.

Type: string

isImport

Should be false to get value for exported service.

Type: boolean

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/WTCRuntime/WTCStatisticsRuntimeMBean/getInboundMessageTotalCount

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Returns the total number of inbound non-conversational, non-CORBA request messages received by this exported Service. If specified service is imported, the return value should be 0.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

svcName

The service resource name.

Type: string

lDomAccessPointId

The local access point ID for this exported service.

Type: string

isImport

Should be false to get value for exported service.

Type: boolean

Response Body

Contains a JSON object with a long return field.

POST

Returns the total number of inbound non-conversational, non-CORBA request messages received by this WTC connection. The WTC connection is identified by lDomAccessPointId and rDomAccessPointId pair.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

lDomAccessPointId

The local domain access point id.

Type: string

rDomAccessPointId

The remote domain access point id.

Type: string

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/WTCRuntime/WTCStatisticsRuntimeMBean/getInboundNWMessageTotalSize

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Returns the total message size of inbound non-conversational, non-CORBA messages received on this WTC connection. The WTC connection is defined by LDomAccessPointId and RDomAccessPointId pair.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

LDomAccessPointId

The local domain access point id.

Type: string

RDomAccessPointId

The remote domain access point id.

Type: string

Response Body

Contains a JSON object with a long return field.

POST

Returns the total size of inbound non-conversational, non-CORBA messages received by this exported Service. If specified service is imported, the return value should be 0.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

svcName

The service resource name.

Type: string

lDomAccessPointId

The local access point ID for this exported service.

Type: string

isImport

Should be false to get value for exported service.

Type: boolean

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/WTCRuntime/WTCStatisticsRuntimeMBean/getInboundSuccessReqTotalCount

The resource supports the following methods:

POST

Returns the total number of inbound non-conversational, non-CORBA request that successfully handled by specific exported service. If specified service is imported, the return value should be 0.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

svcName

The service resource name.

Type: string

lDomAccessPointId

The local access point ID for this exported service.

Type: string

isImport

Should be false to get value for exported service.

Type: boolean

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/WTCRuntime/WTCStatisticsRuntimeMBean/getInTransactionCommittedTotalCount

The resource supports the following methods:

POST

Returns the total number of inbound transactions committed on this WTC connection. The WTC connection is defined by lDomAccessPointId and rDomAccessPointId pair.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

lDomAccessPointId

The local domain access point id.

Type: string

rDomAccessPointId

The remote domain access point id.

Type: string

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/WTCRuntime/WTCStatisticsRuntimeMBean/getInTransactionRolledBackTotalCount

The resource supports the following methods:

POST

Returns the total number of inbound transactions rolled back on this WTC connection. The WTC connection is defined by lDomAccessPointId and rDomAccessPointId pair.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

lDomAccessPointId

The local domain access point id.

Type: string

rDomAccessPointId

The remote domain access point id.

Type: string

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/WTCRuntime/WTCStatisticsRuntimeMBean/getOutboundFailReqTotalCount

The resource supports the following methods:

POST

Returns the total number of outbound non-conversational, non-CORBA requests return failure by specific imported service. If specified service is exported, the return value should be 0.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

svcName

The service name.

Type: string

lDomAccessPointId

The local access point ID.

Type: string

rDomAccessPointIdList

The remote access point ID list.

Type: string

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/WTCRuntime/WTCStatisticsRuntimeMBean/getOutboundMessageTotalCount

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Returns the total number of outbound non-conversational, non-CORBA messages send to this imported Service. If specified service is exported, the return value should be 0.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

svcName

The service name.

Type: string

lDomAccessPointId

The local access point ID.

Type: string

rDomAccessPointIdList

The remote access point ID list.

Type: string

Response Body

Contains a JSON object with a long return field.

POST

Returns the total number of outbound non-conversational, non-CORBA messages received by this WTC connection. The WTC connection is identified by lDomAccessPointId and rDomAccessPointId pair.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

lDomAccessPointId

The local domain access point id.

Type: string

rDomAccessPointId

The remote domain access point id.

Type: string

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/WTCRuntime/WTCStatisticsRuntimeMBean/getOutboundNWMessageTotalSize

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Returns the total size of outbound non-conversational, non-CORBA messages send to this imported Service. If specified service is exported, the return value should be 0.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

svcName

The service name.

Type: string

lDomAccessPointId

The local access point ID.

Type: string

rDomAccessPointIdList

The remote access point ID list.

Type: string

Response Body

Contains a JSON object with a long return field.

POST

Returns the total size of outbound non-conversational, non-CORBA messages received on this WTC connection. The WTC connection is defined by LDomAccessPointId and RDomAccessPointId pair.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

LDomAccessPointId

The local domain access point id.

Type: string

RDomAccessPointId

The remote domain access point id.

Type: string

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/WTCRuntime/WTCStatisticsRuntimeMBean/getOutboundSuccessReqTotalCount

The resource supports the following methods:

POST

Returns the total number of outbound non-conversational, non-CORBA requests successfully handled by specific imported service. If specified service is exported, the return value should be 0.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

svcName

The service name.

Type: string

lDomAccessPointId

The local access point ID.

Type: string

rDomAccessPointIdList

The remote access point ID list.

Type: string

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/WTCRuntime/WTCStatisticsRuntimeMBean/getOutstandingNWReqCount

The resource supports the following methods:

POST

The resource supports the following methods:

POST

Returns the current number of outstanding inbound non-conversational, non-CORBA requests received on this WTC connection. The WTC connection is defined by LDomAccessPointId and RDomAccessPointId pair.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

lDomAccessPointId

The local domain access point id.

Type: string

rDomAccessPointId

The remote domain access point id.

Type: string

Response Body

Contains a JSON object with a long return field.

POST

Returns the current number of outstanding non-conversational, non-CORBA requests for specific imported/exported service.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

svcName

The service name.

Type: string

lDomAccessPointId

Local access point.

Type: string

rDomAccessPointIdList

Remote Access Point ID List. If null, then the service is an exported service.

Type: string

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/WTCRuntime/WTCStatisticsRuntimeMBean/getOutTransactionCommittedTotalCount

The resource supports the following methods:

POST

Returns the total number of outbound transaction commited on this WTC connection. The WTC connection is defined by lDomAccessPointId and rDomAccessPointId pair.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

lDomAccessPointId

The local domain access point id.

Type: string

rDomAccessPointId

The remote domain access point id.

Type: string

Response Body

Contains a JSON object with a long return field.

/management/weblogic/{version}/serverRuntime/WTCRuntime/WTCStatisticsRuntimeMBean/getOutTransactionRolledBackTotalCount

The resource supports the following methods:

POST

Returns the total number of outbound trsactions rolled backed on this WTC connection. The WTC connection is defined by lDomAccessPointId and rDomAccessPointId pair.

Roles

Admin

Request Body

Must contain a JSON object with the following fields:

lDomAccessPointId

The local domain access point id.

Type: string

rDomAccessPointId

The remote domain access point id.

Type: string

Response Body

Contains a JSON object with a long return field.