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

Fanindra_Surat
Fanindra_Surat
Online

Badges

Badges
23

Accepted Solutions

Accepted Solutions
33

Likes Received

Likes Received
103

Posts

Posts
83

Discussions

Discussions
13

Questions

Questions
70

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by Fanindra_Surat
Customize the badges you want to showcase on your profile
Re: Unable to upload images in 6.5 author using dispatche... - Adobe Experience Manager 16-09-2020
@srikanthp689160 Do you see any error in the network tab when you upload the image? A 403 error like? If yes, it could be due to a dispatcher or a firewall block. Since you have already verified dispatcher rules, please look out for firewall rules.All the domain URLs are usually behind a firewall, which are governed by rules called Web Application Firewall (WAF) rules.I recommend you to verify these WAF rules and see if the AEM requests for Image upload are being blocked by one of such rule.

Views

517

Like

1

Replies

3
Re: Direct login to the aem from third-party web applicat... - Adobe Experience Manager 15-09-2020
@karthik-elumalai You can access AEM author only with a valid authentication. If not with SSO, you can use usernames and corresponding passwords to reach AEM author.Basic Auth is the simplest. Add a "Authorization" header to your request to AEM author with value "Basic Base64(uname:pwd)". Base64(uname:pwd) = Base64 encoded value of the string aem_username:password

Views

437

Likes

2

Replies

0
Re: Profile builds with Cloud Manager - Adobe Experience Manager 28-08-2020
Perfect. Thanks for your thoughts Kaushal.

Views

1.2K

Like

1

Replies

0
Re: Profile builds with Cloud Manager - Adobe Experience Manager 27-08-2020
@kaushal_mall Thanks for that, this very well explains why a profile or partial build is not an option for AEM Cloud Service. At the same time, as @Shashi_Mulugu mentioned isn't it a downside for large orgnaisations that host all their tenants on a single AEM instance and if they want to roll out minor updates to one of their tenant? Your thoughts here?

Views

1.3K

Like

1

Replies

0
Re: Profile builds with Cloud Manager - Adobe Experience Manager 27-08-2020
This is for AMS currently, but there is a planned upgrade to Cloud Service towards the year end. So, a scalable solution helps.Thanks in Advance.

Views

1.3K

Like

1

Replies

0
Re: Profile builds with Cloud Manager - Adobe Experience Manager 27-08-2020
This talks about managing builds on different environments using environment variables. But, I am looking for performing multiple profile builds based on the need to a single environment.For Ex: On Single DEV environment I want to do a build of module1 (using profile1) today, and a build of module2 (using profile2) next week.

Views

1.1K

Like

1

Replies

0
Profile builds with Cloud Manager - Adobe Experience Manager 27-08-2020
Hi All,We have different teams managing different tenants of a site, on a single AEM instance. Each team needs to do a deployment for their own tenant independently. We have an option of going with a Maven Multi module project in a Single GIT repo, where each module corresponds to a single tenant, and we can have profile based builds to do a deployment for each tenant independently. Does ACM support profile based builds? I don't seem to find any related documentation around this.Any suggestions ...

Views

1.5K

Like

1

Replies

17
Re: Not able to enable style tab for custom component - Adobe Experience Manager 25-08-2020
For Styles icon to appear on a component, you need to have a policy configured for the corresponding component in the Editable template.Please refer to "As a Template Author" section in https://docs.adobe.com/content/help/en/experience-manager-65/developing/components/style-system.html and see if you have styles configured. If they are not present, add them to enable styles for component. This article describes step by step procedure to enable the same: https://www.linkedin.com/pulse/simple-step...

Views

610

Likes

3

Replies

1
Re: Get Current User who invokes particular step in the w... - Adobe Experience Manager 24-08-2020
@JJ_JayantJain ,I understand that you need the userId of the most recent participant in your workflow. This can be fetched as follows: Step1: workflowSession.getHistory. This should return the history of workflow:List histories = workflowSession.getHistory(workItem.getWorkflow());Step2: The most recent action of the participant user should be the first item in the histories list at index 0, and this can be accessed as:HistoryItem recentHistory = histories.get(0); Step3: The recent user id can be...

Views

519

Like

1

Replies

4
Re: Getting an exception in Model. - Adobe Experience Manager 31-07-2020
@v1101 , org.apache.sling.models.factory.MissingElementException is thrown, when your Model is not able to inject the property. As per your exception trace, you have two properties artTitle and altText, which are not getting injected to the model.One possible reason could be, that the resource you are trying to adapt doesn't have these properties. To resolve the issue, you can follow either of the below:1. Mark the private variable as "@Optional"@Inject@Optional@Named("articleTitle")@SuppressWar...

Views

1.8K

Like

1

Replies

0