Expand my Community achievements bar.

SOLVED

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

Avatar

Level 4

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.
 

1 Accepted Solution

Avatar

Correct answer by
Level 4

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.

View solution in original post

5 Replies

Avatar

Administrator

Any Browser Console errors?

Also share the Error.log of AEM instance.

 

Thanks and Regards

Kautuk Sahni



Kautuk Sahni

Avatar

Level 9

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

Avatar

Employee

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.ht...

Avatar

Correct answer by
Level 4

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.

Avatar

Level 1

Hello,

The curl command mentioned in https://docs.adobe.com/docs/en/aem/6-2/administer/security/security-checklist/enabling-crxde-lite.ht... 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.SlingDavExSe...

 

Thanks

Harish