Kavin's SOA Blog

July 28, 2009

Using Oracle SOA Suite Command-Line Upgrade Tool to merge Multiple BPEL Projects Into a Single Composite

Most important benefit of using command line tool is the ability to merge multiple projects (BPEL, ESB) in to single composite.

Required ANT build files are located under

<JDEV_HOME>\bin

OR

<FMW_SOA_HOME>\bin

Since my machine has got both, i have used FMW_SOA_HOME as ORACLE_HOME

  • Set SOA Environment using soaversion.sh (.cmd) located under ORACLE_HOME/bin directory
  • Run the Ant project from ORACLE_HOME/bin directory, as follows:

ant -f ant-sca-upgrade.xml -Dsource sourceDir -Dtarget targetDir -DappName app_name

  • To combine multiple BPEL projects into a single composite, provide multiple source directories as part of the -Dsource property on the command line. Use colon (:) or a semicolon (;) as path separators. Also use double quotes to identify the multiple source directories to prevent Ant from parsing the input in an unexpected manner

ant -f ORACLE_HOME/bin/ant-sca-upgrade.xml -Dsource "sourceDir1:sourceDir2" -Dtarget targetDir -DappName app_name

This way you will see your multiple projects created under one composite.

July 8, 2009

Directory Browsing in Apache

Filed under: Configuration — Tags: , , , , — Kavin @ 11:02 am

To enable directory browsing in Apache web server, edit httpd.conf file and add option “Indexes” to “Directory” tag.

So your tag will look like this

<Directory />
    Options FollowSymLinks MultiViews
    AllowOverride None
</Directory>

and modify it like below

<Directory />
    Options FollowSymLinks MultiViews Indexes
    AllowOverride None
</Directory>

Restart Apache and you should be able to do directory browsing.

Theme: Shocking Blue Green. Blog at WordPress.com.

Follow

Get every new post delivered to your Inbox.