This was solved by the following PR: https://github.com/tadijam64/search-engines-comparison/commit/c4232b48e1ac9fc326870884d00e4960376ef14cBy checking out OSGi Components in the Web Console, I've realised there are configurations that this server is depending on that weren't active automatically. By...
Hi, I've implemented research project on using Jackrabbit Oak Lucene, Apache Solr and Elasticsearch in AEM 6.4 on We Retail project. They are all implemented inside the same project so I could measure their results. You can check this project here: https://github.com/tadijam64/search-engines-compari...
This is the correct answer:{
"selector": "user",
"scope": {
"groupName": "boots-approver",
"declaredOnly": false,
}
}that "," after the "declaredOnly": false was needed for some reason.
According to this https://jackrabbit.apache.org/api/2.8/org/apache/jackrabbit/commons/jackrabbit/user/AuthorizableQueryManager.html I've put JSON in my datasource to show me users from one group in the selectbox.This way, all works fine:{
"selector": "user",
"scope": {
"groupName": "test-approve...
I added custom dialog to the Dynamic Participant Step inside of the workflow. This dialog is shown to the user later with the option to choose which user from some specific group to choose. This group will be entered as an "argument" to the Dynamic Participant Step of the workflow. Already solved it...
I am trying to use selectdatasource (https://helpx.adobe.com/experience-manager/6-5/sites/developing/using/reference-materials/granite-ui/api/jcr_root/libs/granite/ui/components/coral/foundation/authorizable/selectdatasource/index.html ) for generating selectbox with list of users from the specific...
Is there a way to show/hide page properties or tabs based on the user group?It is also necessary to ensure that hiding or disabling of fields does not cause data to be deleted on submission of the dialog.AEM 6.5, SPA + React
So my guess was right, transitive dependencies were not included altho Transitive>true</Embed-Transitive> exists.The following is necessary when running elasticsearch as search engine on AEM the problem:<!-- Elasticsearch --> <dependency> <groupId>org.elasticsearch.client</groupId> <art...
Jackson dependencies are part of OSGi and should not be added as embed dependency. Please, correct me if I am wrong.I had a similar problem and figure out that there is already imported jackson dependency in intelliJ and I was overriding it with added jackson version.Please check External Dependenci...
Thank you for the effort, but it does not work in my case. Forbidding importing of packages that I am going to use should not fix the issue.I can not add an "elasticsearch" artifactId in <Embed-Dependency> because then build fails.Can you please try to clone my repo and try to make your changes, bec...