Hi,
How to enable/disable CRXDE lite in production environment using a workflow or an servlet?
Thanks & Regards,
Ashwini
Solved! Go to Solution.
Views
Replies
Total Likes
Dear Ashwini,
BundleContext[0] can get you your bundles[1] and individual bundles can be started via start() method.
[0]https://osgi.org/javadoc/r4v43/core/org/osgi/framework/BundleContext.html
[1] https://osgi.org/javadoc/r4v43/core/org/osgi/framework/Bundle.html
P.S. you can get BundleContext via:
@Activate
public void activate(BundleContext context) {
// ...
}
Regards,
Peter
Views
Replies
Total Likes
Hi,
Please check https://helpx.adobe.com/in/experience-manager/6-3/sites/administering/using/enabling-crxde-lite.html
In above article CRXDE Lite can be disabled via curl command, similarly you can use Java to make a post request to disable particular component.
Views
Replies
Total Likes
Thanks for the response.
How to enable the bundle programmatically?
Views
Replies
Total Likes
Dear Ashwini,
BundleContext[0] can get you your bundles[1] and individual bundles can be started via start() method.
[0]https://osgi.org/javadoc/r4v43/core/org/osgi/framework/BundleContext.html
[1] https://osgi.org/javadoc/r4v43/core/org/osgi/framework/Bundle.html
P.S. you can get BundleContext via:
@Activate
public void activate(BundleContext context) {
// ...
}
Regards,
Peter
Views
Replies
Total Likes
Views
Likes
Replies