Hi Santosh,If i am not wrong you are asking about calling a REST service
from CQ5. Please find the below code line which tells to call REST
service from JSP using AJAX call.$.ajax({ type: "POST", contentType:
"application/json", dataType: 'json', url: 'REST Service URL', -- Need
to be changed data: JsonJSquery, -- Need to be changed async: true,
success: function(data){ //Code to be written } });Thanks.