com.adobe.granite.workflow.core.job.JobHandler Process implementation not found | Community
Skip to main content
July 15, 2016

com.adobe.granite.workflow.core.job.JobHandler Process implementation not found

  • July 15, 2016
  • 2 replies
  • 10498 views
I am using AEM 6.1 with Maven as the build manager. I have updated the .m2 local folder with the unobfuscated uber jar provided by Adobe. I am getting the following error: *ERROR* [JobHandler: /etc/workflow/instances/server0/2016-07-15/model_157685507700064:/content/myApp/testing/wf_test01] com.adobe.granite.workflow.core.job.JobHandler Process implementation not found: com.myApp.workflow.ActivatemyAppPageProcess com.adobe.granite.workflow.WorkflowException: Process implementation not found: com.myApp.workflow.ActivatemyAppPageProcess at com.adobe.granite.workflow.core.job.HandlerBase.executeProcess(HandlerBase.java:197) at com.adobe.granite.workflow.core.job.JobHandler.process(JobHandler.java:232) at org.apache.sling.event.impl.jobs.JobConsumerManager$JobConsumerWrapper.process(JobConsumerManager.java:512) at org.apache.sling.event.impl.jobs.queues.JobRunner.run(JobRunner.java:205) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617) at java.lang.Thread.run(Thread.java:745)

 

the uber jar does not seem to have com.adobe.granite.workflow.core.job package .. Can you please suggest a way to resolve this issue?

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

2 replies

July 16, 2016

What Java classes are you trying to use. I will test this to see if i get same results, Let us know the Java classes and the POM depedencies you are using. 

itzgatzeAuthor
July 19, 2016

Steve Cave wrote...

What Java classes are you trying to use. I will test this to see if i get same results, Let us know the Java classes and the POM depedencies you are using. 

 

POM dependency: 

<dependency>
            <groupId>com.adobe.aem</groupId>
            <artifactId>uber-jar</artifactId>
            <version>6.1.0</version>
            <classifier>apis</classifier>
            <scope>provided</scope>
 </dependency>

 

I have a custom Java class which extends the ActivatePageProcess from (com.day.cq.wcm.workflow.process)

Kunal_Gaba_
July 20, 2016

I do not think there is anything to do with Uber Jar as you are able to compile your code. The exception you see is a run time exception when you execute your workflow process. Check in the Apache felix console whether the process step component class is in active state or not. If you do not see the class listed then check the status of the OSGI bundle which contains this class. If there was any issue with Uber Jar then you will get compilation and build problems. 

http://localhost:4502/system/console/components

GK-007
July 16, 2016

Is the process bundle  in active status??

Thanks,

Kishore