Hi,
on my local deployment I use apache file upload streaming like:
FileItemFactory fileItemFactory = new DiskFileItemFactory();
ServletFileUpload uploadHandlr = new ServletFileUpload(fileItemFactory);
List<FileItem> uploadItems = uploadHandlr.parseRequest(req);
I don't want to save the uploaded file anyhow. Just upload it and send it back to the client in order so extract some information.
Sadly it seems as if GAE does not support DiskFileItemFactory.
What's the best way to overcome this limitation, without having to rewrite the whole file upload content?
--
You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.
No comments:
Post a Comment