Hi Francesco.

Files are usually not part of the POST but rather part of FILES. You should be 
able to aquire uploaded files in your processor like this:
[code]Map<String, Document> fileMap = new HashMap<String, Document>();
try {
        MultipartForm form = MgnlContext.getWebContext().getPostedForm();
        fileMap = form.getDocuments();
}
catch (Exception e) {
        log.error(e.getMessage());
}[/code]

Hope this helps.

Regards
Philip

-- 
Context is everything: 
http://forum.magnolia-cms.com/forum/thread.html?threadId=a040580d-4a98-4562-9136-f1b02ae1e566


----------------------------------------------------------------
For list details, see http://www.magnolia-cms.com/community/mailing-lists.html
Alternatively, use our forums: http://forum.magnolia-cms.com/
To unsubscribe, E-mail to: <[email protected]>
----------------------------------------------------------------

Reply via email to