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;
}
Solved! Go to Solution.
Topics help categorize Community content and increase your ability to discover relevant content.
Views
Replies
Total Likes
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"/>
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?
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.
Views
Replies
Total Likes
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
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!
Views
Replies
Total Likes
Views
Replies
Total Likes
Views
Replies
Total Likes
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.
Views
Replies
Total Likes
Views
Replies
Total Likes
Views
Replies
Total Likes
I could see my service-user @ http://localhost:4502/crx/explorer/index.jsp. and Permissions are applied.
Views
Replies
Total Likes
Views
Replies
Total Likes
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.
Views
Replies
Total Likes
Try this:
Map<String, Object> param = new HashMap<String, Object>();
param.put(ResourceResolverFactory.SUBSERVICE, "excel-service-user");
ResourceResolver rr = resourceResolverFactory.getServiceResourceResolver(param);
Views
Replies
Total Likes
@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.
Views
Replies
Total Likes
@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"/>
Views
Replies
Total Likes
Views
Replies
Total Likes
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"/>
Views
Likes
Replies