Error when loading the AEM page | Community
Skip to main content
March 9, 2018
Solved

Error when loading the AEM page

  • March 9, 2018
  • 9 replies
  • 9411 views

com.day.cq.wcm.tags.IncludeTag Error while executing script header.jsp

org.apache.sling.api.scripting.ScriptEvaluationException:

        at org.apache.sling.scripting.core.impl.DefaultSlingScript.call(DefaultSlingScript.java:388)

        at org.apache.sling.scripting.core.impl.DefaultSlingScript.eval(DefaultSlingScript.java:171)

        at org.apache.sling.scripting.core.impl.DefaultSlingScript.service(DefaultSlingScript.java:463)

        at com.day.cq.wcm.tags.IncludeTag.includeScript(IncludeTag.java:167)

        at com.day.cq.wcm.tags.IncludeTag.doEndTag(IncludeTag.java:87)

        at org.apache.jsp.apps.ppn.components.page.productpage.body_jsp._jspx_meth_cq_005finclude_005f0(body_jsp.java:245)

        at org.apache.jsp.apps.ppn.components.page.productpage.body_jsp._jspService(body_jsp.java:178)

        at org.apache.sling.scripting.jsp.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)

        at javax.servlet.http.HttpServlet.service(HttpServlet.java:725)

        at org.apache.sling.scripting.jsp.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:502)

        at org.apache.sling.scripting.jsp.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:449)

        at org.apache.sling.scripting.jsp.JspScriptEngineFactory.callJsp(JspScriptEngineFactory.java:284)

        at org.apache.sling.scripting.jsp.JspScriptEngineFactory.access$100(JspScriptEngineFactory.java:102)

        at org.apache.sling.scripting.jsp.JspScriptEngineFactory$JspScriptEngine.eval(JspScriptEngineFactory.java:536)

Not sure how to debug this kind of issues. Looks like there is some issue with JSP include. Any idea?

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 Radha_Krishna_N

Hi,

go to http://<server:port>/system/console/fsclassloader => find apps/ppn/components/page/productpage/body.jsp => check what is on line no 245

Thanks,

Radha Krishna N

9 replies

smacdonald2008
Level 10
March 12, 2018

Please provide more details.

  • Has this always happened?
  • What AEM version are you using?
  • Does this happen for all pages?
smacdonald2008
Level 10
March 12, 2018

When building an AEM site-  build it with HTL and include the HTL components - as discussed here: Adobe Experience Manager Help | Creating your First Adobe Experience Manager 6.3 website

When you build a site this way - you will not have issues opening pages. 

Radha_Krishna_N
Radha_Krishna_NAccepted solution
Level 3
March 12, 2018

Hi,

go to http://<server:port>/system/console/fsclassloader => find apps/ppn/components/page/productpage/body.jsp => check what is on line no 245

Thanks,

Radha Krishna N

smacdonald2008
Level 10
March 12, 2018

Using body JSP is no longer recomemend - you should use body,html that uses HTL syntax:

<div data-sly-resource="${'header' @ resourceType='summit_toys/components/structure/header'}"></div>

<div data-sly-resource="${'navigation' @ resourceType='summit_toys/components/structure/navigation'}"></div>

<div data-sly-include="content.html"></div>

<div data-sly-resource="${'footer' @ resourceType='summit_toys/components/structure/footer'}"></div>

<div data-sly-resource="${'copyright' @ resourceType='summit_toys/components/structure/copyright'}"></div>

Try to build your AEM Sites using HTL as much as possible (like We Retail uses) as opposed to using JSP.

Radha_Krishna_N
Level 3
March 12, 2018

If you are using HTL, look for the error in apps/ppn/components/page/productpage/body.html where you are trying to include another resource.

March 13, 2018

We are using AEM 6.1 and it's happening for all the pages.

March 13, 2018

Thank you Radha Krishna

Level 2
May 22, 2019

Were you able to resolve the issue? What have you done for resolving the issue?

Level 5
May 31, 2020
@knstechaspect - Could you please let me know what was done to fix this issue?