[SOLVED!]
Hi guys, hope you all are doing well.
I'm experiencing an incredible delay on iOS (9.2) getting just 3 jpg images (not bigger than 300k) from my web server.
While on Android it works charmly, as expected, on iOS, the same code bring broadcasted gives a delay of more than 30 segs.
below is the code.. I call it 3 times (one per each image) as you see it has nothing especial..
is this normal? maybe a bug?
function DOWNLOAD_IMAGE_FROM_WEB(refe, nombre_imagen$)
http_id = CreateHTTPConnection()
SetHTTPHost(http_id,"**heremyhostthatworksfine**",0)
GetHTTPFile( http_id, "/pruebas/"+nombre_imagen$, nombre_imagen$ )
while GetHTTPFileComplete(http_id) = 0
log( "Downloading: " + str(GetHTTPFileProgress(http_id)) )
endwhile
CloseHTTPConnection(http_id)
DeleteHTTPConnection(http_id)
log("finalizado")
endfunction