Hi, I'm having difficulty learning the basics of embedding the Apache FtpServer in my app. Is there any documentation other than what's at http://mina.apache.org/ftpserver/documentation.html, or did I miss a crucial link?
I generated the javadoc from downloaded sources, and that helps a little, but still leaves many questions unanswered. For example, the 5-minute tutorial says to start the server with: FtpServerFactory serverFactory = new FtpServerFactory(); FtpServer server = serverFactory.createServer(); server.start(); But how do I use ftpd.xml file to configure the server? I'm hoping there is just some way to specify the location of ftpd.xml that I missed. I'd also like to programmatically create a user with write permission. UserFactory wants a list of Authority objects, but I've been unable to figure out how to create the Authority objects. Any pointers to basic setup info would be greatly appreciated! Thanks, Bart