On Thu, May 28, 2009 at 9:51 PM, Samir Faci <[email protected]> wrote: > I have a basic embedded ftp server working just fine, user auth, uploading > and downloading works fine (Based on the > http://mina.apache.org/ftpserver/embedding-ftpserver-in-5-minutes.html) . > I'd like to capture the upload within my java code rather then have it > upload to a directory, I want to capture the upload as a byte stream of some > form and have my application process it rather then writing to disk. > > Is that feasible using the embedded version? I believe it can be done using > the stand-alone implementation.
It is very much feasible. My suggestion would be to create a custom file system which you application code backs, rather than a file system. /niklas
