Creating REST web service in cq5 | Community
Skip to main content
January 8, 2016
Solved

Creating REST web service in cq5

  • January 8, 2016
  • 2 replies
  • 1180 views

Hi I want to create a REST web service which will return a json object

How can i do this in CQ?

Please guide me

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by smacdonald2008

Write a custom AEM Sling Servlet and use JSON data object to build JSON data. See this AEM Community article:

https://helpx.adobe.com/experience-manager/using/custom-sling-servlets.html

Once you have installed the OSGi bundle - other clients can invoke it using HTTP requests. 

Here is a brand new article that shows you how you can read the JCR and then convert JCR data into JSON. THis is a technique that you should know about as an AEM developer. 

https://helpx.adobe.com/experience-manager/using/quiz.html

Simply using a JSON extension on a AEM URL is not going to give you the precise JSON data that you most likely want. Its better to write app logic in an OSGi bundle that will create JSON you need. 

2 replies

Sham_HC
Level 10
January 8, 2016

   What is your use case?   By default aem is rest based & you can get json object by adding extension json however it might not work for modfying. Looking into OOB classic project task ui. It is rest web service with json for retreiva;/modification/deletion.

smacdonald2008
smacdonald2008Accepted solution
Level 10
January 22, 2016

Write a custom AEM Sling Servlet and use JSON data object to build JSON data. See this AEM Community article:

https://helpx.adobe.com/experience-manager/using/custom-sling-servlets.html

Once you have installed the OSGi bundle - other clients can invoke it using HTTP requests. 

Here is a brand new article that shows you how you can read the JCR and then convert JCR data into JSON. THis is a technique that you should know about as an AEM developer. 

https://helpx.adobe.com/experience-manager/using/quiz.html

Simply using a JSON extension on a AEM URL is not going to give you the precise JSON data that you most likely want. Its better to write app logic in an OSGi bundle that will create JSON you need.