Create Restful Service to expose pages having some taxonomy in XML format
How to Create Restful Service to expose pages having some taxonomy in XML format
How to Create Restful Service to expose pages having some taxonomy in XML format
Use querybuilder to find all pages tagged with specific tags. For eg: to find all pages tagged with "we-retail:apparel/pants"
path=/content/we-retail type=cq:Page property=jcr:content/@cq:tags property.value=we-retail:apparel/pants p.limit=-1
Refer https://sourcedcode.com/blog/aem/find-all-aem-pages-with-tags-with-query-builder
You need to write custom sling model exporter to return response in xml format. You can use javax.xml.bind.JAXBElement
https://github.com/aemgeeks1212/aemgeeks/blob/master/core/src/main/java/com/aem/geeks/core/exporter/GeeksXmlExporter.java and customize as per your requirement.
Or you can write servlet and return response to xml format.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.