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)
Solved! Go to Solution.
Views
Replies
Total Likes
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
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.
I have tried to search this in component console but not able to find. What does it mean?
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
Please refer similar question asked in Community with resolution :
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
Views
Likes
Replies