[
https://issues.apache.org/jira/browse/WICKET-2790?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Jeremy Thomerson updated WICKET-2790:
-------------------------------------
Fix Version/s: (was: 1.4.10)
Affects Version/s: 1.4.7
> wicketTester.executeAjaxEvent method does not check if form is multiPart
> ------------------------------------------------------------------------
>
> Key: WICKET-2790
> URL: https://issues.apache.org/jira/browse/WICKET-2790
> Project: Wicket
> Issue Type: Improvement
> Affects Versions: 1.4.7
> Environment: any
> Reporter: Michał Letyński
>
> While executing wicketTester.executeAjaxEvent(butooon, "onclick")
> i get ServletRequest does not contain multipart content. One possible
> solution is to explicitly call Form.setMultipart(true), Wicket tries its best
> to auto-detect multipart forms but there are certain situation where it
> cannot.
> executeAjaxEvent method does not check if form is multiPart. To workaround
> this problem before executeAjaxEvent we can execute:
> MockHttpServletRequest servletRequest =
> wicketTester.getServletRequest();
> servletRequest.setUseMultiPartContentType(true);
> But its annoying to set this flag again and again. Could you extend
> executeAjaxEvent to check if form is multiPart ? Similar checking is already
> done in FormTester.onSubmit().
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.