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

Andrew_Khoury
Andrew_Khoury
Offline

Badges

Badges
23

Accepted Solutions

Accepted Solutions
33

Likes Received

Likes Received
78

Posts

Posts
93

Discussions

Discussions
23

Questions

Questions
70

Ideas

Ideas
0

Blog Posts

Blog Posts
1
Top badges earned by Andrew_Khoury
Customize the badges you want to showcase on your profile
Re: Is there an AEM version matrix? - Adobe Experience Manager 11-05-2020
@jkpanera for now, until we have such documentation, you could search the json in this tool for the versions:https://helpx.adobe.com/experience-manager/kb/tools/bundle-version-checker.html

Views

2.7K

Like

1

Replies

0
Re: Add Content Disposition inline for specific assets - Adobe Experience Manager 07-05-2020
This might be caused by a known issue in Apache Sling https://issues.apache.org/jira/browse/SLING-8469I would suggest to update to AEM 6.5 service pack 3 (6.5.3) as it includes the fix.

Views

1.7K

Like

1

Replies

0
Re: How to block anonymous and admin user to create JCR N... - Adobe Experience Manager 07-05-2020
You cannot block admin from creating, modifying or deleting nodes. User "admin" bypasses all system permission checks. It would be best to just not share the admin user password with your team. As @huangb8 said, anonymous user cannot create nodes.

Views

2.0K

Likes

0

Replies

0
Re: Target Integration with AEM 6.5 - Personalization - Adobe Experience Manager 23-04-2020
Please contact our AEM support team to debug this, this is an interesting problem I haven't heard of before. I have never seen a case where offers from other pages get mapped to another page. So it would be good to find the root cause.

Views

2.7K

Likes

0

Replies

0
Re: Managing OSGi services programatically - Adobe Experience Manager 23-04-2020
I agree with @Jörg_Hoh, the concept of having different builds removing / adding configs could be prone to issues and isn't the recommended approach. Leveraging runmodes is good for environment specific stuff and if you have site / path specific functionality then maybe you could drive that via Sling Context Aware configs:https://sling.apache.org/documentation/bundles/context-aware-configuration/context-aware-configuration.html Otherwise, in general, adding / removing OSGi components per build w...

Views

6.4K

Likes

0

Replies

0
Re: Managing OSGi services programatically - Adobe Experience Manager 23-04-2020
If runmodes aren't preferrable as this is build specific and not environment specific then you could dynamically set the OSGi configurations via your code:http://www.nateyolles.com/blog/2015/10/updating-osgi-configurations-in-aem-and-slingYou might consider to have some separate projects in your maven builds that build different package for deploy per build that have different OSGi configs. There are many ways to achieve what you want, it is just to decide how to implement it. https://maven.apac...

Views

3.9K

Likes

0

Replies

0
Re: Managing OSGi services programatically - Adobe Experience Manager 22-04-2020
One way to do what you want is to make it so an OSGi configuration needs to be available for the component to be enabled (this is called ConfigurationPolicy.REQUIRE on the OSGi Component). See here, for example:http://www.computepatterns.com/43/osgi-component-in-aem-that-is-active-only-in-specific-run-mode-say-publish/ Then using this, you can leverage runmodes like /apps/myapp/config.qaauthor, /apps/myapp/config.qapublish. Or you can enable them by removing the config of one component and enabl...

Views

3.9K

Likes

2

Replies

2
Re: Disable Basic Authentication - Adobe Experience Manager 16-04-2020
Instead of disabling basic auth on publish, just don't include Authorization header in the /clientheaders config of the dispatcher configuration. That effectively prevents basic auth from the outside world.

Views

2.5K

Likes

0

Replies

0
Re: REP Privileges Not Present in Publish - Adobe Experience Manager 13-04-2020
I'm going to assume you mean rep:policy nodes. If that is the case then this article covers it:https://helpx.adobe.com/experience-manager/kb/migrate-users-groups-ACLs.html

Views

1.8K

Like

1

Replies

0
Re: OSGI Apache Felix Console "Services" vs "Components"... - Adobe Experience Manager 13-04-2020
What is the difference between OSGI Services and OSGI Components tabs within the OSGI Apache Felix Console? An OSGi Component can implement one or more OSGi services. It sounds like in your case, you had the OSGi Component class defined as its own service. Components can have configurations associated with them.See the OSGi Declarative Services Specification for the formal definition (in the generated bundle jar an XML file defines the configuration):https://osgi.org/specification/osgi.cmpn/7.0....

Views

1.6K

Like

1

Replies

0