WebLogic File
This section shows the configuration of the mandatory resources and optional properties for TAFJJEE_EJB.jar/META-INF/WebLogic-ejb-jar.xml.
The following code block presents the corresponding WebLogic 12.2.X configuration part for a given EJB called OFSProcessingBean, which is in the <wls:WebLogic-ejb-jar> section of the WebLogic-ejb-jar.xml.
<wls:weblogic-enterprise-bean> <wls:ejb-name>OFSTransactedMDB</wls:ejb-name> <wls:message-driven-descriptor> <wls:destination-jndi-name>jms/t24OFSQueue</wls:destination-jndi-name> <wls:connection-factory-jndi-name>jms/ConnectionFactory</wls:connection-factory-jndi-name> </wls:message-driven-descriptor> <wls:resource-description> <wls:res-ref-name>jms/TAFJQueueConnectionFactory</wls:res-ref-name> <wls:jndi-name>jms/ConnectionFactory</wls:jndi-name> </wls:resource-description> </wls:weblogic-enterprise-bean> … <wls:message-destination-descriptor> <wls:message-destination-name>jms/OFSReplyQueue</wls:message-destination-name> <wls:destination-jndi-name>jms/t24OFSReplyQueue</wls:destination-jndi-name> </wls:message-destination-descriptor>
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 |
---|---|---|
Ejb-name |
OFSProcessingBean |
Indicates the ejb-name of the ejb-jar.xml. You can modify this value, if required. |
business-interface-jndi-name-map/business-remote |
com.temenos.tafj.sb.OFSProcessingBeanRemote |
Indicates the EJB remote interface. |
business-interface-jndi-name-map/jndi-name |
ejb/OFSProcessingBeanRemote |
Indicates the EJB jndi name for remote invocation. |
Resources Reference Configuration |
||
res-ref-name |
jdbc/t24DataSource |
Maps the res-ref-name from ejb-jar.xml. |
jndi-name |
jdbc/t24DS |
Matches the Temenos Transact JDBC resource in the WebLogic application server. You can modify this value, if required. |
res-ref-name |
jdbc/t24LockingDataSource |
Maps the res-ref-name from ejb-jar.xml. |
jndi-name |
jdbc/t24LockingDS |
Matches the Temenos Transact locking JDBC resource in the WebLogic application server. You can modify this value, if required. |
res-ref-name |
jdbc/t24RODataSource |
Maps the res-ref-name from ejb-jar.xml. |
jndi-name |
jdbc/t24RODS |
Matches the Temenos Transact read only JDBC resource in the WebLogic application server. You can modify this value, if required. |
res-ref-name |
jms/TopicConnectionFactory |
Maps the res-ref-name from ejb-jar.xml. |
jndi-name |
jms/ConnectionFactory |
Matches the connection factory in the WebLogic jndi tree. You can modify this value, if required. |
In this topic