Using Image getting class com.adobe.cq.wcm.core.components.internal.link.LinkHandler | Community
Skip to main content
Level 6
October 10, 2022
Solved

Using Image getting class com.adobe.cq.wcm.core.components.internal.link.LinkHandler

  • October 10, 2022
  • 1 reply
  • 764 views

Hi, While authoring the image component in AEMaaCS, I am getting the above error (code 500). I am using the  latest SDK of cloud and core component 2.19.0 

 

Same thing is working on AEM On premise

 

The issue I found is the src pointing to content/project path instead it should point to dam. In the crx node I can view the dam path is authored 

<img src=/content/sampleproject/us/en/home/_jcr_content/root/responsivegrid/teaser.coreimg.jpeg/1665398425996/ANCImage.jpeg>

 

 

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by B_Sravan

Hi @ronnie09 ,

 

I faced this error and found that SDK comes included with core component bundle and my project is having a dependency of core components on pom.xml – which creates a redundancy of same bundle with different versions and that was the issue.

 

quick fixes:
1. Restart the core component bundle on OSGi console

2. Remove dependancy on you pom file and trigger build (if that is the issue you are facing)

 

 

1 reply

B_Sravan
Community Advisor
B_SravanCommunity AdvisorAccepted solution
Community Advisor
October 10, 2022

Hi @ronnie09 ,

 

I faced this error and found that SDK comes included with core component bundle and my project is having a dependency of core components on pom.xml – which creates a redundancy of same bundle with different versions and that was the issue.

 

quick fixes:
1. Restart the core component bundle on OSGi console

2. Remove dependancy on you pom file and trigger build (if that is the issue you are facing)

 

 

Ronnie09Author
Level 6
October 11, 2022

Hi @b_sravan 

Still same issue