Hello,
we get the following warning in our logs:
(UploadProgressBar.java:106) - UploadProgressBar will not work without
an UploadWebRequest. See the javadoc for details.
We do override in the application:
@Override
protected WebRequest
newWebRequest(javax.servlet.http.HttpServletRequest servletRequest) {
return new UploadWebRequest(servletRequest);
};
When I debug UploadProgressBar I see that:
if (!(RequestCycle.get().getRequest() instanceof UploadWebRequest))
{
log.warn("UploadProgressBar will not work without an
UploadWebRequest. See the javadoc for details.");
}
However RequestCycle.get().getRequest() is returning a
UploadWebRequest$MultipartRequest instance.
What are we doing wrong or is this a bug?
thanks
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]