Workflow error | Community
Skip to main content
August 4, 2022
Solved

Workflow error

  • August 4, 2022
  • 3 replies
  • 1306 views

Hi Team

After running one workflow i have got the following error. I have also searched for the component "com.DemoApp.infra.core.dam.workflow.ValidateAssetMetadataStep" in OSGI component console but there i am not able to find it.

 

Can anyone help here to resolve this issue.

com.adobe.granite.workflow.WorkflowException: Process implementation not found: com.DemoApp.infra.core.dam.workflow.ValidateAssetMetadataStep at com.adobe.granite.workflow.core.job.HandlerBase.executeProcess(HandlerBase.java:204) at com.adobe.granite.workflow.core.job.JobHandler.process(JobHandler.java:260) at org.apache.sling.event.impl.jobs.JobConsumerManager$JobConsumerWrapper.process(JobConsumerManager.java:502) at org.apache.sling.event.impl.jobs.queues.JobQueueImpl.startJob(JobQueueImpl.java:293) at org.apache.sling.event.impl.jobs.queues.JobQueueImpl.access$100(JobQueueImpl.java:60) at org.apache.sling.event.impl.jobs.queues.JobQueueImpl$1.run(JobQueueImpl.java:229) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628) at java.base/java.lang.Thread.run(Thread.java:834)
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 DEBAL_DAS

Following OSGi component: com.DemoApp.infra.core.dam.workflow.ValidateAssetMetadataStep must be part of a specific OSGi bundle , please check that whether bundle is in active state or not.

 

If that bundle is in resolved or installed state then you won't be seeing com.DemoApp.infra.core.dam.workflow.ValidateAssetMetadataStep in /system/console/components

3 replies

DEBAL_DAS
August 4, 2022

Following OSGi component: com.DemoApp.infra.core.dam.workflow.ValidateAssetMetadataStep must be part of a specific OSGi bundle , please check that whether bundle is in active state or not.

 

If that bundle is in activate state , then disable component [com.DemoApp.infra.core.dam.workflow.ValidateAssetMetadataStep , via OSGI component console] -> enable -> trigger workflow

 

Hope this will help.

skumari1Author
August 4, 2022

I have tried to search this in component console but not able to find. What does it mean? 

DEBAL_DAS
DEBAL_DASAccepted solution
August 4, 2022

Following OSGi component: com.DemoApp.infra.core.dam.workflow.ValidateAssetMetadataStep must be part of a specific OSGi bundle , please check that whether bundle is in active state or not.

 

If that bundle is in resolved or installed state then you won't be seeing com.DemoApp.infra.core.dam.workflow.ValidateAssetMetadataStep in /system/console/components

Sachin_Arora_
Community Advisor
Community Advisor
August 4, 2022
arunpatidar
Community Advisor
Community Advisor
August 4, 2022

Do not create java package in caps

trying changing from 

com.DemoApp.infra.core.dam.workflow.ValidateAssetMetadataStep

to 

com.demoapp.infra.core.dam.workflow.ValidateAssetMetadataStep

Arun Patidar