Hi,
I am trying to open AEM 6.2 in my local machine to open in production readymode. using nosamplecontent runmode.
I started AEM with below steps:
java -Denv=dev -XX:-UseSplitVerifier -XX:MaxPermSize=512M -Xmx2048M -Dsling.run.modes=author,nosamplecontent,sandbox,www01 -jar aem-quickstart-6.2.jar -gui
But as part of enabling the crxde light I need to change configuration of following component:
org.apache.sling.jcr.davex.impl.servlets.SlingDavExServlet
But I am not able to find this component in felix console. Could anyone please help ?
Solved! Go to Solution.
Views
Replies
Total Likes
Hi
Pleas have a look at the reply posted by Opkar in forum post:
// There is a comamnd further down in the documentation [0] 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.
I hope this helps.
~kautuk
Views
Replies
Total Likes
Hi, Akash
Here is the similar issue has been solved.
Thanks,
Vamsi
Views
Replies
Total Likes
Hi, Akash
At the bottom of the documentation, a curl command is provided....Try this
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
Hope this helps.
Thanks,
Vamsi
Views
Replies
Total Likes
Hi
Pleas have a look at the reply posted by Opkar in forum post:
// There is a comamnd further down in the documentation [0] 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.
I hope this helps.
~kautuk
Views
Replies
Total Likes
Hi ,
I am Installing AEM 6.2 on a windows server machine.
I was sending http post request to enable crx/de . Response body shows 200 /ok but nothing changes on web console. Also, crx remains disbaled.
parms.put("alias", "/crx/server");
parms.put("dav.create-absolute-uri", "true");
parms.put("dav.protectedhandlers", "org.apache.jackrabbit.server.remoting.davex.AclRemoveHandler");
parms.put("dav.create-absolute-uri@TypeHint=Boolean", "true");
HTTPPost.httpPost(
"http://localhost:" + "4502"
+ "/system/console/configMgr/org.apache.sling.jcr.davex.impl.servlets.SlingDavExServlet",
parms, "admin", password);
Views
Replies
Total Likes
Views
Likes
Replies