[
https://issues.apache.org/jira/browse/WICKET-6424?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16091530#comment-16091530
]
Martin Grigorov commented on WICKET-6424:
-----------------------------------------
Please check
http://wicketinaction.com/2012/11/uploading-files-to-wicket-iresource/.
I believe you need:
{code}
// Note: since Wicket 6.18.0 you will need to call
"multiPartRequest.parseFileParts();" additionally here
Map<String, List<FileItem>> files = multiPartRequest.getFiles();
{code}
> Form data to arriving in resource on post
> -----------------------------------------
>
> Key: WICKET-6424
> URL: https://issues.apache.org/jira/browse/WICKET-6424
> Project: Wicket
> Issue Type: Bug
> Components: wicket
> Affects Versions: 7.8.0
> Environment: See attached quickstart
> Reporter: Per Newgro
> Attachments: myproject.zip
>
>
> My usecase is to send a svg to a wicket resource and get a transformed png
> back as file download. I can not use url-parameter to send the svg because
> firewall is blocking that content. So i need to send the svg data by form
> submission via post.
> My problem is, that post parameters can be found in browser request window,
> but will not arrive in resource parameters. This works by using get method,
> but this is not an option for me.
--
This message was sent by Atlassian JIRA
(v6.4.14#64029)