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

Hemant_arora
Hemant_arora
Offline

Badges

Badges
29

Accepted Solutions

Accepted Solutions
54

Likes Received

Likes Received
98

Posts

Posts
291

Discussions

Discussions
96

Questions

Questions
195

Ideas

Ideas
0

Blog Posts

Blog Posts
0
Top badges earned by Hemant_arora
Customize the badges you want to showcase on your profile
Re: AEM6.4 @Reference not working in SlingServlet - Adobe Experience Manager 02-04-2019
This should work.____________________________________________________________________________________________________import org.osgi.service.metatype.annotations.AttributeDefinition;import org.osgi.service.metatype.annotations.ObjectClassDefinition;@ObjectClassDefinition(name = "My Service Configuration", description = "Service Configuration")public @interface CustomConfigIntf {@AttributeDefinition(name = "Test Namel", defaultValue="Pradeep", description = "Read my name") String name();}________...

Views

3.6K

Likes

0

Replies

0
Re: Overlaying dam gui - Adobe Experience Manager 01-04-2019
When we overlay /libs/dam/gui/coral/components/admin/contentrenderer/card/asset/asset.jspit means you are creating the same folder structure under /apps/apps/dam/gui/coral/components/admin/contentrenderer/card/asset/asset.jspso whatever changes you are making to asset.jsp should reflect after you update the file in eclipse or any other IDE and deploy the code so you need to create the same structure in your project codebase and update the filter.xmlhave u created a project using maven archetype?

Views

1.8K

Likes

0

Replies

0
Re: Overlaying dam gui - Adobe Experience Manager 01-04-2019
Hope your overlayed file is getting deployed when you are building it. Do you see the changes in file after build ?if not then you will be required to update the filter.xml by adding the /apps/dam/gui... path./apps/src/main/content\META-INF\vault\filter.xmlAdd this entry

Views

1.7K

Likes

0

Replies

0
Re: AEM6.4 @Reference not working in SlingServlet - Adobe Experience Manager 01-04-2019
In your service class MySimpleService check the @component annotation:@Component(service = MySimpleService.class, immediate = true)Go to http://localhost:4502/system/console/components and search for MySimpleService . Check the status of the service.

Views

3.6K

Likes

0

Replies

0
Re: OSGI R7 annotation - Adobe Experience Manager 28-03-2019
reordering the dependencies in core pom worked for me. I faced the same issue.CORE POM org.osgi org.osgi.service.component org.osgi org.osgi.service.component.annotations org.osgi org.osgi.service.metatype.annotations org.osgi osgi.core org.osgi osgi.cmpn org.osgi osgi.annotation .......................................PROJECT POM:add the following deps as given in articles: org.osgi org.osgi.service.component.annotations 1.4.0 provided org.osgi org.osgi.annotation 6.0.0 provided org.osg...

Views

13.8K

Likes

0

Replies

1
Re: Is watermarking reversible in AEM Assets? - Adobe Experience Manager Assets 27-03-2019
you should annotate the asset instead of watermarking it while going through a workflow.

Views

2.2K

Likes

0

Replies

0
Re: Query For Most Used Dam Assets In Content - Adobe Experience Manager Assets 27-03-2019
you can generate a report of the published assets which should give you list of used assets.http://localhost:4502/mnt/overlay/dam/gui/content/reports/reportlist.html

Views

2.8K

Likes

0

Replies

0
Re: AEM 6.4.3 | Osgi R7 | Bundle in Installed status - Adobe Experience Manager 27-03-2019
I am not able to reproduce the issue.created project using archetype 17 and deploy successfully to 6.4.3bundles are working fine.

Views

2.2K

Likes

0

Replies

0
Re: Add page properties - Adobe Experience Manager 26-03-2019
override the page component dialog that you are using in your project.add your custom tab and fields.check we retail sample code

Views

2.1K

Like

1

Replies

0
Re: How do I hide the Quick Publish and Manage Publication buttons from DAM UI - Adobe Experience Manager 26-03-2019
for asset details page : overlay /libs/dam/gui/content/assetdetails/jcr:content/actions/quickpublish and add property(boolean) granite:hidden= truesimilarly for assets.html : overlay /libs/dam/gui/content/assets/jcr:content/actions/selection/quickpublish and add property(boolean) granite:hidden= truesame can be done for the manage publication button

Views

2.6K

Likes

2

Replies

0