PC SOFT

GRUPOS DE DISCUSSÃO PROFISSIONAL
WINDEVWEBDEV e WINDEV Mobile

Inicio → WINDEV Mobile 2024 → [WM26]  FTPConnect does not work with IOS!!
[WM26] FTPConnect does not work with IOS!!
Iniciado por YILMAZ, fev., 16 2022 1:01 PM - 2 respostas
Membro registado
12 mensagems
Publicado em fevereiro, 16 2022 - 1:01 PM
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
Membro registado
12 mensagems
Publicado em fevereiro, 16 2022 - 1:07 PM
Meanwhile i find out that it works well with "sftp://ftp.mydomain.com" port:4000
Why sftp works and ftp does not!
Membro registado
12 mensagems
Publicado em fevereiro, 16 2022 - 1:16 PM
SOLUTION FOUND :

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

ftpActiveMode must be included in your code.