New issue 136 by nicholas.e.m.cross: Upload Applet not working
http://code.google.com/p/open-forum/issues/detail?id=136
What steps will reproduce the problem?
1. Try to upload file to page using drag and drop applet
What is the expected output?
File uploaded as attachment to page
What do you see instead?
Upload fails silently
Issue is due to the applet trying to use PUT http method which is no logner
supported by default. Each page would require an implementation of put.sjs
to attach file.
Requires the applet to use post method as default to Action Uplaod
attachment.
Put should still be available as an option for cases where a file must be
uploaded to a particular place / name or processed on upload.