VIVO-716 VitroHttpRequest was not properly handling the MultipartRequestWrapper
This commit is contained in:
parent
912c9e964a
commit
b1d379d03a
1 changed files with 5 additions and 3 deletions
|
@ -61,13 +61,15 @@ public class VitroHttpServlet extends HttpServlet implements MultipartRequestWra
|
|||
HttpServletRequest hreq = (HttpServletRequest) req;
|
||||
|
||||
hreq = MultipartRequestWrapper.parse(hreq, this);
|
||||
|
||||
|
||||
if (log.isTraceEnabled()) {
|
||||
dumpRequestHeaders(hreq);
|
||||
}
|
||||
|
||||
super.service(hreq, resp);
|
||||
} else {
|
||||
super.service(req, resp);
|
||||
}
|
||||
|
||||
super.service(req, resp);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue