Hi all

The action is "server to which the client is connected to append to a given
file on the other server"
The result is the new file replaced the remote file.

I think FTPClient.java  should change as follows:

public boolean remoteAppend(String filename) throws IOException
    {
        if (__dataConnectionMode == ACTIVE_REMOTE_DATA_CONNECTION_MODE ||
                __dataConnectionMode == PASSIVE_REMOTE_DATA_CONNECTION_MODE)

//            return FTPReply.isPositivePreliminary(stor(filename));
            return FTPReply.isPositivePreliminary(appe(filename));        
        return false;
    }

thanks

--Xuejie Chen


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to