Hi,
I am using AEM 6.3 version.
I am trying to access file componentId.jsp located in /etc/test folder from /apps/myWebsite, but I am getting file not found error.
I checked the permissions, it is present.
Could you please suggest?
I was able to do it in AEM 6.2 version.
Solved! Go to Solution.
Yes - it no longer works in 6.3.
Hi Sneha,
How are you trying to access? Can you post you code here.
Post your errors as well if you find any.
Views
Replies
Total Likes
/apps/myWebsite/components/testComponent.jsp
<%@include file="/libs/foundation/global.jsp"%>
<%@include file="/etc/test/componentId.jsp"%>
<some code>
/etc/test/componentId.jsp
<%@include file="/libs/foundation/global.jsp"%>
<some code>
I am getting
org.apache.sling.scripting.jsp.jasper.JasperException : /apps/myWebsite/components/testComponent.jsp File "/etc/test/componentId.jsp" not found
Views
Replies
Total Likes
Are you trying this from admin user ?
Views
Replies
Total Likes
yes
Views
Replies
Total Likes
Have you tried other files in other JCR locations. Try ruling out this issue is only applicable to this location.
Views
Replies
Total Likes
I tried to include <%@include file="/libs/foundation/global.jsp"%>
It is loading properly, with no error
Views
Replies
Total Likes
I will try this on my end - see if this occurs!
Views
Replies
Total Likes
Even I tried it gives not found error for some reason in 6.3.
Views
Replies
Total Likes
I was able to reproduce under etc. However - i put the JSP under apps and it worked:
Views
Replies
Total Likes
Yes. Under etc, files are not getting included. Not sure if this is any kind of restriction. I don't see any files other than clienlibs in etc too.
Views
Replies
Total Likes
I also tried the same, putting jsp under /apps works.
But can you please suggest on the files in /etc, is there any restriction?
Due to due, we will need to do changes in current implementation.
Views
Replies
Total Likes
Hi Sneha,
Its better to move out JSP out of etc and place it apps.
Move out and do a search and replace of references.
Views
Replies
Total Likes
Thank you all for your comments.
I will make the changes accordingly.
Can we say that it is a limitation in AEM 6.3?
As i already mentioned, in previous versions i was able to access jsp file from /etc folder
Views
Replies
Total Likes
Yes - it no longer works in 6.3.
I have checked it in 6.3, it doesn't work there as well. Also etc is not right place for jsp's anyhow.
I agree with susheel and scott. Together you have to keep in mind that ultimately you have to let go off JSPs. It should have been high time you rewrote everything to Touch UI and sightly.
I agree with Veena. Its better to move on to sightly rather than working on JSP's anymore.
Sightly(HTL) separates out the back end logics to java or javascript use api and front end is just to read the properties, loop the properties and display it. It looks more clean and manageable.
Views
Replies
Total Likes
Hi,
That might be the result of the introduction of a service user into the resource resolving process. In earlier versions the sling script resolver used an admin session, and you were able to include files from the complete repository. Now it is using a service user which can read only on /apps and /libs. That means that you have to place your rendering scripts (JSP, HTL) in /apps and /libs.
That's for security reasons. And I would not change the permissions of that service user!
Jörg
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies