Hi make an small app, my app get content over FTP, and on the finish upload content to the FTP server.
I test all and work fine over wifi, list files, list folders, download files etc, now I test it with Wifi off, not connect.
In list complete I have this:
	
	
	
	
	
	
	
		
			
			
			
			
			
		
	
	
	
		
	
	
		
	
 
This code work fine, but with mobile Network, the app say "Error en el Usuario o Clave"(Wrong password or user.)
I feel is something about the timeout.
I test the app called "AndFTP" with the same server, credential and network, and I see my carrier not blocking connection because I can list files, download and upload files with "AndFTP"
			
			I test all and work fine over wifi, list files, list folders, download files etc, now I test it with Wifi off, not connect.
In list complete I have this:
			
				B4X:
			
		
		
		Sub FTP_ListCompleted (ServerPath As String, Success As Boolean, Folders() As FTPEntry, Files() As FTPEntry)
   
    Log(ServerPath)
    If Success = False Then
        Log(LastException)
        Msgbox("Error en el Usuario o Clave", "Error")
        Log(Success)
        ProgressDialogHide
    Else
         ProgressDialogShow("Conectando al servidor....")
          StartActivity("lista_files")
    End If
   
End SubThis code work fine, but with mobile Network, the app say "Error en el Usuario o Clave"(Wrong password or user.)
I feel is something about the timeout.
I test the app called "AndFTP" with the same server, credential and network, and I see my carrier not blocking connection because I can list files, download and upload files with "AndFTP"
 
				 
 
		 
 
		 
 
		 
 
		 
 
		 
 
		 
 
		