FTPSImplicit and GXS - WeOnlyDo Discussion board

FTPSImplicit and GXS (wodFtpDLX / wodFtpDLX.NET)

by AndyBrunnock, Monday, August 05, 2013, 19:53 (3908 days ago)

Hi all.

Anyone using wodFtpDLX with GXS? I can connect with FileZilla (so I know the firewall works) but I keep getting a timeout connecting with FtpDLX. Code is below and then a network trace (from System.Net) follows.

Any ideas?

[code]
FtpDLX myConn = new FtpDLX();
myConn.Protocol = Protocols.FTPSimplicit;
myConn.Port = 6366;
myConn.Authentication = Authentications.Password;
myConn.Blocking = true;
myConn.Hostname = 204.90.130.215 ;
myConn.Login = ???????? ;
myConn.Password = ???????? ;
myConn.LicenseKey = ???????????? ;
myConn.LocalPath = @ C:GXSTemp ;
myConn.Passive = true;
myConn.Resume = false;
myConn.StrictHost = false;
myConn.Timeout = 30;
myConn.TransferMode = TransferModes.AscII;
myConn.DirFormat = DirFormats.GXS;

myConn.Connect();
if (myConn.LastError != null)
throw (myConn.LastError);
[/code]


Complete thread: