Enable/Disable CRXDE LITE using Workflow | Community
Skip to main content
New Participant
November 12, 2018
Solved

Enable/Disable CRXDE LITE using Workflow

  • November 12, 2018
  • 3 replies
  • 3029 views

Hi,

         How to enable/disable CRXDE lite in production environment using a workflow or an servlet?

Thanks & Regards,

Ashwini

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Peter_Puzanovs

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

3 replies

Peter_Puzanovs
Peter_PuzanovsAccepted solution
New Participant
November 12, 2018

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

New Participant
November 12, 2018

Thanks for the response.

How to enable the bundle programmatically?

arunpatidar
New Participant
November 12, 2018

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.

Arun Patidar