How to Export and Import ESS jobs in different Environments in SOA Suite 12.2.1.0.0

In this post we will see how to Export and Import ESS jobs in different Environments in SOA Suite 12.2.1.0.0.

Follow the below steps to export and import .

Export –>

1)  In the ‘source’ environment export ESS jobs and metadata to a zip file.

cd $SOA_HOME/common/bin
./wlst.sh
connect(‘weblogic’,’password’,’t3://adminserver_hostname:adminserver_port’);

exportMetadata(application=’EssNativeHostingApp’, server='<ess_dev_manged_server>’, toLocation=’/temp/EssDevExport.zip’);

Import –>

2)  Now Import EssDevExport.zip into the (Test/Uat/Production) environment from the export file created in step 1.

cd $SOA_HOME/common/bin
./wlst.sh
connect(‘weblogic’,’password’,’t3://adminserver_hostname:adminserver_port’);
importMetadata(application=’EssNativeHostingApp’, server='<ess_production_manged_server>’, fromLocation=’/tmp/EssExport.zip’);

One thought on “How to Export and Import ESS jobs in different Environments in SOA Suite 12.2.1.0.0

Leave a comment