IBM File
This section shows the configuration of the mandatory resources and optional properties for TAFJJEE_EJB.jar/META-INF/ibm-ejb-jar-bnd.xml.
The following code block presents the corresponding Websphere 9 configuration part for a given EJB called OFSPRocessingBean, which is in the main section of the ibm-ejb-jar-bnd.xml.
<session name="OFSProcessingBean"> <resource-ref name="jdbc/t24DataSource" binding-name="jdbc/t24DataSource" /> <resource-ref name="jdbc/t24RODataSource" binding-name="jdbc/t24RODataSource" /> <resource-ref name="jdbc/t24LockingDataSource" binding-name="jdbc/t24LockingDataSource" /> <resource-ref name="jms/TopicConnectionFactory" binding-name="jms/t24ConnectionFactory" /> <resource-ref name="jms/tecEventsTopic" binding-name="jms/tecEventsTopic" /> </session>
The property values in the code block are explained in the following table. You can modify certain values, if required.
Xml path |
Example value |
Comment |
---|---|---|
Session name |
OFSProcessingBean |
Indicates the ejb-name of the ejb-jar.xml. You can modify this value, if required. |
Resources Reference Configuration |
||
resource-ref\ res-ref-name |
jdbc/t24DataSource |
Maps the res-ref-name from ejb-jar.xml. |
resource-ref\ binding-name |
jdbc/t24DataSource |
Matches the Temenos Transact JDBC resource in the WAS application server. You can modify this value, if required. |
resource-ref\ res-ref-name |
jdbc/t24LockingDataSource |
Maps the res-ref-name from ejb-jar.xml. |
resource-ref\ binding-name |
jdbc/t24LockingDataSource |
Matches the Temenos Transact Locking JDBC resource in the WAS application server. You can modify this value, if required. |
resource-ref\ res-ref-name |
jdbc/t24RODataSource |
Maps the res-ref-name from ejb-jar.xml. |
resource-ref\ binding-name |
jdbc/t24RODataSource |
Matches the Temenos Transact read only JDBC resource in the WAS application server. You can modify this value, if required. |
resource-ref\ res-ref-name |
jms/TopicConnectionfactory |
Maps the res-ref-name from ejb-jar.xml. |
resource-ref\ binding-name |
jms/t24ConnectionFactory |
Matches the connection factory in the WAS jndi tree. You can modify this value, if required. |
resource-ref\ res-ref-name |
jms/tecEventsTopic |
Maps the res-ref-name from ejb-jar.xml. |
resource-ref\ binding-name |
jms/tecEventsTopic |
Matches the Temenos Transact JMS topic in the WAS jndi tree. You can modify this value, if required. |
In this topic