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: Externalized XF URL in "View offer Content" for Multi tenant sites - Adobe Experience Manager 30-05-2022
Just updating the thread with the solution, that is setting up the etc/maps for the experience fragments paths. The Externalizer internally uses resource resolver mappings and this can be leveraged by setting up etc mapping rules which will be used to pick the relevant domains based on the content paths by the Export to Target functionality.

Views

71

Likes

0

Replies

0
Re: Externalized XF URL in "View offer Content" for Multi tenant sites - Adobe Experience Manager 19-04-2022
Hi @arunpatidar ,The Sling rewriter would work for modifying the link references in the HTML of the XF, but not the metadata of the offer created in Target. Looking for a way to intercept or manage the offer metadata. Thanks,Fani

Views

135

Like

1

Replies

0
Externalized XF URL in "View offer Content" for Multi tenant sites - Adobe Experience Manager 18-04-2022
Hi Community, Have a question on using XF's as offers in Adobe Target.When an Experience Fragment is pushed to the Adobe Target, an offer is created with the "View Offer Content" URL formed by using the "publish" domain of the Externalizer configuration. There is an option to select a specific domain from the Externalizer configuration in the Cloud Service Properties of XF's, but this doesn't seem to impact the Offer URL in Adobe Target. It is also mentioned in the adobe documentation, that the ...

Views

192

Likes

0

Replies

4
Re: Search and sort based on properties of referenced nodes - Adobe Experience Manager 24-03-2022
Hi @Seek_AEM -Do you mean, you have access to child-node-b1, child-node-b2 and want to search parent-node-a for the child nodes with propertyx-reference values uuid1 and uuid2, sorted by the name property?

Views

117

Like

1

Replies

0
Re: AEM: Using Reverse Proxy - Dispatcher - Adobe Experience Manager 24-03-2022
Hi @RamTejaReddy - I would say, maybe you can enable the debug logging and check if the path is being proxied correctly.

Views

423

Like

1

Replies

0
Re: Dispatcher enable ttl removes headers from response - Adobe Experience Manager 24-03-2022
Hi @bartek_887 - Could it be possible that the following events might have occurred in sequence:1. First time you enabled TTL, it cached the file with empty headers, as your /headers section is empty and then the subsequent requests also received the same cached header file. See the below from the documentation: The /headers property allows you to define the HTTP header types that are going to be cached by the Dispatcher. On the first request to an uncached resource, all headers matching one of ...

Views

201

Like

1

Replies

1
Re: Jenkins job to sync client multiple repositories to adobe cloud manager git repository on git changes to specific branches - Adobe Experience Manager 23-03-2022
Hi @rajashekharreddy0707 , Refer to https://experienceleague.adobe.com/docs/experience-manager-cloud-service/content/implementing/using-cloud-manager/managing-code/working-with-multiple-source-git-repositories.html?lang=en# It has a sample jenkins job that works for pushing code to adobe git.You can pass the credentials by updating the below command with corresponding values for $MAIN_USER and $MAIN_PASSWORD # Cloud Manager's Git repository export MAIN_REPOSITORY=https://$MAIN_USER:$MAIN_PASSWOR...

Views

178

Like

1

Replies

0
Re: AEM: Using Reverse Proxy - Dispatcher - Adobe Experience Manager 23-03-2022
Hi @RamTejaReddy , Can you try changing the lines ProxyPass "http://xxx/test-one" ProxyPassReverse "http://xxx/test-one"to ProxyPass "/" "http://xxx/" ProxyPassReverse "/" "http://xxx/"Since your location is already set to "/test-one", this proxy rule should apply only to the URLs with /test-one in the path. Also, For regex pattern like /test-one/(.*), you should use LocationMatch directive:Ref: https://httpd.apache.org/docs/2.4/mod/core.html#locationmatch Hope this helps! Thanks,Fani

Views

449

Like

1

Replies

2
Re: Can you customize the button label in AEM 6.5 while using mutifield - Adobe Experience Manager 23-03-2022
Hi @ajoshi84 , Refer to https://bimmisoi.blogspot.com/2020/08/colorful-multifields-in-aem.html for adding colours to the nested multi fields.For Add button label, I am afraid there is no OOTB way; but you can extend the above solution to write a custom javascript and modify the button labels using the classes 'group' and 'item' as identifiers to the parent and child multi fields. Hope this helps! Thanks,Fani

Views

157

Likes

2

Replies

0
Re: REST API Implementation in AEM - Adobe Experience Manager 23-03-2022
Hi @webdev91 , To keep it simple enough,1. For REST API consumption - you can use the HTTPClients class to generate an HTTP Client instance and you wouldn't need any external dependency, as these are part of uber jar.2. To manage credentials across different environments - Can create a custom OSGI configuration and maintain its properties (email and password) per runmode.Ref: https://www.linkedin.com/pulse/aem-how-add-osgiconfig-archetype-26-above-veena-vikramanIf storing the password in its ori...

Views

134

Like

1

Replies

1