Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Creates or updates EIS Entries defined within properties files. The properties files will be processed for property replacement using $VARIABLE_NAME format. See the Appendix for more information about property replacement.

...

Property Name

Property Code

Required

Description

Properties File Path

FILE_PATH_TO_PROPERTIES

No

Comma-separated list of paths to the properties file(s).
If relative paths are given, they are assumed relative to the FD_ARTIFACTS_DIR directory.
If this property is not specified, all properties files in the FD_ARTIFACTS_DIR directory will be processed.

Outputs

Output Name

Required

Description

FDWLS_OUT_IS_RESTART_REQUIRED

No

A boolean value that indicates whether the server needs to be restarted to finish applying the configuration changes. You could use this in a workflow condition.

...

This sample file creates 3 EIS entries with properties. Property names can be gathered from the WebLogic console, WLST, Oracle's documentation, or existing plan.xml files.

Tip
titleBackslash in Properties file

If you want \ (backslash) in any property value, use \\ or \u005c. This is Java properties file load syntax.


Code Block
languagetext
themeRDark
EISList=SOADB,SOAJMS,SOARODB

SOADB.Adapter=DbAdapter
SOADB.JNDI=eis/db/SOA
SOADB.properties.XADataSourceName=jdbc/ebs01

SOAJMS.Adapter=JmsAdapter
SOAJMS.JNDI=eis/jms/SOAJMS
SOAJMS.properties.ConnectionFactoryLocation=jms/ConnectionFactoryName

SOARODB.Adapter=DbAdapter
SOARODB.JNDI=eis/db/SOASOARODB
SOARODB.properties.XADataSourceName=jdbc/ebs02

...

Each EIS Entry must contain the following required properties

Property Name

Description

Adapter

The adapter name (e.g. JmsAdapter, DbAdapter). The adapter name is used to find its associated rar file, so it must be named exactly the same. The first part of the adapter name will also be used to create the plan file name.

JNDI

The JNDI name (e.g. eis/db/SOA)

...

The ConnectionFactoryInterface is an optional property. If not specified in your properties file, the default value will apply. The default value varies by adapter name.

Adapter Name

Default Value

JmsAdapter

oracle.tip.adapter.jms.IJmsConnectionFactory

OracleBamAdapter

bam.adapter.adc.soap.SOAPConnectionFactory

All other adapters

javax.resource.cci.ConnectionFactory

...