Skip to main content

Set Composite Instance Name

1. Create one variable "Title" of String Type.




2. Drag and drop an Assign Activity. Open it and click right click on Title Variable on left hand side of section. Choose Expression.

3. Goto Advanced Functions and select setCompositeInstanceTitle method.

4. Give input parameter as per your requirement.





Note : If this doesn't work out. Store your Input value in separate variable and pass that variable in setCompositeInstanceTitle method




Comments

Popular posts from this blog

Tune your JDeveloper 12c (12.1.3)

Is your JDeveloper 12c too slow, follow these 3 basic steps and increase perfomance of JDeveloper 12c  (12.1.3) Step 1:  Configure JVM settings in jdev.conf Path:  $MV_HOME$/jdeveloper/jdev/bin/jdev.conf # optimize the JVM for strings / text editing AddVMOption -XX:+UseStringCache AddVMOption -XX:+OptimizeStringConcat AddVMOption -XX:+UseCompressedStrings # if on a 64-bit system, but using less than 32 GB RAM, this reduces object pointer memory size AddVMOption -XX:+UseCompressedOops # use an aggressive garbage collector (constant small collections) AddVMOption -XX:+AggressiveOpts # for multi-core machines, use multiple threads to create objects and reduce pause times AddVMOption -XX:+UseConcMarkSweepGC AddVMOption -DVFS_ENABLE=true AddVMOption -Dsun.java2d.ddoffscreen=false AddVMOption -XX:+UseParNewGC AddVMOption -XX:+CMSIncrementalMode AddVMOption -XX:+CMSIncrementalPacing AddVMOption -XX:CMSIncrementalDutyCycleMin=0 AddVMOption -XX:CMSIncrementalDutyCycle=10...

CHANGING THE INBOUND FILE ADAPTER ARCHIVE FILE NAME IN SOA

Default archive name will be filename_ digest _timestamp. This format was introduced with SOA 11g. To configure the File Adapter archive filename to use this format: filename_yyyymmdd_hh24mmss we have to use property “UseDigest” in JCA file. By default “UseDigest” is set to true, which tells the Inbound File Adapter that the archive file name format will be the default: filename_digest_timestamp. When the “UseDigest” property is set to false, the filename format will revert to: filename_timestamp. Modify your File Inbound JCA file, and add the following property: <property name=”UseDigest” value=”false”/>

Install Oracle SOA Suite 12c

This post  will instructs for installation of oracle soa suite 12c. As discussed in previous post, in 12c Oracle had come with single click installer(SOA Quick Start Installer). This installer package contains JDeveloper, a integrated Weblogic service with SOA Suite (including Service Bus), JavaDB (for it’s Database) and the Enterprise Manager, you don't have to install them separately. Follow below steps to install Soa Suite on windows. Step1 : System requirement check. Check below link if your system have needed configuration.  http://www.oracle.com/technetwork/middleware/ias/downloads/fusion-certification-100350.html Step2 : Download Soa Suite 12c Click on below link. Accept he license and download the installer on your local machine. http://www.oracle.com/technetwork/middleware/soasuite/downloads/index.html?ssSourceSiteId=opn A jar will get download, extract it and there will be two files which has to install.           ...