Expand my Community achievements bar.

Dive into Adobe Summit 2024! Explore curated list of AEM sessions & labs, register, connect with experts, ask questions, engage, and share insights. Don't miss the excitement.
SOLVED

Replicator.replicate throwing null pointer exception : AEM 6.2

Avatar

Level 8

Hi All,

I have a class which  extends AbstractProductImporter[com.adobe.cq.commerce.pim.common.AbstractProductImporter] and implements ProductImporter[com.adobe.cq.commerce.pim.api.ProductImporter]. It has @Component, @Service annotations declared at the top.

Here, custom logic is written which checks if a flag present[for every product] in json, got from PIM system is update/create etc and based on that code is present. Here I am trying to use, replicator.replicate(resourceResolver.adaptTo(Session.class), ReplicationActionType.ACTIVATE, pagePath). 

    @Reference
    public Replicator replicator; is made use of in the java file.

But I am getting Nullpointerexception on hitting this replicator.replicate line.

I have spent quite some time on this, but no clue as to what is going on.'pagePath' is pointing to existing page in the repository.

Don't know what is happening. 

Any thoughts on this will be really really helpful.

1 Accepted Solution

Avatar

Correct answer by
Employee Advisor

Hi,

if you use a simple

@Reference
Replicator replicator;

the reference must alwas be non-null when the service gets active. Because this is the default semantic of the @Reference annotation. Can you post the source code of your class? And can you make sure, that the service is properly registered within OSGI? Just have a look at /system/console/components and look for your class.

Jörg

View solution in original post

4 Replies

Avatar

Level 8

Hi All, 

Any thoughts on the below will be helpful.

Avatar

Correct answer by
Employee Advisor

Hi,

if you use a simple

@Reference
Replicator replicator;

the reference must alwas be non-null when the service gets active. Because this is the default semantic of the @Reference annotation. Can you post the source code of your class? And can you make sure, that the service is properly registered within OSGI? Just have a look at /system/console/components and look for your class.

Jörg

Avatar

Level 4

Can you please share the root cause of this as we are also facing the same issue and not able to resolve it.

Avatar

Level 2

HI All,

- Check at /system/console/components and search for replicationstatusprov and ensure that it is in start status

- Turning it back ( stop & Start) with  additional step to resolve the error in crx/de:
/system/console/bundles -> search for crxde -> click "refresh package imports"

- issue will be fixed after refresh the page