Expand my Community achievements bar.

Don’t miss the AEM Skill Exchange in SF on Nov 14—hear from industry leaders, learn best practices, and enhance your AEM strategy with practical tips.
SOLVED

Workflow Process Implementation not found

Avatar

Level 9

I see this problem when I use  following code in my workflow custom process.

@Reference
  private ResourceResolverFactory resolverFactory;

I see a previous  thread with the same subject in https://forums.adobe.com/thread/1204006?tstart=0

I tried the workaround mentioned in the thread, it didn't work for me(one of the workaround is by adding -XX:-UseSplitVerifier option to the JVM .This issue seems to be an with CQ 5.6 and java 7). I already have this in my start.bat and quickstart.bat

Here are Java and CQ5 versions I tried

Java 1.7

CQ: Version 5.6 and 6.0 (Didn't work on any one of them)

1 Accepted Solution

Avatar

Correct answer by
Employee

Hi,

Are you sure your OSGI Component has started correctly?  It could be that you have a dependency that cannot be found, checking the components view is the best place to start.  http://localhost:4502/system/console/components

Will

View solution in original post

2 Replies

Avatar

Level 10

Hi Mshajiahmed ,

http://chrononsystems.com/blog/java-7-design-flaw-leads-to-huge-backward-step-for-the-jvm

Can you delete the bundle & update pom to use the higher maven scr plugins. Then deploy

    <plugin>

         <groupId>org.apache.felix</groupId>

         <artifactId>maven-scr-plugin</artifactId>

         <version>1.16.0</version>

     </plugin>

Thanks,
Sham
Twitter: @adobe_sham

Avatar

Correct answer by
Employee

Hi,

Are you sure your OSGI Component has started correctly?  It could be that you have a dependency that cannot be found, checking the components view is the best place to start.  http://localhost:4502/system/console/components

Will