In the current version of SOA once you create an ESS job we have to use the below process to migrate it to another environment.
For executing the below we will have to use WSLT.
Steps:
1. Login in to your server
2. Navigate to bin: cd $SOA_HOME/common/bin
3. Run : ./wlst.sh
4. Run: connect('weblogic','password','t3://adminserver_hostname:adminserver_port');
This will connect you to the ESSserver.
5. Run: exportMetadata(application='EssNativeHostingApp', server='ess_server1', toLocation='/home/temp/EssDevExport.zip');
6.importMetadata(application='EssNativeHostingApp', server='ess_server1', fromLocation='/home/temp/EssDevExport.zip');
These steps will export the metadata of your ESS jobs and you can then import the same into another environment.
Helpful?? Please Comment.
Happy Learning!!
For executing the below we will have to use WSLT.
Steps:
1. Login in to your server
2. Navigate to bin: cd $SOA_HOME/common/bin
3. Run : ./wlst.sh
4. Run: connect('weblogic','password','t3://adminserver_hostname:adminserver_port');
This will connect you to the ESSserver.
5. Run: exportMetadata(application='EssNativeHostingApp', server='ess_server1', toLocation='/home/temp/EssDevExport.zip');
6.importMetadata(application='EssNativeHostingApp', server='ess_server1', fromLocation='/home/temp/EssDevExport.zip');
These steps will export the metadata of your ESS jobs and you can then import the same into another environment.
Helpful?? Please Comment.
Happy Learning!!
Thanks Nadim.....For explaining it in a very simple words.....
ReplyDeleteCan I use this to make an update on a specific ESS job and then import to the same server again?
ReplyDelete