Hi @Sahana_S
Did you triedignoreClasses property from policy to ignore items in the TOC?
https://experienceleague.adobe.com/en/docs/experience-manager-core-components/using/wcm-components/tableofcontents#properties-tab
Hi @Divya_T13
You won't be able to get the workflow context in the servlet but you can check the request path in the servlet where you may utilize the workflow name/path to identofy which workflow model is invoking the servlet.
Hi @SudarshanV1
It will not work if component is embedded within another component.
In this case you need to add cq:template to parent component with content structure e.g.
https://github.com/arunpatidar02/aemaacs-aemlab/blob/master/ui.apps/src/main/content/jcr_root/apps/aemlab/oneweb/components/ta...
Hi @user26192
You can confirm with Adobe if they support localhost by default.
If not, you can configure localhost to run under one of your listed domains. For example, refer to this guide:
Localhost on HTTPS using a custom domain.
https://emmapopoola.medium.com/setting-up-a-custom-...
Hi @Shreyas_tm
Please check the cache, as the issue might be caused by outdated content cached at various levels, such as the dispatcher, CDN, or browser cache.
Hi @user26192
Here is the example of Assets Selector integration with non- adobe app
https://experienceleague.adobe.com/en/docs/experience-manager-cloud-service/content/assets/manage/asset-selector/asset-selector-integration/integrate-asset-selector-non-adobe-app
I don't think so you can use loc...
Hi @Prashardan
For a client-side solution, you can use a JavaScript library to generate Excel files directly in the browser
Create Excel Files Using JavaScript Without All the FussSheetJS (GitHub)
Implementation Steps
Fetch Data from API or AEM ServletRetrieve data using an API call or by int...
Hi @ChaithraS
Maybe you can try OR-Split with Nops process to end the workflow for else condition
OR-Split
https://experienceleague.adobe.com/en/docs/experience-manager-65/content/implementing/developing/extending-aem/extending-workflows/workflows-step-ref#or-split
https://experienceleague.adobe...
Hi @dylanmccurry
If you skip caching images, it will impact performance heavily. so reconsider caching again.
But in order to deny caching for dispatcher add a rule something like below : more info
/0005 {
/glob "/content/.*.coreimg.*.(svg|pdf)"
/type "deny"
}
to disabled CDN cache add a c...