Your Browser is not longer supported

Please use Google Chrome, Mozilla Firefox or Microsoft Edge to view the page correctly
Loading...

{{viewport.spaceProperty.prod}}

Example: weblogic-ra.xml

Example 6 shows the definition of the connection-specific configuration properties in weblogic-ra.xml.

Example 6 Configuration properties in the file weblogic-ra.xml

The section with the connection-specific configuration properties in the file weblogic-ra.xml has the following layout:

<weblogic-connector
   xmlns="http://xmlns.oracle.com/weblogic/weblogic-connector" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  
  xsi:schemaLocation="http://xmlns.oracle.com/weblogic/weblogic-connector 
http://www.oracle.com/technology/weblogic/weblogic-connector/1.3/weblogic-
connector.xsd">   ...
   <outbound-resource-adapter>
     <default-connection-properties>
       <pool-params>
         <initial-capacity>0</initial-capacity>
         <max-capacity>10</max-capacity>
       </pool-params>
       <transaction-support>XATransaction</transaction-support>
     </default-connection-properties>
     <connection-definition-group>
        <connection-factory-interface>net.fsc.jca.communication.EISOltpConnectionFactory
        </connection-factory-interface> 
      <default-connection-properties>
         <pool-params>
            <initial-capacity> (1)
            </initial-capacity>
            <max-capacity>20</max-capacity>
         </pool-params>
      </default-connection-properties>
      <connection-instance>
        <jndi-name>eis/my_BC_Factory1</jndi-name>
        <connection-properties>
          <pool-params>
            <initial-capacity>2</initial-capacity>
          </pool-params>
          <properties> 
            <property>
               <name>ConnectionURL</name>
               <value>utm://accountEIS</value> (1)
            </property>
            <property>
               <name>encoding</name>
               <value>OSD_EBCDIC_DF04_DRV</value> (2)
            </property>
            <property>
               <name>encodingActive</name>
               <value>true</value>
            </property>
            <property>
               <name>transactional</name>
               <value>true</value>
            </property>
            <property>
               <name>timeout</name> 
               <value>30000</value>
            </property>
            <property>
               <name>bufferedIO</name>
               <value>true</value>
            </property>
            <property>
               <name>logLevel</name>
               <value>ALL</value>
            </property>
            <property>
               <name>displayName</name>
               <value>accountEIS</value>
            </property>
          </properties>
        </connection-properties>
      </connection-instance>
    </connection-definition-group> 
    <connection-definition-group>
       <connection-factory-interface>
        net.fsc.jca.communication.cci.BCOltpConnectionFactory      
       </connection-factory-interface>
       <connection-instance>
         <jndi-name>eis/my_CCI_factory</jndi-name>
         <connection-properties>
           <pool-params>
             <initial-capacity>3</initial-capacity>
           </pool-params>
           <properties>
             <property>
               <name>ConnectionURL</name>
               <value>utm://accountEIS"</value> (1)
             </property>
             <property>
               <name>encoding</name>
               <value>OSD_EBCDIC_DF04_DRV</value> (2)
             </property>
             <property>
               <name>encodingActive</name>
               <value>true</value>
             </property> 
             <property>
               <name>transactional</name>
               <value>true</value>
             </property>
             <property>
               <name>timeout</name>
               <value>30000</value>
             </property>
             <property>
               <name>bufferedIO</name>
               <value>true</value>
             </property>
             <property>
               <name>logLevel</name>
               <value>NONE</value>
             </property>
             <property>
               <name>displayName</name>
               <value>cci/accountEIS</value>
             </property>
           </properties> 
         </connection-properties>
       </connection-instance>
     </connection-definition-group>
  </outbound-resource-adapter>
</weblogic-connector> 

(1) For CICS partners: <value>cics://accountEIS</value>

(2) For CICS partners: <value>jdk:Cp1047</value>