Have any of you deployed FTPServer to an Application Server? For example, as part of Spring?
If so, what approach do you use to have the AppServer start, stop FTPServer? To kick it off initially, did you write a shell script or batch file which calls a main() method in your code, and have that main() method instantiate FTPServer, then call its .start() method? Or did you use some other approach to programmatically start it? What entity calls FTPServer's .start() method after it has been deployed to your app server (automatically, not manually)?
