Reputation: 3384
I deployed liferay war on weblogic 10.3 and cretaed EXT which have changes in web.xml. If i deploy this EXT,weblogic doesn't take these changes which is made by web.xml of EXT.
I googled it and found this is issue in liferay 6.0 and resolved in liferay 6.2 please go through below link for more info: http://issues.liferay.com/browse/LPS-13222
Howerver I found some workaround in liferay wiki which is suggesting to follow below steps.
But still wondering how to create plan.xml in step3.
So would like to know how can i create plan.xml based on differnce between new web.xml and old one.
Upvotes: 1
Views: 613
Reputation: 1461
You just have to do a diff. Under Linux, open a console. Try for example
diff web_old.xml web_new.xml > mydiff.patch
It will display the differences between the two files in a file called "mydiff.patch".
Now, you can patch the deployed web.xml (shutdown your server before) :
cd /path-of-the-web.xml-folder-on-the-server
patch -p0 < mydiff.patch
You can also use the svn diff
command to make your diff file.
After these operations, restart your server.
Hope it helps.
Upvotes: 1