Problems accessing secure server (https ) (General questions)
Hi All,
I am a bit green here, so apologies up front. I am a bit stumped. I updating a legacy ASP web app that needs to send files via FTP to GlobalScapes secure ftp server. I am using a sample for FtpDLX and am getting connection timeout issues. What I am unclear about is 1) is there something wrong with my entries and 2) does this component support https:// connections?
I have read other posts where users were having similar problems but all were left as the mod's requesting offline email and no further responses. Any help is appreciated.
Here is the sample I am using:
dim Ftp1
set Ftp1 = Server.CreateObject( WeOnlyDo.wodFtpDLXCom.1 )
Ftp1.Blocking = 1
Ftp1.Hostname = https://ftpsvr.domain.ca
Ftp1.Login = usernameHere
Ftp1.Password = passwordHere
Ftp1.Port = 4567
Ftp1.Protocol = 3
Ftp1.Timeout = 20
Ftp1.Blocking = 1
Ftp1.Connect
Ftp1.ListDir /
Response.Write(Ftp1.ListItem)
Ftp1.Disconnect