Tags are not fetching in AEM 6.4 when upgrading from AEM6.2. is there anyone else facing same problems?
Tags were working properly in AEM 6.2. and we upgraded to AEM 6.4. Now tag manager is unable to resolve tags and throwing null pointer exception.
TagManager tagManager = resourceResolver.adaptTo(TagManager.class);
Tag tagObj = tagManager.resolve("/etc/tags/x/abc");
TagManager tagManager = resourceResolver.adaptTo(TagManager.class);
Tag tagObj = tagManager.resolve("x:abc");
both of the above-mentioned code snippets are not working and throwing null pointer when try to use tabObj.
"everyone" user has been provided all permissions on /etc/tags folder and sub folders.
please help.
thanks in advance.