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

Not able to get Resource Resolver

Avatar

Level 3

Hi,

I am trying to read excel file and write it's content into JCR under content folder. For that, I am using ACS AEM Commons Ensure user. I could see that my service user is created and it has root read and content write access. However, I'm not able to create resource resolver object and get the session. I tried to debug the code, when my debugger reaches below step, nothing happens and debugger doesn't move further. 

resourceResolver = resourceResolverFactory.getResourceResolver(authInfo); 

I don't even see any errors in the logs. Below is the method in which I am trying to get the resource resolver object. Thanks in advance.

private Session getSession() throws LoginException {

ResourceResolver resourceResolver;
Session session = null;


final Map<String, Object> authInfo = Collections.singletonMap(ResourceResolverFactory.SUBSERVICE, (Object) "excel-service-user");
resourceResolver = resourceResolverFactory.getServiceResourceResolver(authInfo);

session = resourceResolver.adaptTo(Session.class);

logger.info("####### session ######### : " + session.getUserID());

return session;
}

 

Topics

Topics help categorize Community content and increase your ability to discover relevant content.

JCR
1 Accepted Solution

Avatar

Correct answer by
Administrator

Reply from @prachiz 

The issue is resolved. I was trying to register service user for com.<myapp>.core as below code, but my OSGi bundle symbolic name was core only, however, I'm not sure why bundle name didn't have artifact id. Ideally, BSN should have GroupID+ ArtifactID or ArtifactID. 

 user.mapping="com.<myapp>.core:excel-service-user=excel-service-user"/>


Kautuk Sahni

View solution in original post

17 Replies

Avatar

Level 10

Hi, 

 

This is not anything I've seen before unless you've made some configuration error. I do have one question though. If the data you are trying to manipulate is under the /content node, why are you using a service user (especially with root access)? Would it not be simpler and safer to use the session?

Avatar

Level 3

I'm trying to write the data into jcr node. I am reading an excel file from dam, parsing the data into model and then write the data under /content/<my_folder>. To write the data into jcr, I need service user.

Avatar

Community Advisor

@prachiz,

Your source code looks correct. It seems like you might be having a system user and Apache Sling User Mapping Situation. Have you set up the Apache sling Service User Mapper Service Amendment Factory configuration? com.mysite.core:excel-service-user=my-system-user or the System User + ACL permissions? 

You're in luck. There is a step by step guide on how you can set up these two configurations: http://www.aemcq5tutorials.com/tutorials/create-system-user-in-aem

Avatar

Level 3

Hi,

I have already configured the user under apps/<my app>/config/com.adobe.acs.commons.users.impl.EnsureServiceUser-excelServiceUser.xml

<?xml version="1.0" encoding="UTF-8"?>
<jcr:root xmlns:sling="http://sling.apache.org/jcr/sling/1.0" xmlns:jcr="http://www.jcp.org/jcr/1.0"
jcr:primaryType="sling:OsgiConfig"
aces="[type=allow;privileges=jcr:read\,rep:write;path=/content;rep:glob=/jcr:content/*]"
ensure-immediately="{Boolean}true"
principalName="excel-service-user"
type="add"/>

org.apache.sling.serviceusermapping.impl.ServiceUserMapperImpl.amended-excelServiceUser.xml

 

<?xml version="1.0" encoding="UTF-8"?>
<jcr:root xmlns:sling="http://sling.apache.org/jcr/sling/1.0" xmlns:jcr="http://www.jcp.org/jcr/1.0"
jcr:primaryType="sling:OsgiConfig"
service.ranking="{Long}0"
user.mapping="com.<myapp>.core:excel-service-user=excel-service-user"/>

Thanks!

Avatar

Level 3
I have already configured the user under apps/<my app>/config/com.adobe.acs.commons.users.impl.EnsureServiceUser-excelServiceUser.xml

Avatar

Community Advisor
You should see an error within the error.log, can you please share the error code?

Avatar

Community Advisor

Can you find the service-user @ http://localhost:4502/crx/explorer/index.jsp ? Click on "user administration", then click on "find"; find "excel-service-user". The results returned should be a user, and also a property on that user of "system user" = true.

 

 

Avatar

Community Advisor
Then next step is to go into http://localhost:4502/useradmin, and find the user "excel-service-user". Ensure that this user have the correct privileges.

Avatar

Level 3
I don't see any error in the error.log or my project log file. Not even login exception.

Avatar

Level 3

I could see my service-user @ http://localhost:4502/crx/explorer/index.jsp. and Permissions are applied.

Avatar

Community Advisor
Would it be possible that getSession(); is never invoked? That might be the case.

Avatar

Level 3

Method is invoked when I debug the code, debugger stops at

 resourceResolver = resourceResolverFactory.getServiceResourceResolver(authInfo);

At that point, I don't see any errors in log and debugger doesn't move further. I get the message on debug console that application is running. 

Avatar

Community Advisor

Try this:

 

Map<String, Object> param = new HashMap<String, Object>();
param.put(ResourceResolverFactory.SUBSERVICE, "excel-service-user");
ResourceResolver rr = resourceResolverFactory.getServiceResourceResolver(param);

 

Avatar

Level 3

@BrianKasingli Tried the code above but no luck! Seems like there are some issue with project creation. My OSGi bundle symbolic name doesn't have group id. Not sure whether it will affect the other functionalities or not.

Avatar

Level 3

@BrianKasingli @Theo_Pendle Thanks for the help!
Issue is resolved. I was trying to register service user for com.<myapp>.core as below code, but my OSGi bundle symbolic name was core only, however, I'm not sure why bundle name didn't have artifact id. Ideally, BSN should have GroupID+ ArtifactID or ArtifactID. 

 user.mapping="com.<myapp>.core:excel-service-user=excel-service-user"/>

 

Avatar

Community Advisor
Cheers, good to hear that you figured it out!

Avatar

Correct answer by
Administrator

Reply from @prachiz 

The issue is resolved. I was trying to register service user for com.<myapp>.core as below code, but my OSGi bundle symbolic name was core only, however, I'm not sure why bundle name didn't have artifact id. Ideally, BSN should have GroupID+ ArtifactID or ArtifactID. 

 user.mapping="com.<myapp>.core:excel-service-user=excel-service-user"/>


Kautuk Sahni