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?
Solved! Go to Solution.
Views
Replies
Total Likes
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
Views
Replies
Total Likes
Please provide more details.
Views
Replies
Total Likes
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.
Views
Replies
Total Likes
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
Views
Replies
Total Likes
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.
Views
Replies
Total Likes
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.
Views
Replies
Total Likes
We are using AEM 6.1 and it's happening for all the pages.
Views
Replies
Total Likes
Thank you Radha Krishna
Views
Replies
Total Likes
Were you able to resolve the issue? What have you done for resolving the issue?
Views
Replies
Total Likes
Views
Replies
Total Likes
Views
Likes
Replies