Explore product-specific spaces to ask questions, share insights, and learn best practices.
Recently active
Dear All, From my previous post (https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/read-the-last-name-value-from-the-testfile-xml/m-p/621772#M155908)when I am trying to get all Lastnames from the XML file , then I am getting error.When I am trying to call nodes.item(i).getTextContent()); then it is coming fine and below output is coming.//OUTPUT IS test1sonu1 , test2monu2 and test3dinu3 But when I am trying to call the below //logger.info("LASTNAME VALUE from ==== " + element.getElementsByTagName("LastName").item(i).getTextContent());Then getting Error ********************** My XML file ****************************** <?xml version="1.0" encoding="utf-8"?> <Loans> <UniqueEntry> <LastName>test1</LastName><PreferredName>sonu</PreferredName><UniqueNumber>1</UniqueNumber> </UniqueEntry> <UniqueEntry> <LastName>test2</LastName><PreferredName>m
Hi: I use the Reports Tool in /apps/acs-commons/content/reports.html to generate simple custom reports for authors. In some cases, since we have too many nodes for many different regions/variations, I ask the authors to select a region, and then I use that selection to reduce the search. In this specific example, for an FAQs report, I ask them to select the market and then use that to add an ISDESCENDANTNODE clause. Up until a couple of months ago, this report was working as expected. Now when I execute it, I get a SUCESS message, but no results I noticed that if I remove the parameter and enter the path directly in the SQL sentence, I get the results as expected Has anything changed in the way Search Parameters are referenced in the query itself? Maybe there's a new standard or configuration I need to enable? Thanks in advance for any help ou can provide!
We are using Apache sling sitemap scheduler but its not working, I am on 6.5 SP16.All on demand configuration works fine in author.I created config.publish config in author and published as below: its available in publisher.I am not seeing, that this scheduler is getting executed after every 3 mints in publisher. My custom sitemap generator is as below: import org.apache.sling.sitemap.spi.generator.ResourceTreeSitemapGenerator;import org.apache.sling.sitemap.spi.generator.SitemapGenerator;@8220494(service = SitemapGenerator.class)@Slf4jpublic class SitemapGeneratorImpl implements SitemapGenerator {@9944223 public void generate( Resource resource, String name, Sitemap sitemap, Context context) throws SitemapException { // logic to add url in sitemap } } I am running Publisher in debug mode and I am observing that sometime OOTB Produ
I'm getting a 500 error when trying to open teaser core dialog pointing at org/apache/jsp/libs/granite/ui/components/coral/foundation/form/select/render_jsp$1 as the class in question. I can see /libs/granite/ui/components/coral/foundation/form/select/render.jsp exists in CRX/DE and it's identical to the version in lower environments that doesn't have this issue. I've already tried reinstalling the core components and clearing the class loader, neither of which helped. We do have the teaser core dialog extended slightly, but we haven't modified it in a while and this issue just started popping up. Title core doesn't have this issue either despite having the exact same elements. We're using AEM 6.5.17 with core components 2.22.10.
Hello,I am not using recipient schema. I have a custom table with customer data and my target mapping is created on that table and the survey table created using target maping is 'yyy:webAppLogxxx'. I have added custom fields in this schema.I have created a survey with document as 'custom table' and library as 'yyy:webAppLogxxx'.I am able to take response from customer and it is getting stored in 'yyy:webAppLogxxx' table but I am not able to see it in response tab of the survey.I am trying to configure the custom fields in that tab using Archived fields (temp:webAppLogxxx) but no values are loaded.Can you please help me how can I bring my responses in response tab of 'Survey' webapp.
AEM Cloud Service - Delegate Annotation for Extending AEM Core component Internal Sling Models by Sreekanth Choudry Nalabotu Abstract Goal Sometimes everything provided by the Core Component Sling Models is just fine except you need a minor tweak. Say, you want alt of an image to show file name appended to alt text entered by user in dialog. Instead of creating a new sling model for the component and as you cannot extend the core component internal class com.adobe.cq.wcm.core.components.internal.models.v3.ImageImpl, create a delegate and override just the method you need eg. in this post public String getAlt() Solution 1) Add Project Lombok Maven dependency in eaem-image-comp-sling-delegate\pom.xml org.projectlombok lombok 1.18.26 compile 2) Add sling model apps.experienceaem.sites.core.models.ImageAltDelegate for the component eaem-image-comp-sling-delegate/components/image and override just the public String getAlt() method... package apps.experienceaem.sites.core.models; im
Hello, Is there any plan going on to make any major changes in the tech stack of Magento and launch version 3.X? I am interested to know about it as a developer if any such plan is there and which new tech stack will be implemented.
hello what is the best practices on providing a user access to upload unapproved assets before review and approval process without impacting or accessing other assets in production or sharing them out to brand portals? we do not have sigle sign on capbability yet.
Hello AEP Community Members, As we approach the end of the year, it's time for reflection and planning for the future. Your input is incredibly valuable to us, and we want to hear your thoughts on how we can continue to improve and grow as a community. We have got 75K+ unique visitors in our community posting 3k+ questions, discussions, replies. We have AEP experts in community leading insightful discussions and generating great content. Take a moment to retrospect AEP community by sharing what went well and what could be improved, how community is helping you in sharing your product knowledge and network by echoing your thoughts by using the format - Introduce yourself by letting us know your AEP experience, hobbies, name, what you seek in community. Community Review: We would love to hear your honest reviews and thoughts about your experience in AEP community. What aspects do you enjoy the most, and how has being a part of this community benefited you? Your feedback will help us und
Is there any legitimate reason a single IP would make hundreds of requests only for /libs/granite/csrf/token.json?I notice the IP has valid URLs as the referrer but hasn't made any requests for anything other than: /libs/granite/csrf/token.json. www-access_log:10.xxx.xx.xx x.x.x.x:56601 - - [04/Nov/2023:10:09:42 -0400] "GET /libs/granite/csrf/token.json HTTP/1.1" 200 2 "https://www.foo.com/bar/moose/fee/fi/fo/fum.html" "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36" 1013 321 I see this from time to time.Thanks!
We have a sling filter to read some page properties. We have registered with the pattern. It all works great in local AEM instance but as soon as we deploy the code to our environments (DEV, QA, PROD), the filter is not even getting called.@8220494 @SlingServletFilter( scope = {SlingServletFilterScope.REQUEST}, pattern = "/content/myapp/.*", extensions = "html" )In the local instance, the URL is "/content/myapp/us/en/home/test.html". But in the environment, the URL is "myapp.com/test" which is handled through Dispatcher.Is there anything I am missing here?Just FYI, we are on AMS.Thank you!
Hello community. I hope you are doing well. I will I have faced an issue while creating a form basing on an xsd schema. We use core components (and a template with the core page component).Although the schema is valid, Data Source is emty after creating a form.If use the same schema for creating a form with OOTB components, everything is ok.I have found follow in a log file: com.adobe.aemds.guide.service.impl.GuideModelImporterImpl Error in reading JSON Schema from path/content/dam/formsanddocuments/schemas/schema.xsd/jcr:content/renditions/originalcom.adobe.aemds.guide.service.GuideException: Error in reading JSON Schema from URIat com.adobe.aemds.guide.service.impl.GuideModelImporterImpl.importFromJSONUri(GuideModelImporterImpl.java:713) [com.adobe.aemds.guide.aemds-guide-core-impl:6.0.596]at com.adobe.aemds.guide.service.impl.GuideModelImporterImpl.importFromJSONUri(GuideModelImporterImpl.java:686) [com.adobe.aemds.guide.aemds-guide-core-impl:6.0.596]at com.adobe.aemds.gu
EdbMails simplifies Office 365 migration by automating the configuration and migration tasks. Effectively transfers the data between two Office 365 tenants. It allows you to migrate all the existing mailboxes, contacts and distribution groups, etc. from one Office 365 tenant to another. Its incremental migration feature avoids duplicates on the target mailbox.Key Features & Advantages:- It can perform as a single batch move that includes all of your mailboxes, contacts, and distribution group objects, etc.- Designed with multithreading which improves migration speed and saves lot of time.- Only the newly added items are migrated to your target server on consecutive incremental migrations which avoids duplicate items.- Seamlessly migrate your Public folder data to Office 365 with all sub-folders and folder permissions.- Easy to use user interface, automatic migration (without any Powershell commands) that reduces your time and resources.- Supported with easy to use GUI, No Powershel
Use this thread to ask any questions related to the Use Adobe Experience Platform data collection tutorial tutorial on Experience League. Experts are monitoring this thread to ensure your questions are answered.
In AEM 6.3 script tag is not getting saved when configured via RTE.Below are the observations we noticed1.If we tried giving <script></script> in source edit and come back to normal view within dialog before closing, script is removed, this is fixed by doing changes in whitespaceprocessor.js by removing script 2. On click of dialog save, values are not getting retained in jcr:content node. script tag is getting removed.And also src attribute for img tag is getting removed for few url'sbelow are the steps which helps us to solve few issues1.We overlayed /apps/cq/xssprotection/config.xml which solves issue by adding required url.2. This works only for few scenarios and fails if we are trying to use below img src tag<img class='avia_image ' src='https://s3.amazonaws.com/cision-wp-files/us/wp-content/uploads/2018/03/12155415/marketing_content_2.png' alt='' title='marketing_content_2' itemprop="contentURL" />Help is Appreciated !!Thanks
Has anyone integrated Workfront with Bynder using Workfront's custom integration subtab under the Documents subtab? You're able to add a document integration using a Base API URL and API Key. We've tried doing this with Bynder, but get a "Server Error".
Hi, In my case, I'm using Apache Sling sitemap, but it does not display the lastmod tag. Could anyone tell me what I am doing wrong so that I can fix it? I am sharing my config screenshot for reference. In the above config i tried both last modified and last replicated. Here is the document I am referring tohttps://experienceleague.adobe.com/docs/experience-manager-cloud-service/content/overview/seo-and-url-management.html?lang=en#building-an-xml-sitemap-on-aem
I've just installed AEM Workbench v6.5.0. When I open workbench, I can login to the server and retrieve the definitions without a problem. However, when I try to open a form using Designer, I get the error below. Any ides what could be causing this? Thanks
hello everyone, I configured SAML 2.0 Authentication Handler on AEM 6.5 following https://experienceleague.adobe.com/docs/experience-manager-65/administering/security/saml-2-0-authenticationhandler.html?lang=en for we-retail and i'm getting a 20.02.2023 21:32:26.547 *INFO* [qtp927739593-1970] org.apache.sling.security.impl.ReferrerFilter Rejected empty referrer header for POST request to /content/we-retail.html I see the post entering with all data and when i activate the allows empty option at apache filter, the localhost:4503/content/we-retail.html reloads multiple times. Is there any configuration that i'm missing? Thanks in advance
When I try to build the blueprint template, I get the following error. I have included the msm folder under apps and have also added the path in filter.xml. Am I missing something?
Adobe Developers Live: Content + Commerce | November 6, 2023: EMEA, LATAM and NA Register Now: https://adobe.ly/3rOtcBa Adobe Developers Live brings together content and commerce developers with diverse backgrounds and a singular purpose – to create incredible end-to-end composable experiences using Edge Delivery services in Adobe Experience Manager and Adobe Commerce. This virtual conference day features community networking and important developer updates including deep dive sessions on Edge Delivery services, headless capabilities, extensibility, composability and productivity tools—all to enable developers to build secure, high impact experiences with speed and ease. New to this edition is a Summit favorite—Hands on Labs where developers can code alongside an instructor with live Q&A. Adobe Developers Live: Content and Commerce | November 15, 2023: APAC Register Now: https://adobe.ly/3PSyBil Adobe Developers Live brings together deve
Email clicks are one the most important email engagement data points used by marketers to analyse the performance of email marketing campaigns. In combination with the number of opens (CTOR, click- through open rate) and emails sent (CTR, click- through rate), you can understand how subscribers are engaging with the content of your emails. However, keeping in mind that Apple’s Mail Privacy Protection has impacted your ability to track opens reliably, email clicks and call to actions are your best indicator and should be your priority focus amongst other data points. The rule of success seems simple: the higher your click-through rate is, the better your email performance is which indicates that subscribers are clicking on your emails. But is it really that simple? You might have come across with email campaigns that have an utterly high click-through rate when compared to the number of subscribers you have sent an email to. For example, you send an email to 10,000 subscribers
Use this thread to ask any questions related to the Experience League LIVE session titled, "Get the most from your behavioral event data in Real-Time CDP and Journey Optimizer." Experts are monitoring this thread to ensure your questions are answered. Thanks and we hope to hear from you!
When creating a Content Fragment Model there is a data type of "Content Reference". This allows the content author to browse and select content within AEM. The data type has validation options where only specific content types are allowed in the property. Make this field only accept specific content types:Content FragmentPlain TextRich TextImageAudioVideoPDF DocumentSpreadsheetPresentationArchiveMarkupIn our case we are hybrid headless so much of the content is traditional pages. We have a use-case in a content fragment where the user should only select a Page. Is there any way to do so? AEM 6.5.17AEM 6.5.18
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.