On Tue, Sep 15, 2009 at 5:04 PM, Praseed Thapparambil <[email protected]> wrote: > Ever since I saw Apache FTPServer, I am thinking about a different pattern. > As the customer completes uploads, an ftplet can get the file uploaded and > send it to the servlet for processing. This way there is no need for a > scheduler component in the architecture. Is this feasible?
Yeah sure, it's one of the main use cases for Ftplets. > Also, can I get access to the file uploaded in the ftplet code (override for > onUploadEnd) In the current releases, you have to concat the users current folder that you can get from the session with the path in the request (which you get in onUploadEnd). In the upcoming 1.1.0 version, we will provide this path for you. /niklas
