Diese Konversation wurde aufgrund von Inaktivität geschlossen. Bitte erstellen Sie einen neuen Post.
Level 1
Level 2
Melden Sie sich an, um alle Badges zu sehen
Diese Konversation wurde aufgrund von Inaktivität geschlossen. Bitte erstellen Sie einen neuen Post.
Dear Team,
We have come across below requirement:
1) We have HTML form with few input fields along with File upload option.
2) Once we submit form, It should call POST rest API and pass on all parameters along with file in some way and based on API response, we need to display messages.
Do we have any reference or example for this one?
Regards,
Arvind
Gelöst! Gehe zu Lösung.
Zugriffe
Antworten
Likes gesamt
Hi @arvind
Please find below steps to pass file input.
Javascript
Pass this file input in rest API ajax request as request parameter.
fileInput : $('#file-input')[0].files[0]
Backend Servlet :
RequestParameter uploadedFile = request.getRequestParameter("fileInput");
InputStream inputStream = uploadedFile.getInputStream();
Hi @arvind
Please find below steps to pass file input.
Javascript
Pass this file input in rest API ajax request as request parameter.
fileInput : $('#file-input')[0].files[0]
Backend Servlet :
RequestParameter uploadedFile = request.getRequestParameter("fileInput");
InputStream inputStream = uploadedFile.getInputStream();
Hi @arvind ,
Please follow below article to achieve your requirement.
https://helpx.adobe.com/experience-manager/using/upload_experience_manager_dam.html
Thanks,
Sandeep.
Hi @arvind ,
Here are few links which can be helpful in performing Rest POST calls with parameters and files.
https://helpx.adobe.com/experience-manager/using/uploading-files-aem1.html
Regards,
Santosh
Zugriffe
Likes
Antworten
Zugriffe
Likes
Antworten