Discuss (FTP), (FTP on .NET CF) and (FTPS, SFTP and SCP).
no avatar
User

pscastanhas

Posts

2

Joined

Thu Apr 28, 2011 1:46 am

SSHDisableChmodAfterPut not working

by pscastanhas » Thu Apr 28, 2011 2:18 am

I'm trying to upload files to a bank server. What's happening is that the bank moves the file as soon it is received it so edtFTPnet throws a file not found exception. I read on this forum that using SSHDisableChmodAfterPut would prevent this from happening but it doesn't seem to work. How can I stop this from happening or catch this particular exception? Code and logs follow.

Thanks in advance for any help.

ftpConnection.Protocol = EnterpriseDT.Net.Ftp.FileTransferProtocol.SFTP;

ftpConnection.AuthenticationMethod = EnterpriseDT.Net.Ssh.AuthenticationType.PublicKey;
ftpConnection.Timeout = 2000;
ftpConnection.TransferType = EnterpriseDT.Net.Ftp.FTPTransferType.ASCII;

//this may be needed b/c BOA moves the files as soon as they are received
ftpConnection.StrictReturnCodes = false;
ftpConnection.ServerValidation = EnterpriseDT.Net.Ftp.SecureFTPServerValidationType.None;

ftpConnection.Password = string.Empty; // If I leave this out, I get an InvalidOperationException that "Password property is not set".
EnterpriseDT.Util.Debug.Logger.CurrentLevel = EnterpriseDT.Util.Debug.Level.ALL;
EnterpriseDT.Util.Debug.Logger.AddAppender(new EnterpriseDT.Util.Debug.FileAppender(Utils.CurrentLogFileName() + ".ftplog"));

//upload the paymode files
ftpConnection.ServerAddress = Config.GetAppSetting("PayModeFtpUrl", "bankofamerica.com");
ftpConnection.ClientPrivateKeyFile = Config.GetAppSetting("PayModePPKFile", "");
ftpConnection.UserName = Config.GetAppSetting("PayModeUserID", "@");
ftpConnection.ServerCompatibility = EnterpriseDT.Net.Ftp.SecureFTPCompatibilityFlags.SSHDisableChmodAfterPut;
try
{
paymode_file = Config.GetAppSetting("OutgoingFilesPath", "Outgoing") + "\\"+dtstamp+"_Paymode.csv";
ftpConnection.Connect();
filename = new FileInfo(paymode_file).Name;
filedir = new FileInfo(paymode_file).Directory.Name;
ftpConnection.UploadFile(paymode_file, filename);
Utils.WriteToLog("sent " + paymode_file + " to " + ftpConnection.ServerAddress, true, true, false, Utils.LogMessageType.Message);
ftpConnection.Close();
}



