I am hoping to use FTPlets. You launch FTPServer by running a batch file, which runs an executable Jar. But the classes used by FTPServer are all the jarred, compiled class files.
I've written a subclass of FTPlet, our own custom FTPlet, according to the FTPlet API. And now, I want that FTPlet to handle FTP requests via FTPServer. The FTPlet API says this is how FTPlets work. But I can't edit the compiled .class files (text-wise) to tell FTPServer about my FTPlet, and to instantiate an instance of the FTPlet and make calls to it. So if you need to use your own custom FTPlet with FTPServer, how do you incorporate it into the FTPServer application? Especially when that application is just jarred .class files?
