Currently, for asset searches, we are utilizing the GET method (via acs-assets-sharecommons). When selecting all images and documents in bulk, the URL is generated too large:
Please provide the information on how to fix it
Views
Replies
Total Likes
Hey @adilakshmi,
The issue you're encountering with Adobe Experience Manager (AEM) when performing bulk asset searches using the GET method is due to the inherent limitation in the length of URLs in HTTP GET requests. When you select a large number of images and documents, the query string appended to the URL becomes excessively long, leading to a "URI TOO LONG" error. This problem is more apparent in cloud environments due to stricter limitations set by cloud service providers or load balancers.
Switch to POST Method:
Refine Search Queries:
Server Configuration:
Frontend Handling:
Backend Optimization:
Load Balancer / Proxy Settings:
In summary, this issue requires a careful balance between frontend optimizations, server configurations, and possibly changes in the method of data transmission from GET to POST to effectively handle large asset search queries in AEM.
Regards,
Eugene
Views
Replies
Total Likes