Questions tagged [aem]

The Adobe Experience Manager is a large-scale web content management system that is currently available from Adobe Systems. It is the successor brand name of a previous product called Communiqué (short: CQ).

The Adobe Experience Manager is a large-scale web content management system. It is currently available from Adobe Systems as a part of the Adobe Marketing Cloud platform. It is the successor brand name of a previous product called , which was acquired from Day Software in October 2010.

Links

Older versions of AEM have reached their end of life and is no longer supported. However, you can still access their documentation through Package Share. For instructions on how to access the package and install refer this article.

5008 questions
7
votes
1 answer

How appropriate it is to use SAML_login with AEM with more than 1m users?

I am investigating a slow login time and some profile synchronisation problems of a large enterprise AEM project. The system has around 1.5m users. And the website is served by 10 publishers. The way this project is built, is that they have enabled…
Tolga Evcimen
  • 7,112
  • 11
  • 58
  • 91
7
votes
1 answer

OSGi container and application server container in AEM

In standalone AEM installation, Is felix OSGi container present inside jetty servlet container ? Or is the Jetty Server is installed as a bundle in Felix OSGi container ? Which one will start first when AEM is started ? And how will this change for…
Prashant Onkar
  • 414
  • 3
  • 15
7
votes
1 answer

How to use order by with multiple isdescendantnode

I am attempting to grab multiple nodes of the same type from different areas in the jcr and order them by a date. SELECT * FROM [social:asiResource] WHERE [sling:resourceType] = 'social/qna/components/hbs/topic' AND [isFeatured_b] = true AND NOT…
apothic
  • 345
  • 1
  • 9
7
votes
2 answers

Programmatically add node in AEM?

I need to create a node in AEM using java services. I created a workflow, in which a process triggers a java service inside content/dam/Test. Do I need to create a node using java services or simply create a node programatically?
Mehran Alfin
  • 165
  • 1
  • 4
  • 14
7
votes
1 answer

Which config is applied when number of matched run modes is the same

I am using OSGI config files to define configuration for different environments, as specified in OSGI Configuration. I have configurations for multiple run modes saved in the same repository. The documentation states "If multiple configurations…
Shawn
  • 8,374
  • 5
  • 37
  • 60
7
votes
3 answers

jcr:lastModified vs cq:lastModified

What is the significance of having 2 separate last modified dates(jcr:lastModified and cq:lastModified)? Is there a scenario where one of the dates gets updated and second one not. Cant we live with one of the last modified (maybe jcr) and use it…
Saravana Prakash
  • 1,321
  • 13
  • 25
7
votes
1 answer

Sling:alias vs vanityUrl in AEM

what is the main difference between vanity url and sling:alias? as per docs : here sling:alias – The property may be set on any resource to indicate an alias name for the resource. For example the resource /content/visitors may have the sling:alias…
Manan Kapoor
  • 675
  • 1
  • 11
  • 28
7
votes
2 answers

Why sling:OsgiConfig node not working in /etc/folder in AEM?

I have a component with properties as follows. @Component(immediate = true, metatype = true, label = "Conf Details") @Service(value = { LocationConfigurationUtil.class }) @Properties({ @Property(label = "location blueprint", name =…
Dileepa
  • 1,019
  • 1
  • 15
  • 40
7
votes
1 answer

How to use multi value(array) property in OSGi?

I have the following service: @Component( immediate = true, metatype = true) @Service @Property(name = EventConstants.EVENT_TOPIC, value = {ReplicationAction.EVENT_TOPIC}) public class MyService implements EventHandler { …
dzenisiy
  • 855
  • 10
  • 32
7
votes
3 answers

Apache FOP | custom fonts | relative URL not working

I have got configuration file to load custom fonts for Apache FOP. I am struggling to configure embed-url on server so that font url changes as per server domain. I have tried embed-url property value as: Non working…
Rupesh
  • 2,627
  • 1
  • 28
  • 42
7
votes
2 answers

maven-scr-plugin fails with SCRDescriptorException "unable to scan files ... Class file format probably not supported by ASM ?"

Using the following dependencies (amongst others, the bundle is supposed to be installed to AEM 6.1) runtime is java8 maven-scr-plugin 1.15.0 org.apache.felix.scr.annotations: 1.9.8 org.apache.felix.scr.ds-annotations: 1.2.8 I get this…
lain
  • 73
  • 1
  • 5
7
votes
2 answers

Is there a way to import/export tasks from different CQ instances?

I have two instances of CQ and between them I want to be able to import/export tasks. For example: On instance 1 I can see all tasks by going to http://instance1/libs/cq/taskmanagement/content/taskmanager.html#/tasks/Delta On instance 2 I can see…
birdy
  • 9,286
  • 24
  • 107
  • 171
7
votes
2 answers

Are there requestScope variables in Sightly?

In JSTL you can set variables in on component that are available to all other components after it in the same request. In AEM using sightly is there an equivalent way to pass data between components ? (the use case we are looking at is where we want…
James Lelyveld
  • 294
  • 1
  • 3
  • 11
7
votes
2 answers

Is it possible to recursively flush directories in the CQ5/AEM apache dispatcher?

I have a dispatcher set up with a fairly deep stats file level due to a particular project in a multi tenancy situation. What I'm hoping is for a way to be able to recursively flush directories to mimic a more shallow stats file level for the other…
Bayani Portier
  • 660
  • 8
  • 18
7
votes
3 answers

Hide Delete Button in Editbar depending on Parsys

I have a CQ5 component with a delete button in the author mode's edit view. Now there are two possible ways to include this component in a page: Statically via a cq:include tag Dynamically via a parsys component How do I configure CQ5.5 to only…
Markus Peröbner
  • 883
  • 12
  • 15