Hi ,I am using below code to get the chidnodes of a particular page. Suppose a parent page contains more than 1000 child pages. Below method approximately taking 5 to 10 minutes to complete.JcrUtils.getChildNodes("ParentNode");Thinking of doing multi threading for iterating child pages. I read that ...
Hey Guys,Thanks for your valuable information. It was very helpful. At-last i found solution to my problem. I am connecting CQ remotely through my java code and i am not using Sling or OSGI . Because my application is not running in any of the CQ servers and it's running remotely in apache tomcat se...
I will check that . Before doing that i am trying to access tag manager api but can't get access to getTagManager method.I can't able to call get TagManager method using the JCRTAG manager resolver factory. It's throwing me error. Here is my codeJcrTagManagerFactory.getTagManager(session); //throwin...
I agree with you. But In my case i am setting value to the "cq:tags" property. whenever i am setting the values using the above code, the value becomes empty in the cq:tags property.Do we need to do in a different way to set multivalue to the property cq:tags?
Hi,I am trying to set values to one string[] multi valued property in the CQ page. i am doing it through remote java application not in CQ environment.Here is the code that i am using Value[] values = new Value[10];values[0] = session.getValueFactory().createValue("NewValue-one"); values[1] = ses...
Hi ,We have requirement to use our existing java web application to create/modify nodes , templates and pages through our java web application remotely into the AEM CRX repository. Like creating /updating nodes through cURL command. Instead of using cURL commands , we are planning to write java code...