Hi List I'm not sure if I uncovered a strange problem or something changed in
how we configure things and I missed it.
I have an applet that uploads files to a my Wicket application using http, I
have an upload handler defined like this:
mountBookmarkablePage("uploadHandler", UploadHandler.class);
And my UploadHandler class extends WebPage and looks like this:
public class UploadHandler extends SecureOneColumnBasePage // extends WebPage {
public UploadHandler() {
final HttpServletRequest request = ((WebRequest)
RequestCycle.get().getRequest()).getHttpServletRequest();
final WebResponse response = getWebRequestCycle().getWebResponse();
UploadUtils.handleUpload(request, response);
}
}
Everything works great in Wicket 1.4.1.
Then I went to upgrade to Wicket 1.4.10 and the uploading fails in all browsers
except Safari running under Mac. My upload handler codes never gets hit or
entered under 1.4.10 and nothing in the logs to indicated any problems related
to this.
Any clues?
Thanks.
Martin