bea.com | products | dev2dev | support | askBEA
 Download Docs   Site Map   Glossary 
Search

WebLogic Server Configuration Reference

 Previous Next Contents Index View as PDF  

BridgeDestination

Description

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

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

Syntax

<!ELEMENT BridgeDestination EMPTY >
<!ATTLIST BridgeDestination
   AdapterJNDIName            CDATA                    "JMS_XA_ADAPTER_JNDI"
   Classpath                  CDATA                    #IMPLIED
   Name                       CDATA                    #REQUIRED
   Notes                      CDATA                    #IMPLIED
   Properties                 CDATA                    #IMPLIED
   UserName                   CDATA                    #IMPLIED
   UserPassword               CDATA                    #IMPLIED
>

Parent Elements

The BridgeDestination element is a child of the Domain element.

Attributes

Table 6-1 BridgeDestinationMBean Element Attributes

Attribute

Description

Range of Values and Default

Console Label

Adapter-JNDIName

Defines the JNDI name of the adapter used to communicate with the specified destination. This name is 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.

Default: JMS_XA_ADAPTER_JNDI

Adapter JNDIName

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 3rd party JMS provider, the bridge destination must supply the provider's CLASSPATH either with this attribute or in the WebLogic Server CLASSPATH.


Classpath

Name

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


Name

Notes

Optional information that you can include to describe this configuration.


Notes

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 WebLogic 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.


Properties (key=value)

User-Name

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 JMS destinations in order for the messaging bridge to work.


User Name

User-Password

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


User Password


 

 

Back to Top Previous Next