I created a shared library - testing.war and this is deployed to weblogic 9.2 with manifest file as
Manifest-Version: 1.1
Specification-Version: 1
Extension-Name: testing
Implementation-Version: 1
A referencing application TestProject.war is deployed and it works fine.
I need to modify shared library methods and deploy this new version of library for the TestProject.war application to start referencing the new library.
Created a new library with same name - testing.war but updated the versions on manifest file as
Manifest-Version: 1.1
Specification-Version: 2
Extension-Name: testing
Implementation-Version: 2
The requirement is : the application TestProject.war has to pick up the new version of library without the need to redeploy the application. how can we acheive this?
Manifest-Version: 1.1
Specification-Version: 1
Extension-Name: testing
Implementation-Version: 1
A referencing application TestProject.war is deployed and it works fine.
I need to modify shared library methods and deploy this new version of library for the TestProject.war application to start referencing the new library.
Created a new library with same name - testing.war but updated the versions on manifest file as
Manifest-Version: 1.1
Specification-Version: 2
Extension-Name: testing
Implementation-Version: 2
The requirement is : the application TestProject.war has to pick up the new version of library without the need to redeploy the application. how can we acheive this?