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

Jineet_Vora
Jineet_Vora
Offline

Badges

Badges
23

Accepted Solutions

Accepted Solutions
32

Likes Received

Likes Received
63

Posts

Posts
62

Discussions

Discussions
6

Questions

Questions
56

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by Jineet_Vora
Customize the badges you want to showcase on your profile
Re: ACL Reporting - Adobe Experience Manager 01-03-2022
Hi @AEM_Dan, I don't think there is any OOTB way to fetch ACLs. You can explore the ACS Commons plugin called User Exporter here - https://adobe-consulting-services.github.io/acs-aem-commons/features/exporters/users/index.html which might be useful in pulling in the report; basically a list of users under certain groups.For ACLs probably you might have to write a custom code.

Views

185

Like

1

Replies

0
Re: Special chars in asset names - Adobe Experience Manager 22-02-2022
Hi @serenapitotti,Please refer this file for the list of illegal characters (not allowed) while uploading the assets to the AEM DAM./libs/dam/gui/coral/components/commons/fileupload/clientlibs/fileupload/js/fileupload.js- Jineet

Views

247

Likes

2

Replies

0
Re: AEM-junit for text component using textmodel - Adobe Experience Manager 22-02-2022
Hi @Babita11,I believe you are looking for Mockito's - when thenReturn function. You will have to use set as below:when(textModelObject.getText()).thenReturn("Lorem ipsum dolor sit amet.");with this you will be able to check using assertEquals as below:assertEquals("Lorem ipsum dolor sit amet.",object.getText());Hope this helps!Jineet

Views

159

Likes

3

Replies

1
Re: Play dynamic video throught js - Adobe Experience Manager 20-02-2022
Hi @odabio, are you able to play the video with OOTB Dynamic Media component by configuring the video which is uploaded to Scene7? Please try this if you haven't done already to make sure that your integration and your asset is in sync.In addition, your custom component should have a sling:resourceSuperType: dam/components/scene7/dynamicmedia property specified. Also, make sure when you refresh the page with your custom component, the pre-requisites files (viewers/presets) such as VideoViewer.js...

Views

53

Like

1

Replies

0
Re: Upload multiple certificates on AEM 6.4 publisher - Adobe Experience Manager 20-02-2022
Hi @sandhya1, if the CN which is the Common Name of the certificate is same for both the applications, then AEM will override the previously uploaded certificate and create a new certificate alias.I remember such issue which happened in one of my previous organisations I was working for and we contacted Okta consultant and they were able to resolve the issue. It is probably their certificate which needs to handle multiple apps configured on same IP/machine. Please reach out to them (if not alrea...

Views

95

Like

1

Replies

0
Re: Export asset list from Dynamic Media Classic - Adobe Experience Manager 20-02-2022
Hi @johncorcoran , I believe there is no option in Dynamic Media Classic to export the list of uploaded/published files as such. However, you can probably check this from your AEM instance by querying /content/dam/ path and checking for the metadata node having following properties:dam:scene7Domain (which will give you scene7 domain to identify if this asset was synched)dam:scene7FileStatus (to check if the status of the asset like PublishComplete, etc.)This way you will find all the paths to th...

Views

101

Like

1

Replies

0
Re: Granting Basic Data and Appropriate Applications - Adobe Experience Manager 10-02-2022
@johnledbetter250 - Can you please elaborate on what are you looking for or what the ask is?Thanks!

Views

138

Like

1

Replies

0
Re: Download Link towards Scene7 not working - Adobe Experience Manager 01-12-2020
Hello @mr-smith,The Scene7 Link which you have configured is an API link which will fetches the video based on best fit. For example if you're viewing the video in a mobile it will fetch its corresponding resolution rather than downloading a high resolution. Also, the video is generally downloaded in parts and not full at once based on scrubbing speed, buffer speed, etc. Once the video starts playing please observe the XHR entries in your browser network tab of type 'media'.You'll see something ...

Views

608

Like

1

Replies

1
Re: Private DNS behind Palo Alto is not resolving Name Se... - Adobe Experience Manager 26-11-2020
Hi @navyasriraj,This doesn't look like AEM related issue but something related to network and connectivity. Please consider reaching to your internal network team.

Views

302

Like

1

Replies

0
Re: Load a key from specific i18n Dictionary via sightly - Adobe Experience Manager 12-11-2020
Hi @Shashi_Mulugu,Per Adobe documentation it is beyond the control of developer if there is more than one same key having different values. The reason is that the JSON for i18n is compiled altogether in a single file which includes all dictionaries under /apps and /libs.So I believe there is no way to distinguish the key based on the project.https://experienceleague.adobe.com/docs/experience-manager-65/developing/components/internationalization/i18n.html?lang=en#language-dictionaries Note that y...

Views

673

Likes

2

Replies

0