IBM Integration BusTM
Integration Bus API

Package com.ibm.broker.config.proxy

Reference documentation for the IBM Integration API.

See: Description

Package com.ibm.broker.config.proxy Description

Reference documentation for the IBM Integration API.

    Note: There are two versions of this Java Documentation:

  1. Javadoc that includes deprecated classes and methods can be found in the InfoCenter version of the Javadoc reference information. If you are migrating Configuration Manager Proxy applications you might like to use this version.

  2. For new applications, Javadoc with deprecated classes and methods removed is part of the installation package for the IBM Integration Bus runtime. On Windows platforms, this version of the Java documentation is accessible from the Start Menu.

This is the reference documentation for the IBM Integration API, also known as the "CMP". It allows user-written applications to configure, view and operate instances of a broker runtime. Tasks that can be performed using this interface include:

A good starting point for reference information is the BrokerProxy class, as this class provides the ability to connect to brokers. After successfully completing the following statement in the following code snippet, b represents an active connection to a locally-defined broker called "MYBROKER". With this object, it is possible to view and manipulate the broker, its execution groups and its deployed objects.
   BrokerProxy b = BrokerProxy.getLocalInstance("MYBROKER");
It is also possible to use the API to connect to brokers that have been defined on other machines.

In order to build and run applications that use the IBM Integration API (CMP), the CLASSPATH environment variable needs to contain instdir/classes/ConfigManagerProxy.jar, whereinstdir is the installation directory for the WebSphere Message Broker runtime.

Additionally, the WebSphere MQ Classes for Java need to be configured in the environment, as this provides the IBM Integration API (CMP) with its network connectivity to brokers. For example, the CLASSPATH needs to contain mqinstdir/java/com.ibm.mq.jar, com.ibm.mq.jmqi.jar and connector.jar. Also, the PATH (on Windows) or LD_LIBRARY_PATH (on Linux/UNIX platforms) needs to contain mqinstdir/java/lib, where mqinstdir is the installation directory for WebSphere MQ. Consult the WebSphere MQ Information Center for more information.

Use this documentation in conjunction with the IBM Integration API (CMP) Exerciser sample, as this will allow you to most easily discover the capabilities of the interface.

IBM Integration BusTM
Integration Bus API