For the mar file deployment, you will need to login to Enterprise Manager of your application server which is usually at http://your server:port/em location. In the em, after choosing your deployed application you will need to select MDS from the menu and have to import the mar file. On bouncing the server the newly created task flow will be launched instead of the one that was earlier present.
There are situations when you may have to revert back to the original task flow so to be able to do you will need to delete the imported metadata. Two of the ways to do that is by:
1. Customization Manager which can be accessed by anyone with administrator privileges.
2. By using the wlst console
The focus of this post is on point 2 and here is how you can do that:
To start the wlst console use:
There are many places where wlst.sh may exist depending upon the weblogic version. Fusion applications also provide its own version of wlst.sh through the shipped libraries during the installation. Some of the typical locations are in
atgpf/common/bin/wlst.sh
DefaultDomain/config/fmwconfig/wlst.sh
wlst commands need either online or offline mode for them to work. So, the one being discussed here to delete metadata it needs the online mode. Which means you need to connect to the server on wlst console before running the command. So to connect you need to use:
connect('weblogic userna,e','weblogic1 password,'t3://server name:port')
Once connected you can first see the imported meta data and then delete it. To get the metadata imported into the app you can use:
exportMetadata(application='You Deployed App name',server='wls server name',toLocation='/tmp/myrepos',docs='/**')
This will export all the mds meta data . You can selectively export by changing the docs option.
Finally, to delete the metadata like in this case we want to delete just for the customized task flow you can use:
deleteMetadata(application='You Deployed App name',server='wls server name', docs='/WEB-INF/.../ExistingTaskFlow.xml.xml')
This should do the job and as I mentioned earlier the docs option can be changed to delete more than one artifact or all by using /**
Reference: http://docs.oracle.com/cd/E14571_01/web.1111/e13813/custom_mds.htm
No comments:
Post a Comment