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

justin_at_adobe
justin_at_adobe
Offline

Badges

Badges
27

Accepted Solutions

Accepted Solutions
259

Likes Received

Likes Received
88

Posts

Posts
529

Discussions

Discussions
21

Questions

Questions
508

Ideas

Ideas
1

Blog Posts

Blog Posts
0
Top badges earned by justin_at_adobe
Customize the badges you want to showcase on your profile
Re: Twitter Feed Component from ACS commons on AEM 6.3 not working - Adobe Experience Manager 27-09-2018
It would be better to just deploy the ACS AEM Commons package rather than copying the code. If you have an actual problem using the ACS AEM Commons package, you should report it using GitHub Issues.

Views

1.3K

Likes

0

Replies

0
Re: How to check sitemap on localhost using ACS common Sitemap OSGi Service ? - Adobe Experience Manager 12-07-2018
The SiteMap servlet gets configured with the resource (component) type, not the template path.Once configured, you can request http://localhost:4502/.sitemap.xmlFor example, with weretail, you would configure the servlet with a resource type of weretail/components/structure/page (see screenshot below) and then request http://localhost:4502/content/we-retail/us/en.sitemap.xml

Views

3.3K

Like

1

Replies

1
Re: SiteMap for different locale / domain - Adobe Experience Manager 24-05-2018
And yes, to Peter's point, the best place to discuss this is in GitHub Issues, not the AEM forums.

Views

1.6K

Like

1

Replies

0
Re: SiteMap for different locale / domain - Adobe Experience Manager 24-05-2018
This is indeed a limitation -- if both /content/my_company/en_us and /content/my_company/es_es have the same resource type, then they will share the same sitemap servlet instance and thus the same externalizer name.There was some interest about two years ago to make this more flexible, but the issue didn't get worked on and became stale. See https://github.com/Adobe-Consulting-Services/acs-aem-commons/issues/652There may also be an opportunity to use the wcm.io URL Handler (http://wcm.io/handler...

Views

1.6K

Likes

0

Replies

0
Re: AEM 6.0 Custom Authentication handler - Adobe Experience Manager 27-02-2018
You should be able to do this without any customization in AEM by integrating AEM with ADFS via SAML. I don't know the details of how to configure domain authentication (which I think is what you are describing) in ADFS, but I suspect it is fairly straightforward.FWIW, inside Adobe we do something similar, although we use Okta, not ADFS. Although we require MFA for most internal applications so even though I never enter a password when I'm on the corporate network, I have to accept a push messag...

Views

1.6K

Likes

0

Replies

0
Re: AEM Sling custom injector @Source issue. - Adobe Experience Manager 23-01-2018
This is an not the way Sling Models works by default. If there is no @Source annotation (or no custom injector which provides the source value), all injectors are checked. The @Source annotation is just used to refine the scope of annotations checked. You can certainly achieve what you are describing in your custom injector by returning null if the annotation isn't present.

Views

1.6K

Like

1

Replies

0
Re: How to Rewrite  Plain text output not <HTML attribute> - Adobe Experience Manager 21-10-2017
As far as I know, there's no existing Transformer which does what you are describing, so you would need to write one.That said, if you are just doing String substitution across the entire HTML document and don't care about the semantic meaning of specific HTML elements, then it is possible that the Rewriter is not the right solution for you and a simple Servlet Filter would be more appropriate (and be slightly simpler to write).

Views

1.1K

Likes

0

Replies

0
Re: Is there a way to skip the pipelines in sling rewriter? - Adobe Experience Manager 07-09-2017
Ah, I see what you mean now. No, there's no standard approach to do this. If the transformers are all involved are under your control, however, you could accomplish this by sharing some state between the transformers, e.g. set some request attribute in external-tab and then have link-rewrite look at that request attribute to decide whether or not to do any rewriting.

Views

1.2K

Like

1

Replies

0
Re: Is there a way to skip the pipelines in sling rewriter? - Adobe Experience Manager 07-09-2017
I don't think you are using the terminology correctly. For a single request, only a single pipeline will be used, so there are no 'remaining' pipelines.I suspect what you mean to ask if whether a component within a pipeline can remove events so that they are not passed to subsequent components within the pipeline. If so, the answer is yes. Just don't call the corresponding SAX method on the next component. acs-aem-commons/StylesheetInlinerTransformerFactory.java at master · Adobe-Consulting-Serv...

Views

1.2K

Like

1

Replies

0
Re: AEM LDAP VS SAML VS Custom Login Module - Adobe Experience Manager 13-07-2017
I'd suggest always using SAML. I think you'd be hard pressed to find an IDP on the market today which doesn't support SAML.

Views

3.2K

Likes

0

Replies

0
Likes given to