WebLogic Server Configuration Reference

 Previous Next Contents Index View as PDF  

BridgeDestination

 


Description

This class represents a messaging bridge destination for non-JMS products.

Each messaging bridge consists of two destinations that are being bridged: a source destination from which messages are received, and a target destination to which messages are sent.

Note: Although WebLogic JMS includes a "General Bridge Destination" framework for accessing non-JMS messaging products, WebLogic Server does not provide supported adapters for such products. Therefore, you need to provide a custom adapter from a third-party OEM vendor and consult their documentation for configuration instructions.

 


Syntax

<BridgeDestination
AdapterJNDIName="String"
Classpath="String"
Name="String"
Notes="String"
Properties="java.util.Properties"
UserName="String"
UserPassword="String"
/>

 


Parent Elements

 


Attributes

Table 3-1 BridgeDestination attributes

Attribute

Description

Range of Values and Default

AdapterJNDIName

Defines the JNDI name of the adapter used to communicate with the specified destination. This name is specified in the adapter's deployment descriptor file and is used by the WebLogic Server Connector container to bind the adapter in WebLogic Server JNDI.

Admin Console field label: Adapter JNDI Name

Default: eis.jms.WLSConnectionFactoryJNDIXA

Classpath

Defines the CLASSPATH of the bridge destination, which is mainly used to connect to a different release of WebLogic JMS.

When connecting to a destination that is running on WebLogic Server 6.0 or earlier, the bridge destination must supply a CLASSPATH that indicates the locations of the classes for the earlier WebLogic Server implementation.

Note: When connecting to a third-party JMS product, the bridge destination must supply the product's CLASSPATH in the WebLogic Server CLASSPATH.

Admin Console field label: Adapter Classpath

Required: no

Name

The name of this configuration. WebLogic Server uses an MBean to implement and persist the configuration.

Admin Console field label: Name

Required: no

Notes

Optional information that you can include to describe this configuration.

Admin Console field label: Notes

Required: no

Properties

A string value that specifies all the properties of the bridge destination. The destination properties must be separated by semicolons (;).

The following properties are required for all JMS implementations:

ConnectionURL=

The URL used to establish a connection to the destination.

ConnectionFactoryJNDIName=

The JNDI name of the JMS connection factory used to create a connection.

DestinationJNDIName=

The JNDI name of the JMS destination.

DestinationType=

Either queue or topic.

InitialContextFactory=

The factory used to get the JNDI context.

Admin Console field label: Properties (key=value)

Required: no

UserName

Defines an optional user name that the adapter will use to access the bridge destination.

Note: All operations done to the specified destination are done using this user name and the corresponding password. Therefore, the User Name/Password for the source and target destinations must have permission to the access the underlying destinations in order for the messaging bridge to work.

Admin Console field label: User Name

Required: no

UserPassword

Defines the user password that the adapter uses to access the bridge destination.

Admin Console field label: User Password

Required: no

Encrypted: yes

 

Back to Top Previous Next