RE: File upload - as stream

2009-03-10 Thread Matt
Thanks, for some reason I missed that when looking at the apache fileupload api. -- http://restlet.tigris.org/ds/viewMessage.do?dsForumId=4447&dsMessageId=1301927

RE: File upload - as stream

2009-03-09 Thread Jerome Louvel
://www.noelios.com -Message d'origine- De : David Bordoley [mailto:bordo...@gmail.com] Envoyé : lundi 9 mars 2009 19:42 À : discuss@restlet.tigris.org Objet : Re: File upload - as stream Apache File Upload supports a stream API. (see http://commons.apache.org/fileupload/streaming.html

Re: File upload - as stream

2009-03-09 Thread David Bordoley
Apache File Upload supports a stream API. (see http://commons.apache.org/fileupload/streaming.html) You should be able to use it with RestletFileUpload. dave On Sun, Mar 8, 2009 at 10:41 AM, Matt Rutherford wrote: > Hi. > > Is there a way to receive a file element from an html form without stori

File upload - as stream

2009-03-09 Thread Matt Rutherford
Hi. Is there a way to receive a file element from an html form without storing it to disk? I will be storing the file directly into a DB so no need to have it on disk anywhere. Would be nice to just stream bytes to the LargeObject.write() Postgres JDBC method. Sorry if this is a silly question,