PC SOFT

FORUMS PROFESSIONNELS
WINDEVWEBDEV et WINDEV Mobile

Accueil → WINDEV Mobile 2024 → [WM26]  FTPConnect does not work with IOS!!
[WM26] FTPConnect does not work with IOS!!
Débuté par YILMAZ, 16 fév. 2022 13:01 - 2 réponses
Membre enregistré
12 messages
Posté le 16 février 2022 - 13:01
Hello friends,

xnum is int = FTPConnect("ftp://ftp.mydomain.com", "adminacc", "passw", 21 )



FTP Connect does work fine when i test it with Simulation (debug on iphone)

When i test it on WMDev application, it does not work. Any solution? Does it means that it will work or not when i publish it?

Thanks
Membre enregistré
12 messages
Posté le 16 février 2022 - 13:07
Meanwhile i find out that it works well with "sftp://ftp.mydomain.com" port:4000
Why sftp works and ftp does not!
Membre enregistré
12 messages
Posté le 16 février 2022 - 13:16
SOLUTION FOUND :

xnum is int = FTPConnect("ftp://ftp.mydomain.com", "adminacc", "passw", 21 ,ftpActiveMode)

ftpActiveMode must be included in your code.