Need to get Active Step of any workflow that is running on my page | Community
Skip to main content
praveenk9057427
Level 2
May 24, 2020
Solved

Need to get Active Step of any workflow that is running on my page

  • May 24, 2020
  • 1 reply
  • 2598 views

Hi All,

I am trying to get Active step of workflow running on my page.

Basically the required information for this is present under /var/workflows/instances/

 

For this i am writing an OSGI service.

In this using WorkflowSession API and trying to access workflow instances of RUNNING state with the help of method - getWorkflows (String[] states) - but i am getting empty array always. A(my subservice user has permission to instances as well) 

With the help of WorkflowSession iam able to get models(/var/workflow/models) data. But not instances.

 

could you please help on this. Is there any other way of achieving it or please correct me if i need to correct in the approach.

Thanks in advance.

 

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 arunpatidar

You can make a simple json request to get active workflow details in the page.

http://host:port/resource-status/editor/pagepath.1.json

 

or use https://helpx.adobe.com/experience-manager/6-3/sites/developing/using/reference-materials/javadoc/com/adobe/granite/resourcestatus/package-summary.html API.

1 reply

arunpatidar
Community Advisor
arunpatidarCommunity AdvisorAccepted solution
Community Advisor
May 24, 2020

You can make a simple json request to get active workflow details in the page.

http://host:port/resource-status/editor/pagepath.1.json

 

or use https://helpx.adobe.com/experience-manager/6-3/sites/developing/using/reference-materials/javadoc/com/adobe/granite/resourcestatus/package-summary.html API.

Arun Patidar