Expandir minha barra de realizações na Comunidade.

Submissions are now open for the 2026 Adobe Experience Maker Awards.

Mark Solution

Esta conversa foi bloqueada devido à inatividade. Crie uma nova publicação.

SOLUCIONADO

How to develop a custom API for AEM application

Avatar

Level 3

Hello,

In our application, we ingest data from multiple sources and produce various custom RSS feeds to be consumed by in-house mobile apps. As an alternative approach and for "usefulness", we need to build an API which offers sufficient options that any of the feeds can be developed using it.

What is the best way of achieving this? Please suggest some steps and reference links? Will it involve building a wrapper around JCR API?

Regards,

Mayank

1 Solução aceita

Avatar

Resposta correta de
Level 10

You can wrap the JCR API in an OSGi bundle and then call the operations exposed by the OSGi from JSPs located in your CQ site. We have many examples of how you would do this. See this article to get you started.

http://helpx.adobe.com/experience-manager/using/querying-experience-manager-data-using1.html

Hope this helps

Ver solução na publicação original

2 Respostas

Avatar

Resposta correta de
Level 10

You can wrap the JCR API in an OSGi bundle and then call the operations exposed by the OSGi from JSPs located in your CQ site. We have many examples of how you would do this. See this article to get you started.

http://helpx.adobe.com/experience-manager/using/querying-experience-manager-data-using1.html

Hope this helps

Avatar

Level 3

Thanks smacdonal2008. It helped.