Expand my Community achievements bar.

SOLVED

AEM 6.4 form submission to Rest endpoint via sling servlet

Avatar

Level 4

Scenario :

Adaptive Form-1

Dropdown(Year - Example 2018, 2019, 2020)

Dropdown(TYPE - Example AAA, BBB, CCC)

Create button

Adaptive Form-2

Label(Display form# example AAA-2018-10000)

Requirement:

On click of create button in Form-1, we have to call AEM servlet(pass Year and Type values in Query Params) which in turn invokes third party endpoint and return form# based on user dropdown selection(Year and Type) in Form-1.

Once the response code is 200 from third party end point, we have to redirect to form-2 which displays form# as label.

Please note that AEM servlet will send GET/POST request to third party endpoint and get the response. We should not call the third party endpoint directly from form submission.

Analysis

I tried to invoke AEM servlet using Submit To Rest Endpoint by adding servlet URL into URL for Post request field. However in logs, it is showing as Unauthorized 401 while calling AEM servlet. Please let me know how to implement this requirement.

1 Accepted Solution

Avatar

Correct answer by
Employee Advisor

when you are calling the servlet in AEM from your form submission, you can add the servlet as shown here from the localhost:4502/system/console/configMgr. Search for Adobe Granite CSRF Filter and add your servlet path in the excluded Paths

1860597_pastedImage_0.png

1860598_pastedImage_1.png

View solution in original post

4 Replies

Avatar

Correct answer by
Employee Advisor

when you are calling the servlet in AEM from your form submission, you can add the servlet as shown here from the localhost:4502/system/console/configMgr. Search for Adobe Granite CSRF Filter and add your servlet path in the excluded Paths

1860597_pastedImage_0.png

1860598_pastedImage_1.png

Avatar

Employee Advisor

make sure you are able to call the aem servlet from postman

Avatar

Level 1

Hi Sankar,

Did you find a solution to the problem?

Avatar

Level 4
This scenario is working on AEM publish not on AEM author.