Hi @shivam-rally , What are you trying to achive here. Do you want to perform any remote operation in AEM. You can perform using postman using basic authrntication(user/password).check my comment here-https://experienceleaguecommunities.adobe.com/t5/adobe-experience-manager/create-page-site-from-a-...
Hi @Mario248 If you are not able access http://localhost/content/we-retail/us/en.html ie you dispatcher configurations are still missing something. Please check access and error logs. For dispatcher flush agent, check /allowedClients, you local IP should be allowed. Check dispatcher logs for this. ...
@jnmatthew You can get curl at high level from your browser. I prefer chrome. When you perform any operation. Go to Network tab. On your specific call. Right click and copy as curl. You will get curl with headers. Remove headers and adjust as per your need. You have to -u to add credentials. By usi...
@jnmatthew This has been tested on MAC/Terminal. May need to adjust as per OS/Terminal in case you face encoding related issue. curl -u admin:admin POST 'http://localhost:4502/apps/acs-commons/content/manage-controlled-processes/jcr:content.start.json' \
--form 'definition="URL Asset Import"' \
--fo...
Hi @iamaemuser As mention by other comment. Same query can't give you two different result. There must be some issue with your query. May you are not generating correct query in java. Try to print your executing query in LOG and see for any syntax issue with query.
@iamaemuser ,Add you raw query here. To give a proper answer, need to see query. Using p.hits=selective it gives selected properties. Check simple working query.type=cq:PageContent
path=/content/we-retail/us
p.hits=selective
p.properties=sling:resourceType jcr:title
Hi @AlexBorgo ,Store ecma script in your project specific filter. There is no fix rule but try to keep under workflow folder as /apps/<your-project>/workflow/scriptsYou have to make sure this script should has property "jcr:mixinTypes" and it's one of the value should be "mix:title". You can have ot...
Hi @akshaybhujbale , As you did not mention, what are you trying to achieve using this data. If you are trying to achieve search, Probabilty you should go for third party search like solar search. But for sake of answer. There are two ways you can do it. 1. Iterate pages/assets/users and prepared re...