DEBUG [FTPConnection] 26 Apr 2011 22:39:15.699 : Set LocalDirectory='C:\Windows\system32'
DEBUG [SecureFTPConnection] 26 Apr 2011 22:39:15.699 : Set LocalDirectory to C:\Windows\system32
DEBUG [HostNameResolver] 26 Apr 2011 22:39:15.708 : Resolving elink-sshftp.bankofamerica.com
DEBUG [HostNameResolver] 26 Apr 2011 22:39:15.809 : Obtained 1 addresses
DEBUG [HostNameResolver] 26 Apr 2011 22:39:15.809 : IP address: 171.161.160.130
DEBUG [HostNameResolver] 26 Apr 2011 22:39:15.809 : elink-sshftp.bankofamerica.com resolved to 171.161.160.130
DEBUG [SSHFTPClient] 26 Apr 2011 22:39:15.809 : Connecting directly to SFTP server 171.161.160.130:22
DEBUG [SSHFTPClient] 26 Apr 2011 22:39:15.865 : Connected successfully to SFTP server 171.161.160.130:22
DEBUG [SSHConnection] 26 Apr 2011 22:39:15.866 : Beginning protocol negotiation
DEBUG [PlainSocket] 26 Apr 2011 22:39:15.957 : RepeatCallback received 39 bytes
DEBUG [ProtocolNegotiationHandler] 26 Apr 2011 22:39:15.959 : offset=0,length=39
DEBUG [ProtocolNegotiationHandler] 26 Apr 2011 22:39:15.959 : Read: 'SSH-2.0-Connect:Enterprise_UNIX_2.4.02'
DEBUG [SSHUtil] 26 Apr 2011 22:39:15.960 : Major string = '2'
DEBUG [SSHUtil] 26 Apr 2011 22:39:15.960 : Minor string = '0'
DEBUG [SSHUtil] 26 Apr 2011 22:39:15.960 : Version 2.0
DEBUG [SSHUtil] 26 Apr 2011 22:39:15.960 : Protocol compatible
DEBUG [SSHConnection] 26 Apr 2011 22:39:15.960 : Server version=SSH-2.0-Connect:Enterprise_UNIX_2.4.02
DEBUG [SSH2Connection] 26 Apr 2011 22:39:15.962 : Timeout=2000
DEBUG [SSHConnection] 26 Apr 2011 22:39:15.963 : Sending client version=SSH-2.0-edtFTPnet/PRO-7.3.1.20
DEBUG [SSH2Connection] 26 Apr 2011 22:39:15.964 : Starting key exchange
DEBUG [AbstractKeyExchanger] 26 Apr 2011 22:39:15.966 : Sending SSH_MSG_KEXINIT
DEBUG [AbstractKeyExchanger] 26 Apr 2011 22:39:15.967 : key exchange method=diffie-hellman-group1-sha1,diffie-hellman-group14-sha1
DEBUG [AbstractKeyExchanger] 26 Apr 2011 22:39:15.968 : hostkey algorithms=ssh-dss,ssh-rsa
DEBUG [AbstractKeyExchanger] 26 Apr 2011 22:39:15.969 : ciphers=blowfish-cbc,aes128-cbc,aes192-cbc,aes256-cbc,3des-cbc,aes128-ctr,aes192-ctr,aes256-ctr
DEBUG [AbstractKeyExchanger] 26 Apr 2011 22:39:15.969 : ciphers=blowfish-cbc,aes128-cbc,aes192-cbc,aes256-cbc,3des-cbc,aes128-ctr,aes192-ctr,aes256-ctr
DEBUG [AbstractKeyExchanger] 26 Apr 2011 22:39:15.970 : MACs=hmac-sha1,hmac-md5
DEBUG [AbstractKeyExchanger] 26 Apr 2011 22:39:15.970 : MACs=hmac-sha1,hmac-md5
DEBUG [AbstractKeyExchanger] 26 Apr 2011 22:39:15.970 : compression algorithms=none,zlib
DEBUG [AbstractKeyExchanger] 26 Apr 2011 22:39:15.970 : compression algorithms=none,zlib
DEBUG [AbstractKeyExchanger] 26 Apr 2011 22:39:15.973 : Sent SSH_MSG_KEXINIT
DEBUG [ClientKeyExchanger] 26 Apr 2011 22:39:15.973 : Reading SSH_MSG_KEXINIT reply
DEBUG [SSH2Connection] 26 Apr 2011 22:39:15.974 : Waiting for packet
DEBUG [PlainSocket] 26 Apr 2011 22:39:16.020 : RepeatCallback received 288 bytes
DEBUG [SSH2Connection] 26 Apr 2011 22:39:16.024 : Packet arrived
DEBUG [AbstractKeyExchanger] 26 Apr 2011 22:39:16.027 : Processing SSH_MSG_KEXINIT reply
DEBUG [AbstractKeyExchanger] 26 Apr 2011 22:39:16.029 : Remote kex alg=diffie-hellman-group-exchange-sha1,diffie-hellman-group1-sha1
DEBUG [AbstractKeyExchanger] 26 Apr 2011 22:39:16.030 : Decided kex alg= DiffieHellmanGroup1Sha1
DEBUG [AbstractKeyExchanger] 26 Apr 2011 22:39:16.030 : Remote hostkey alg=ssh-rsa
DEBUG [AbstractKeyExchanger] 26 Apr 2011 22:39:16.030 : Decided hostkey alg= RSA
DEBUG [ClientKeyExchanger] 26 Apr 2011 22:39:16.033 : Remote Cipher CS=aes128-cbc,3des-cbc,aes192-cbc,aes256-cbc
DEBUG [ClientKeyExchanger] 26 Apr 2011 22:39:16.034 : Decided Cipher C->S= AES128
DEBUG [ClientKeyExchanger] 26 Apr 2011 22:39:16.034 : Remote Cipher SC=aes128-cbc,3des-cbc,aes192-cbc,aes256-cbc
DEBUG [ClientKeyExchanger] 26 Apr 2011 22:39:16.034 : Decided Cipher S->C= AES128
DEBUG [ClientKeyExchanger] 26 Apr 2011 22:39:16.034 : Remote MAC CS=hmac-sha1,hmac-sha1-96
DEBUG [ClientKeyExchanger] 26 Apr 2011 22:39:16.035 : Decided MAC C->S= HMACSHA1
DEBUG [ClientKeyExchanger] 26 Apr 2011 22:39:16.035 : Remote MAC SC=hmac-sha1,hmac-sha1-96
DEBUG [ClientKeyExchanger] 26 Apr 2011 22:39:16.035 : Decided MAC S->C= HMACSHA1
DEBUG [ClientKeyExchanger] 26 Apr 2011 22:39:16.035 : Remote Comp CS=none,zlib
DEBUG [ClientKeyExchanger] 26 Apr 2011 22:39:16.036 : Decided Comp C->S=None
DEBUG [ClientKeyExchanger] 26 Apr 2011 22:39:16.036 : Remote Comp SC=none,zlib
DEBUG [ClientKeyExchanger] 26 Apr 2011 22:39:16.036 : Decided Comp S->C=None
DEBUG [ClientKeyExchanger] 26 Apr 2011 22:39:16.036 : first_kex_packet_follows=False
DEBUG [AbstractKeyExchanger] 26 Apr 2011 22:39:16.036 : Processed SSH_MSG_KEXINIT reply
DEBUG [ClientKeyExchanger] 26 Apr 2011 22:39:16.037 : Sending SSH_MSG_KEXDH_INIT
DEBUG [AbstractKeyExchanger] 26 Apr 2011 22:39:16.042 : DH_PRIME_GROUP1
DEBUG [ClientKeyExchanger] 26 Apr 2011 22:39:16.076 : Sent SSH_MSG_KEXDH_INIT
DEBUG [ClientKeyExchanger] 26 Apr 2011 22:39:16.077 : Reading SSH_MSG_KEXDH_INIT reply
DEBUG [SSH2Connection] 26 Apr 2011 22:39:16.077 : Waiting for packet
DEBUG [PlainSocket] 26 Apr 2011 22:39:16.144 : RepeatCallback received 464 bytes
DEBUG [SSH2Connection] 26 Apr 2011 22:39:16.144 : Packet arrived
DEBUG [ClientKeyExchanger] 26 Apr 2011 22:39:16.147 : Processing SSH_MSG_KEXDH_INIT reply
DEBUG [AbstractKeyExchanger] 26 Apr 2011 22:39:16.147 : DH_PRIME_GROUP1
DEBUG [ClientKeyExchanger] 26 Apr 2011 22:39:16.167 : Processed SSH_MSG_KEXDH_INIT reply successfully
DEBUG [ClientKeyExchanger] 26 Apr 2011 22:39:16.168 : Sending SSH_MSG_NEWKEYS
DEBUG [ClientKeyExchanger] 26 Apr 2011 22:39:16.168 : Sent SSH_MSG_NEWKEYS
DEBUG [ClientKeyExchanger] 26 Apr 2011 22:39:16.182 : Established ciphers
DEBUG [ClientKeyExchanger] 26 Apr 2011 22:39:16.183 : Established MACs
DEBUG [ClientKeyExchanger] 26 Apr 2011 22:39:16.183 : Reading SSH_MSG_NEWKEYS reply
DEBUG [AbstractKeyExchanger] 26 Apr 2011 22:39:16.184 : Processing SSH_MSG_NEWKEYS reply
DEBUG [SSH2Connection] 26 Apr 2011 22:39:16.185 : Processed 0 queued messages
DEBUG [AbstractKeyExchanger] 26 Apr 2011 22:39:16.185 : Processed SSH_MSG_NEWKEYS reply
DEBUG [SSH2Connection] 26 Apr 2011 22:39:16.185 : Key exchange complete
DEBUG [SSH2Connection] 26 Apr 2011 22:39:16.189 : Sent SSH_MSG_SERVICE_REQUEST 'ssh-userauth'
DEBUG [SSH2Connection] 26 Apr 2011 22:39:16.189 : Waiting for packet
DEBUG [PlainSocket] 26 Apr 2011 22:39:16.270 : RepeatCallback received 52 bytes
DEBUG [SSH2Connection] 26 Apr 2011 22:39:16.278 : Packet arrived
DEBUG [SSH2Connection] 26 Apr 2011 22:39:16.280 : Starting user authentication
DEBUG [SSH2Connection] 26 Apr 2011 22:39:16.280 : Public key authentication
DEBUG [SSH2Connection] 26 Apr 2011 22:39:16.619 : Sent SSH_MSG_USERAUTH_REQUEST
DEBUG [SSH2Connection] 26 Apr 2011 22:39:16.623 : Waiting for packet
DEBUG [PlainSocket] 26 Apr 2011 22:39:16.694 : RepeatCallback received 36 bytes
DEBUG [SSH2Connection] 26 Apr 2011 22:39:16.694 : Packet arrived
DEBUG [SSH2Connection] 26 Apr 2011 22:39:16.694 : ProcessAuthenticationResponse: SSH_MSG_USERAUTH_SUCCESS
DEBUG [SSH2Connection] 26 Apr 2011 22:39:16.694 : User authentication successful
DEBUG [SSH2Connection] 26 Apr 2011 22:39:16.700 : Sent SSH_MSG_CHANNEL_OPEN
DEBUG [PlainSocket] 26 Apr 2011 22:39:16.752 : RepeatCallback received 52 bytes
DEBUG [SSH2Connection] 26 Apr 2011 22:39:16.754 : ProcessPacket pt=SSH_MSG_CHANNEL_OPEN_CONFIRMATION
DEBUG [SSH2Channel] 26 Apr 2011 22:39:16.756 : ProcessPacket: status= 2, pt=SSH_MSG_CHANNEL_OPEN_CONFIRMATION
DEBUG [SSH2Channel] 26 Apr 2011 22:39:16.757 : OpenSFTP pt=SSH_MSG_CHANNEL_OPEN_CONFIRMATION
DEBUG [ChannelDataWindow] 26 Apr 2011 22:39:16.758 : Remote window size set to 0
DEBUG [SSH2Channel] 26 Apr 2011 22:39:16.758 : Remote max packet size=32768
DEBUG [SSH2Channel] 26 Apr 2011 22:39:16.758 : Setting packet size=32768
DEBUG [SSH2Channel] 26 Apr 2011 22:39:16.758 : Sending SSH_MSG_CHANNEL_REQUEST
DEBUG [PlainSocket] 26 Apr 2011 22:39:16.812 : RepeatCallback received 88 bytes
DEBUG [SSH2Connection] 26 Apr 2011 22:39:16.812 : ProcessPacket pt=SSH_MSG_CHANNEL_WINDOW_ADJUST
DEBUG [SSH2Channel] 26 Apr 2011 22:39:16.812 : ProcessPacket: status= 1, pt=SSH_MSG_CHANNEL_WINDOW_ADJUST
DEBUG [ChannelDataWindow] 26 Apr 2011 22:39:16.812 : Increased window space by 131072 to 131072
DEBUG [SSH2Connection] 26 Apr 2011 22:39:16.812 : ProcessPacket pt=SSH_MSG_CHANNEL_SUCCESS
DEBUG [SSH2Channel] 26 Apr 2011 22:39:16.812 : ProcessPacket: status= 1, pt=SSH_MSG_CHANNEL_SUCCESS
DEBUG [SSH2Channel] 26 Apr 2011 22:39:16.812 : OpenSFTP pt=SSH_MSG_CHANNEL_SUCCESS
DEBUG [SSHFTPClient] 26 Apr 2011 22:39:16.820 : SSH channel opened
DEBUG [SSH2Channel] 26 Apr 2011 22:39:16.824 : Transmit 9 bytes
DEBUG [ChannelDataWindow] 26 Apr 2011 22:39:16.824 : Remote window size decreased to 131063
DEBUG [PlainSocket] 26 Apr 2011 22:39:16.905 : RepeatCallback received 52 bytes
DEBUG [SSH2Connection] 26 Apr 2011 22:39:16.905 : ProcessPacket pt=SSH_MSG_CHANNEL_DATA
DEBUG [SSHChannel] 26 Apr 2011 22:39:16.905 : Channel 0: sent SSH_MSG_CHANNEL_WINDOW_ADJUST
DEBUG [SSH2Channel] 26 Apr 2011 22:39:16.905 : Local window size increased to 131071
DEBUG [SFTPMessageFactory] 26 Apr 2011 22:39:16.908 : Received message (type=2,len=5)
DEBUG [SFTPMessageStore] 26 Apr 2011 22:39:16.909 : AddMessage(0) - added to store
DEBUG [SFTPSubsystem] 26 Apr 2011 22:39:16.910 : SFTP subsystem started
DEBUG [SSHFTPClient] 26 Apr 2011 22:39:16.910 : Connect() succeeded
DEBUG [SSH2Channel] 26 Apr 2011 22:39:16.911 : Transmit 14 bytes
DEBUG [ChannelDataWindow] 26 Apr 2011 22:39:16.911 : Remote window size decreased to 131049
DEBUG [PlainSocket] 26 Apr 2011 22:39:17.059 : RepeatCallback received 84 bytes
DEBUG [SSH2Connection] 26 Apr 2011 22:39:17.059 : ProcessPacket pt=SSH_MSG_CHANNEL_DATA
DEBUG [SFTPMessageFactory] 26 Apr 2011 22:39:17.059 : Received message (type=104,len=39)
DEBUG [SFTPMessage] 26 Apr 2011 22:39:17.062 : SSH_FXP_NAME: requestID=1, 1 files
DEBUG [SFTPMessageStore] 26 Apr 2011 22:39:17.070 : AddMessage(1) - added to store
DEBUG [SSHFTPClient] 26 Apr 2011 22:39:17.078 : Set transfer type = ASCII
DEBUG [FTPConnection] 26 Apr 2011 22:39:17.084 : UploadFile(C:\Program Files\Castanhas Technology Services\ePaySrv\outbound\20110426103848_Paymode.csv,20110426103848_Paymode.csv,False)
DEBUG [SSHFTPClient] 26 Apr 2011 22:39:17.090 : Put(C:\Program Files\Castanhas Technology Services\ePaySrv\outbound\20110426103848_Paymode.csv,20110426103848_Paymode.csv)
DEBUG [SSHFTPClient] 26 Apr 2011 22:39:17.091 : ResolveRemotePath('20110426103848_Paymode.csv'); [cwd='/EOLACAPI']
DEBUG [SSHFTPClient] 26 Apr 2011 22:39:17.091 : Resolved to '/EOLACAPI/20110426103848_Paymode.csv'
DEBUG [SFTPSubsystem] 26 Apr 2011 22:39:17.092 : GetAttributes(/EOLACAPI/20110426103848_Paymode.csv)
DEBUG [SSH2Channel] 26 Apr 2011 22:39:17.092 : Transmit 49 bytes
DEBUG [ChannelDataWindow] 26 Apr 2011 22:39:17.092 : Remote window size decreased to 131000
DEBUG [PlainSocket] 26 Apr 2011 22:39:17.150 : RepeatCallback received 84 bytes
DEBUG [SSH2Connection] 26 Apr 2011 22:39:17.151 : ProcessPacket pt=SSH_MSG_CHANNEL_DATA
DEBUG [SFTPMessageFactory] 26 Apr 2011 22:39:17.151 : Received message (type=101,len=29)
DEBUG [SFTPMessage] 26 Apr 2011 22:39:17.152 : ErrorCode|Status=2
DEBUG [SFTPMessageStore] 26 Apr 2011 22:39:17.152 : AddMessage(2) - added to store
DEBUG [SSHFTPClient] 26 Apr 2011 22:39:17.155 : Catching and ignoring exception: No such file : /EOLACAPI/20110426103848_Paymode.csv (code=2)
DEBUG [SSHFTPClient] 26 Apr 2011 22:39:17.161 : ResolveRemotePath('20110426103848_Paymode.csv'); [cwd='/EOLACAPI']
DEBUG [SSHFTPClient] 26 Apr 2011 22:39:17.161 : Resolved to '/EOLACAPI/20110426103848_Paymode.csv'
DEBUG [SSHFTPClient] 26 Apr 2011 22:39:17.161 : Remote path=/EOLACAPI/20110426103848_Paymode.csv
DEBUG [SSHFTPClient] 26 Apr 2011 22:39:17.161 : ResolveRemotePath('/EOLACAPI/20110426103848_Paymode.csv'); [cwd='/EOLACAPI']
DEBUG [SSHFTPClient] 26 Apr 2011 22:39:17.161 : Resolved to '/EOLACAPI/20110426103848_Paymode.csv'
DEBUG [SFTPSubsystem] 26 Apr 2011 22:39:17.161 : GetAttributes(/EOLACAPI/20110426103848_Paymode.csv)
DEBUG [SSH2Channel] 26 Apr 2011 22:39:17.161 : Transmit 49 bytes
DEBUG [ChannelDataWindow] 26 Apr 2011 22:39:17.161 : Remote window size decreased to 130951
DEBUG [PlainSocket] 26 Apr 2011 22:39:17.214 : RepeatCallback received 84 bytes
DEBUG [SSH2Connection] 26 Apr 2011 22:39:17.214 : ProcessPacket pt=SSH_MSG_CHANNEL_DATA
DEBUG [SFTPMessageFactory] 26 Apr 2011 22:39:17.214 : Received message (type=101,len=29)
DEBUG [SFTPMessage] 26 Apr 2011 22:39:17.214 : ErrorCode|Status=2
DEBUG [SFTPMessageStore] 26 Apr 2011 22:39:17.215 : AddMessage(3) - added to store
DEBUG [SSHFTPClient] 26 Apr 2011 22:39:17.215 : Catching and ignoring exception: No such file : /EOLACAPI/20110426103848_Paymode.csv (code=2)
DEBUG [SSH2Channel] 26 Apr 2011 22:39:17.217 : Transmit 61 bytes
DEBUG [ChannelDataWindow] 26 Apr 2011 22:39:17.217 : Remote window size decreased to 130890
DEBUG [PlainSocket] 26 Apr 2011 22:39:17.270 : RepeatCallback received 68 bytes
DEBUG [SSH2Connection] 26 Apr 2011 22:39:17.270 : ProcessPacket pt=SSH_MSG_CHANNEL_DATA
DEBUG [SFTPMessageFactory] 26 Apr 2011 22:39:17.270 : Received message (type=102,len=13)
DEBUG [SFTPMessageStore] 26 Apr 2011 22:39:17.270 : AddMessage(4) - added to store
DEBUG [SFTPFileStreamWriter] 26 Apr 2011 22:39:17.271 : Parallel mode = True
DEBUG [SSH2Channel] 26 Apr 2011 22:39:17.275 : Transmit 437 bytes
DEBUG [ChannelDataWindow] 26 Apr 2011 22:39:17.275 : Remote window size decreased to 130453
DEBUG [PlainSocket] 26 Apr 2011 22:39:17.385 : RepeatCallback received 68 bytes
DEBUG [SSH2Connection] 26 Apr 2011 22:39:17.385 : ProcessPacket pt=SSH_MSG_CHANNEL_DATA
DEBUG [SFTPMessageFactory] 26 Apr 2011 22:39:17.385 : Received message (type=101,len=24)
DEBUG [SFTPMessage] 26 Apr 2011 22:39:17.385 : ErrorCode|Status=0
DEBUG [SFTPMessageStore] 26 Apr 2011 22:39:17.386 : AddMessage(5) - added to store
DEBUG [SSH2Channel] 26 Apr 2011 22:39:17.388 : Transmit 17 bytes
DEBUG [ChannelDataWindow] 26 Apr 2011 22:39:17.388 : Remote window size decreased to 130436
DEBUG [PlainSocket] 26 Apr 2011 22:39:17.460 : RepeatCallback received 84 bytes
DEBUG [SSH2Connection] 26 Apr 2011 22:39:17.460 : ProcessPacket pt=SSH_MSG_CHANNEL_DATA
DEBUG [SFTPMessageFactory] 26 Apr 2011 22:39:17.460 : Received message (type=101,len=39)
DEBUG [SFTPMessage] 26 Apr 2011 22:39:17.460 : ErrorCode|Status=0
DEBUG [SFTPMessageStore] 26 Apr 2011 22:39:17.460 : AddMessage(6) - added to store
DEBUG [SSHFTPClient] 26 Apr 2011 22:39:17.463 : Size('20110426103848_Paymode.csv')
DEBUG [SSHFTPClient] 26 Apr 2011 22:39:17.463 : ResolveRemotePath('20110426103848_Paymode.csv'); [cwd='/EOLACAPI']
DEBUG [SSHFTPClient] 26 Apr 2011 22:39:17.463 : Resolved to '/EOLACAPI/20110426103848_Paymode.csv'
DEBUG [SFTPSubsystem] 26 Apr 2011 22:39:17.463 : GetAttributes(/EOLACAPI/20110426103848_Paymode.csv)
DEBUG [SSH2Channel] 26 Apr 2011 22:39:17.463 : Transmit 49 bytes
DEBUG [ChannelDataWindow] 26 Apr 2011 22:39:17.463 : Remote window size decreased to 130387
DEBUG [PlainSocket] 26 Apr 2011 22:39:17.523 : RepeatCallback received 84 bytes
DEBUG [SSH2Connection] 26 Apr 2011 22:39:17.523 : ProcessPacket pt=SSH_MSG_CHANNEL_DATA
DEBUG [SFTPMessageFactory] 26 Apr 2011 22:39:17.523 : Received message (type=101,len=29)
DEBUG [SFTPMessage] 26 Apr 2011 22:39:17.523 : ErrorCode|Status=2
DEBUG [SFTPMessageStore] 26 Apr 2011 22:39:17.523 : AddMessage(7) - added to store
DEBUG [FTPConnection] 26 Apr 2011 22:39:17.550 : Closing connection (instance=0)
DEBUG [SSHFTPClient] 26 Apr 2011 22:39:17.551 : Quit() called
DEBUG [PlainSocket] 26 Apr 2011 22:39:17.622 : RepeatCallback received 104 bytes
DEBUG [SSH2Connection] 26 Apr 2011 22:39:17.622 : ProcessPacket pt=SSH_MSG_CHANNEL_REQUEST
DEBUG [SSH2Channel] 26 Apr 2011 22:39:17.622 : SSH_MSG_CHANNEL_REQUEST: exit-status, reply=False
DEBUG [SSH2Connection] 26 Apr 2011 22:39:17.622 : ProcessPacket pt=SSH_MSG_CHANNEL_CLOSE
DEBUG [SSH2Channel] 26 Apr 2011 22:39:17.622 : Received close
DEBUG [SSH2Connection] 26 Apr 2011 22:39:17.623 : Sending SSH_MSG_DISCONNECT
DEBUG [SSH2Connection] 26 Apr 2011 22:39:17.623 : SSH_MSG_DISCONNECT sent - closing
DEBUG [SFTPChannelReceiver] 26 Apr 2011 22:39:17.623 : Channel closed
DEBUG [SFTPChannelReceiver] 26 Apr 2011 22:39:17.624 : Connection closed: (code=0)
no avatar
User

support2

Posts

3987

Joined

Tue May 18, 2004 8:30 am

Re: SSHDisableChmodAfterPut not working

by support2 » Thu Apr 28, 2011 10:40 am

I think this is actually a bug ... if you email support at enterprisedt dot com we can send you a patched build to try.
no avatar
User

pscastanhas

Posts

2

Joined

Thu Apr 28, 2011 1:46 am

by pscastanhas » Thu Apr 28, 2011 10:44 am

Thank you for your help. I already opened ticket #477621 last Saturday but hadn't heard anything yet. What do you suggest?
no avatar
User

support2

Posts

3987

Joined

Tue May 18, 2004 8:30 am

by support2 » Thu Apr 28, 2011 11:01 am

Ok so you did. For some reason we didn't receive the normal email notification from the help system. Sorry about that. Please always email support if you haven't had a reply to your ticket within 24 hours - we normally respond much sooner than that.

Anyway we'll send a link to a patched build to you ... you'll get it in the next couple of hours.

Who is online

Users browsing this forum: No registered users and 17 guests

Powered by phpBB ® | phpBB3 Style by KomiDesign
cron