I have written sling servlet for POST and I called through ajax and Chrome Rest Client , but it giving the 403 forbidden error, and i went through some search and find solution that need to remove the POST method from "Apache Sling Referrer Filter" and "CSRF Filter" in configuration Manager. I did same thing and it worked.
But same code is working for my friend without removing POST in configMgr,
Can you please answer what exactly issue with http POST in AEM ?
Both are using AEM 6.2
Solved! Go to Solution.
Views
Replies
Total Likes
To successfully post to an AEM servlet using AJAX - you need to use the AEM version of JQuery. This has a token that lets you perform a POST operation.
See:
https://helpx.adobe.com/experience-manager/using/custom-sling-servlets.html
in this article - notice we use:
<cq:includeClientLib categories="cq.jquery" />
Views
Replies
Total Likes
To successfully post to an AEM servlet using AJAX - you need to use the AEM version of JQuery. This has a token that lets you perform a POST operation.
See:
https://helpx.adobe.com/experience-manager/using/custom-sling-servlets.html
in this article - notice we use:
<cq:includeClientLib categories="cq.jquery" />
Views
Replies
Total Likes
Thanks Scott, It's working with AEM version of JQuery.
Regards,
Shishira
Views
Replies
Total Likes
Hello Scott. Is using cq.Jquery the only recommended approach for doing POST call in AEM. I have a requirement to write a sling servlet which supports POST request. I am looking for an alternative to using cq.Jquery to invoke the servlet.
Thanks,
Anand MN
Views
Replies
Total Likes
Hi,
The reason cq.Jquery is recommended way because it gets the CSRF-Token from AEM which you need to pass in POST request.
If you still do not want to use cq.jquery refer this Send a CSRF Token to an AEM 6.1 Servlet without using jQuery or granite.csrf.standalone clientlib Ex...
Thanks
Views
Replies
Total Likes
Why I dont want cq.Jquery is because the request will not be coming from my site. It could be a 3rd party web app.
Thanks,
Anand MN
Views
Replies
Total Likes
I think you'll need to change Sling Referrer Settings to allow request from 3rd party app..
Views
Replies
Total Likes
But , is that recommended approach for a production env?.
Views
Replies
Total Likes
You are checking this on author, right? You are right that not recommended on prod.. It can be used for checking things on local/staging
Setting Your Referrer Filter to Allow Empty
Views
Replies
Total Likes
I am looking for a recommended approach on prod publisher. I am aware of this testing approach in author.
Thanks,
Anand MN
Views
Replies
Total Likes
Hi All, Any pointers to this?.Or is it that AEM by design doesn't support POST operation.
Regards,
Anand MN
Views
Replies
Total Likes
a.mn check this:- Send a CSRF Token to an AEM 6.1 Servlet without using jQuery or granite.csrf.standalone clientlib Ex...
Views
Replies
Total Likes