In message <[EMAIL PROTECTED]>, "Chris Handorf" writes: >out.flush(); >out.close();
storeFile doesn't do anything different from when you write stuff to the output stream returned by storeFileStream. If storeFile works for you, then anything that's creating issues for you with storeFileStream is not happening inside of FTPClient. In other words, storeFile calls completePendingCommand. I don't see anything in SocketOutputStream (which is returned by storeFileStream) that may be causing a problem. My only suggestion is to remove the call to flush(). Otherwise, look at the code for storeFile and see how it differs from your code to isolate the problem. daniel --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
