AEM 6.4.1.0 - Which is servlet invoked by fileupload component | Community
Skip to main content
cquser1
Level 7
April 8, 2019
Solved

AEM 6.4.1.0 - Which is servlet invoked by fileupload component

  • April 8, 2019
  • 7 replies
  • 3334 views

Hi All,

Need to know the servlet invoked by fileupload[granite/ui/components/coral/foundation/form/fileupload] component.

Any thoughts/pointers on which is the OOTB servlet invoked or pointers to find this out will be really helpful.

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by aemmarc2

To figure this out for yourself all you need to do is upload an asset, and in a parallel tab have <host>:<port>/system/console/requests open. Click the corresponding POST request (POST /content/dam.createasset.html) and you can see which servlets are used.

Answer : It's going to be : servlet com.day.cq.dam.core.impl.servlet.CreateAssetServlet

7 replies

aemmarc2Adobe EmployeeAccepted solution
Adobe Employee
April 8, 2019

To figure this out for yourself all you need to do is upload an asset, and in a parallel tab have <host>:<port>/system/console/requests open. Click the corresponding POST request (POST /content/dam.createasset.html) and you can see which servlets are used.

Answer : It's going to be : servlet com.day.cq.dam.core.impl.servlet.CreateAssetServlet

cquser1
cquser1Author
Level 7
April 9, 2019

Hi marc,

Thanks a lot for your reply.

Will check on this and revert back.

cquser1
cquser1Author
Level 7
April 9, 2019

Tried the same. Somehow, could not see that corresponding POST request.

The fileupload component is being used on page properties in custom tab.

1]Is it something like because of that it is not showing up?

2] Will there be any difference at all in the servlet that's invoked ,based on the fileupload present as part of component on page or present in page properties?

arunpatidar
Community Advisor
Community Advisor
April 9, 2019

Hi,

Can you request path as your component name with parameteres. I believe both dam.createasets.html is used when we upload images in DAM.

There may be the sling post servelt(like curl) is being used to upload image.

Arun Patidar
joerghoh
Adobe Employee
Adobe Employee
April 9, 2019

The request will show up. But as the list only holds the last 20 requests, you might want to retry the upload a few times to make it appear.

Adobe Employee
April 10, 2019

First, you need to find the request that is triggered when fileupload is used from "http://<host>:<port>/system/console/requests"

Once you have the request, use "http://<host>:<port>/system/console/servletresolver " to check which servlet gets invoked.

cquser1
cquser1Author
Level 7
April 10, 2019

Hi All,

Thank you for your reply.

Tried uploading multiple times, and tracking requests window closely. But somehow do not see related request getting listed. Guess some issue at my end.

Will go ahead and mark this as complete.