Hi,
I want to delete files and folders from an application deployed on WASND 6.1.
I'm using the " Replace, Add and Delete files" option from "Update Application" on DMGR Console.
Suppose my app name is app.ear. with one .war file inside.
app.ear
|_ package1.WAR
For errors in previous updates using .zip file, I have two folders that don't should be deployed and others files that I want it to delete.
app.ear
|_package1.WAR
|_garbage1
|_garbage2.WAR
I built a .zip with the following content:
update.zip/META-INF/ibm-partialapp-delete.props
------------------------------------
ibm-partialapp-delete.props:
garbage1
garbage2.WAR/*
------------------------------------
update.zip/package1.WAR/META-INF/ibm-partialapp-delete.props
------------------------------------
ibm-partialapp-delete.props:
images/folder_garbage
------------------------------------
But It not works. :-( It doesn't delete folders. Only files. And those packages outside of package1.war not were erased either.
How should I build the .zip for delete these packages and delete folders inside my app.ear?
Thanks for advanced ;)