AEM Servlet Authentication | Adobe Higher Education
Skip to main content
Murali89
Level 2
October 16, 2015
Besvarat

AEM Servlet Authentication

  • October 16, 2015
  • 1 svar
  • 1226 visningar

The usecase is to expose an AEM Servlet to the outside world, Outside world will have to hit this servlet with some input information( Suppose a node name, node data etc which should not be passed a URL parameters as they are secured) using which the servlet should update or create new content in AEM.

Some questions around this usecase are as below

How will the input information would be passed along with the request?

What would be the  authentication mechanism that has to be used ?

Det här ämnet har stängts för svar.
Bästa svar av smacdonald2008

If you want to post information to an AEM servlet - you can do that. Write an AEM Servlet that accepts either a POST or a GET. See this article as an example of a standalone Java client app posting files to an AEM Servlet:

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

(the Java client app represents the outside world)

1 svar

smacdonald2008
Level 10
October 16, 2015

If you want to post information to an AEM servlet - you can do that. Write an AEM Servlet that accepts either a POST or a GET. See this article as an example of a standalone Java client app posting files to an AEM Servlet:

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

(the Java client app represents the outside world)