Your achievements

Level 1

0% to

Level 2

Tip /
Sign in

Sign in to Community

to gain points, level up, and earn exciting badges like the new
Bedrock Mission!

Learn more

View all

Sign in to view all badges

Julio_Tobar
Julio_Tobar
Offline

Badges

Badges
15

Accepted Solutions

Accepted Solutions
5

Likes Received

Likes Received
17

Posts

Posts
25

Discussions

Discussions
7

Questions

Questions
18

Ideas

Ideas
0

Blog Posts

Blog Posts
1
Top badges earned by Julio_Tobar
Customize the badges you want to showcase on your profile
Re: [New] Welcome to AEM Community! Please Introduce Yourself - Adobe Experience Manager 20-02-2018
HI,this is Julio Tobar, AEM Senior Consultant with 7+ years experience with AEM and more than 14 years in IT. I'm happy to be here and be able to assist others.

Views

13.2K

Like

1
Re: anonymous user access to /etc using curl - Adobe Experience Manager 19-02-2018
Sharm​, It looks to me you're pretty close with the CURL command you have only need a couple of changes:1) I'm using AEM6.3 so I reference "authorizableId" instead of "principalId". To take a look at the actual parameters you have to use in your command, you can log into useradmin console (http://localhost:4502/useradmin ) open developer tools from browser (F12), access network tab and take a look at parameters.curl -u admin:admin -FauthorizableId=anonymous -Fchangelog="path:/etc,read:true,modif...

Views

1.3K

Likes

2

Replies

0
Re: Reinstalling the content package and the page status - Adobe Experience Manager 19-02-2018
@Arun_007, when you install your TestPackage you're basically overwriting all you did since the package was built, basically the replication properties added to the page node when replication was executed. I see three options for synchronizing your Author content with you publisher in the scenario you described:option 1: Custom Reverse Replication Agent to collect and retrieve "Replication" properties from Publish into Authoroption 2: Use Adobe Consulting Services JCR Compare tool (JCR Compare )...

Views

1.2K

Likes

2

Replies

0
Re: Eclipse "Import from Server..." function corrupts the JCR - Adobe Experience Manager 19-02-2018
Great alexr2​. Thank you so much for letting us know this fixed the issue!Regards,

Views

1.9K

Likes

0

Replies

0
Re: How to get ResourceResolver in a background thread? - Adobe Experience Manager 19-02-2018
ok, I see the issue with the new Thread!. I wouldn't recommend trying to inject any object into the new runnable, maybe it's best to simply create a new connection to the repository based on a System User. Do you know how to create a "System User", map the user to a service and finally have a ResourceResolver connect to the repository using that "System User"? if not I can gladly send instructions

Views

4.1K

Likes

0

Replies

0
Re: Programatically dropping components to AEM page - Adobe Experience Manager 19-02-2018
vidhumitram53839032 , let me see if I fully understand your requirement:Legacy SystemJCR based system with content for pagesNew SystemTemplates already createdContent components already createdRequirementUsing java code you mustcreate PAGESAdd legacy content to the newly created pagesAuthors should be able to go into the pages and use the component's dialogs to edit the migrated contentIf that's the case, then you're on the right path, continue to use Sling APIs for creating the JCR nodes in the...

Views

1.4K

Like

1

Replies

0
Re: How to get ResourceResolver in a background thread? - Adobe Experience Manager 16-02-2018
valcohen​ I tested and it actually works so maybe there's a different object/method we're using. Here's code for the two classes I created. Can you please test on your end?Servlet to capture requestpackage com.nnp.forums63.newthread;import java.io.IOException;import org.apache.felix.scr.annotations.sling.SlingServlet;import org.apache.sling.api.servlets.SlingSafeMethodsServlet;import org.apache.sling.api.SlingHttpServletRequest;import org.apache.sling.api.SlingHttpServletResponse;import org.apac...

Views

4.1K

Like

1

Replies

0
Re: How to get ResourceResolver in a background thread? - Adobe Experience Manager 16-02-2018
valcohen​Your first approach is good and passing the ResourceResolver to a new Thread has no problem. In fact you can test by displaying the ID of the connected user ResourceResolver resolves for. In order to test that ResourceResolver is available in a new thread you can:1. add a log message in your servlet prior to calling getDocFromService() Methodlogger.info("Resolved user: " + request.getResourceResolver().getUserID()); 2. add a log message inside the new threadlogger.info("resolved user in...

Views

4.1K

Like

1

Replies

0
Re: Eclipse "Import from Server..." function corrupts the JCR - Adobe Experience Manager 15-02-2018
Let me elaborate on the issue, as I see it, and then give you my recommendation for fixing it.Issue:Apache Jackrabbit FileVault tool is responsible for Synchronizing files in the File System with content in the JCR repository. Sadly, FileVault version 3.1.38 has a bug that serializes .content.xml file (-the one that contains the node properties-) almost empty. Since AEM plugin for Eclipse uses Sling-Ide-Tooling internally (AEM Developer Tools for Eclipse ), and Sling-Ide-tooling uses Apache Jack...

Views

1.9K

Likes

0

Replies

0
Re: Eclipse "Import from Server..." function corrupts the JCR - Adobe Experience Manager 14-02-2018
I ran into a similar issue and it turns out to be a problem with "File Vault" tool provided by Jackrabbit. The version of the tool I had the problem with was 3.1.18 and I had to either degrade to a previous version (3.1.16) or get a more recent build (3.1.42). To be 100% the issue comes from this tool you can:1) install fileVault in your system (expand the tools from AEM_HOME/crx-quickstart/opt/filevault into any other folder you choose) and configure your PATH to also include this application3)...

Views

2.0K

Likes

0

Replies

0