On the dispatcher, the consultant is reviewing what HTTP request methods to allow to /bin/workfront-tools. The following methods are available: GET, HEAD, POST, PUT, and DELETE.
When configuring allowed HTTP request methods for /bin/workfront-tools on the AEM dispatcher, the safest and most appropriate methods to allow areGET, POST, and PUT. These methods cover the basic operations for retrieving data (GET), submitting data (POST), and updating data (PUT), which are typically required for the Enhanced Connector functionality.
GET: Used to retrieve data from the server.
POST: Used to send data to the server.
PUT: Used to update resources on the server.
Options A (DELETE) and B (HEAD, DELETE) are riskier and less commonly needed for this use case, and DELETE should be restricted unless absolutely necessary to prevent unintended deletions.
Refer toAdobe documentation on Dispatcher securityfor best practices regarding allowed HTTP methods.
Contribute your Thoughts:
Chosen Answer:
This is a voting comment (?). You can switch to a simple comment. It is better to Upvote an existing comment if you don't have anything to add.
Submit