/crx/de lite console cannot show node tree on version AEM6.2 | Community
Skip to main content
May 30, 2016
Solved

/crx/de lite console cannot show node tree on version AEM6.2

  • May 30, 2016
  • 5 replies
  • 4895 views

Hi Guys,
According to the experiment by me on AEM6.2 (run mode: author,crx3,crx3tar,nosamplecontent), I found there was nothing in left of screen.
Does anyone know how to display the node tree?
See attachment.
Regards.
 

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 jiaBai

Thanks for your input.

I found the configuration in url /system/console/configMgr "Apache Sling DavEx Servlet" and set /server to /crx/server.

Maybe Adobe need correct the documentation.

5 replies

kautuk_sahni
Community Manager
Community Manager
May 30, 2016

Any Browser Console errors?

Also share the Error.log of AEM instance.

 

Thanks and Regards

Kautuk Sahni

Kautuk Sahni
JK_Kendall
May 30, 2016

jiaBai wrote...

Hi Guys,
According to the experiment by me on AEM6.2 (run mode: author,crx3,crx3tar,nosamplecontent), I found there was nothing in left of screen.
Does anyone know how to display the node tree?
See attachment.
Regards.
 

 

This is as designed, since you're using nosamplecontent runmode.

Note on Running AEM in Production Ready Mode :

"Also, note that running AEM in Production Ready Mode will effectively disable access to CRXDE Lite on author instances. If you need it for debugging purposes, see Enabling CRXDE Lite in AEM."

- JK

Adobe Employee
May 30, 2016

Hi,

even though the documentation says you should edit the OSGI configuration for

  • org.apache.sling.jcr.davex.impl.servlets.SlingDavExServlet

to enable CRXDE Lite, I couldn't find the above. There is however a comamnd further down in the page which if you run, will enable CRXDE Lite to work correctly


curl -u admin:admin -F "jcr:primaryType=sling:OsgiConfig" -F "alias=/crx/server" -F "dav.create-absolute-uri=true" -F "dav.create-absolute-uri@TypeHint=Boolean" http://localhost:4502/apps/system/config/org.apache.sling.jcr.davex.impl.servlets.SlingDavExServlet

After you run the above command, the OSGI config for "SlingDavExServlet" will appear.

Regards,

Opkar

[0] https://docs.adobe.com/docs/en/aem/6-2/administer/security/security-checklist/enabling-crxde-lite.html

jiaBaiAuthorAccepted solution
May 31, 2016

Thanks for your input.

I found the configuration in url /system/console/configMgr "Apache Sling DavEx Servlet" and set /server to /crx/server.

Maybe Adobe need correct the documentation.

harishkm2k
May 9, 2017

Hello,

The curl command mentioned in https://docs.adobe.com/docs/en/aem/6-2/administer/security/security-checklist/enabling-crxde-lite.html did not work for us in AEM 6.2

We managed to enable grab the curl from Network Tab.

The following CURL works fine for us.

curl -u admin:password -v --data "apply=true&action=ajaxConfigManager&%24location=launchpad%3Aresources%2Finstall%2F0%2Forg.apache.sling.jcr.davex-1.3.4.jar&alias=%2Fcrx%2Fserver&dav.create-absolute-uri=true&dav.protectedhandlers=org.apache.jackrabbit.server.remoting.davex.AclRemoveHandler&propertylist=alias%2Cdav.create-absolute-uri%2Cdav.protectedhandlers" -X POST http://localhost:4502/system/console/configMgr/org.apache.sling.jcr.davex.impl.servlets.SlingDavExServlet

 

Thanks

Harish