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

davidjgonzalezz
davidjgonzalezz
Offline

Badges

Badges
18

Accepted Solutions

Accepted Solutions
16

Likes Received

Likes Received
46

Posts

Posts
54

Discussions

Discussions
10

Questions

Questions
44

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by davidjgonzalezz
Customize the badges you want to showcase on your profile
Re: AEM postback gives HTTP 204 instead of HTTP 200 - Adobe Experience Manager 22-10-2020
Hi, Using the AEM Web Console (aka Felix console), use the "Sling Servlet Resolver" tool on the misbehaving AEM Publish node to see what servlet the POST request resolves to: http://localhost:4502/system/console/servletresolver You can compare this a "working" Publish node. The Servlet Resolver can sometimes act a bit wonky, so alternatively, you can make your POST to the end-point in question, and review Recent requests: http://localhost:4502/system/console/requests This will show the FULL trac...

Views

1.8K

Like

1

Replies

3
Re: What controls the order of new assets in card view fo... - Adobe Experience Manager Assets 21-10-2020
Quite odd. What version of AEM are you on? Are you able to reproduce this locally? Can you try in a new folder, adding assets 1 at a time, and see if each new one show up in the top left? Can you look at what the node at "/libs/dam/gui/content/assets/jcr:content/views/card/datasource" is configured as? (This is the node that defines how the assets are listed in the card view). Using AEM Chrome plugin, you can see the query that is triggered to generate this listing, which shows it just grabs eve...

Views

946

Like

1

Replies

0
Re: Manage Search Requirements in Multi-Tenancy AEM Envir... - Adobe Experience Manager Assets 21-10-2020
You are correct, Omnisearch Asset Search Rail is global across all tenants. There are 2 main (custom) ways to "tenantize" it's behavior. The first is to ACL the search predicate fields nodes for the Omnisearch rail under /conf/global/... Obviously, this will not satisfy your requirement, since your requirement is to disallow Fulltext terms to be evaluated against specific JCR properties. I believe the only way to achieve your use case it to permission the properties themselves using Oak's built-...

Views

397

Like

1

Replies

0
Re: Syntax Formatting for codeblocks in AEM Output - Adobe Experience Manager Assets 20-10-2020
Could you note use the Text Core Component, create a "Code" paragraph style in the Policy (that wraps with the ), and then have your favorite JS-based code highlighter target `.cmp_text code` ? https://docs.adobe.com/content/help/en/experience-manager-core-components/using/components/text.html

Views

360

Like

1

Replies

0
Re: Validate naming conventions with Asset Link? - Adobe Experience Manager Assets 20-10-2020
The simplest solution would be to have a Workflow/Launcher that is triggered whenever a new asset is created that validates the asset's filename. If there is a violation, the WF is assigned to someone to review/mitigate. I'm not aware of any hooks or good ways to do this in Asset Link experience itself. Its possible you could create a Sling Filter that could intercept and write filenames, but I'm not sure if this would break in Asset Link since it expects the filename to be something else.

Views

380

Like

1

Replies

0
Re: S3 Bucker Event in AEM? - Adobe Experience Manager Assets 20-10-2020
There is nothing like this OOTB in AEM Assets.There are 2 main approaches: 1. Create code that listeners for S3 events, and pushes those new assets to AEM Assets (this code is all outside of AEM)2. Create code in AEM (such as a Sling Scheduler [1]) that polls the S3 bucket intermittently (whatever frequency you want; every 1 min, every 10 min, etc.) and pulls in any new assets (since the last poll). [1] https://sling.apache.org/documentation/bundles/scheduler-service-commons-scheduler.html

Views

599

Like

1

Replies

0
Re: ACS AEM CSV Asset Importer Is not working in my Dev s... - Adobe Experience Manager Assets 20-10-2020
The error states your input file cannot be found: Caused by: java.io.FileNotFoundException: C:/Users/sunita_c/Sunita-Work/images/hero.jpeg (No such file or directory) I believe this is due to Java File APIs want Windows paths formatted - so i think you need to provide your path as: C:\\Users\\sunita_c\\Sunita-Work\\images\\hero.jpeg https://stackoverflow.com/questions/3059383/file-path-windows-format-to-java-format Alternative there are similar tools in ACS Commons (MCP Tools) that can import as...

Views

1.3K

Like

1

Replies

0
Re: Workflow Multi approval Issue - Adobe Experience Manager Assets 20-10-2020
Yup - creating the Group 3 (Business and Corporate approvers) is the proper way to approach this in AEM

Views

660

Likes

0

Replies

0
Re: Is it possible to search for a rendition of an image... - Adobe Experience Manager Assets 20-10-2020
You cannot do this OOTB since rendition dimensions are not sorted as properties. Technically could search for rendition nt:files, create a custom QueryBuilderFiltering predicate that pulls them into memory and determines their size and filters them in/out - but needless to say this would be very very bad for performance -- so don't do this! Instead, I suggest creating a WF Process (assuming 6.x) that determines and writes rendition sizes as JCR Properties that you can then search over. There are...

Views

212

Like

1

Replies

0
Re: Asset clean up - Adobe Experience Manager Assets 20-10-2020
There's not a OOTB way to handle this since as you noted, AEM Author doesn't always reflect the state of AEM Publish.There are 2 main approaches here:1. Integrating it into the Asset Details UI on a "per asset basis", requiring someone to click into each asset to asset its use.2. Building a tool that runs on lists of asset paths, and outputs a report of what is used / isn't used.The good/bad news is both are custom efforts To actually achieve the data needed to make this decision, ill break out ...

Views

536

Like

1

Replies

0