A achtrade Active Member Licensed User Longtime User Jun 19, 2015 #1 Before b4a v5.00 it was working fine. help please. Attachments error.jpg 57.1 KB · Views: 285
giga Well-Known Member Licensed User Longtime User Jun 19, 2015 #2 Just a thought Did you try it like this? B4X: Dim url As String = "http://192.168.1.10/images/2.jpg" job.Download(url) Upvote 0
Just a thought Did you try it like this? B4X: Dim url As String = "http://192.168.1.10/images/2.jpg" job.Download(url)
A achtrade Active Member Licensed User Longtime User Jun 19, 2015 #3 giga said: Just a thought Did you try it like this? B4X: Dim url As String = "http://192.168.1.10/images/2.jpg" job.Download(url) Click to expand... I did it, I got the same error Upvote 0
giga said: Just a thought Did you try it like this? B4X: Dim url As String = "http://192.168.1.10/images/2.jpg" job.Download(url) Click to expand... I did it, I got the same error
DonManfred Expert Licensed User Longtime User Jun 19, 2015 #4 B4X: Dim job As HttpJob job.Initialize("download",Me) Dim url As String = "http://192.168.1.10/images/2.jpg" job.Download(url) works fine here (the link does not work here though but it compiles fine B4A 5.02(1) and the httputils are replaced with the new provided with the okhttp library Upvote 0
B4X: Dim job As HttpJob job.Initialize("download",Me) Dim url As String = "http://192.168.1.10/images/2.jpg" job.Download(url) works fine here (the link does not work here though but it compiles fine B4A 5.02(1) and the httputils are replaced with the new provided with the okhttp library
Erel B4X founder Staff member Licensed User Longtime User Jun 19, 2015 #5 If it still doesn't work then please upload the project (File - Export as zip). Upvote 0
A achtrade Active Member Licensed User Longtime User Jun 20, 2015 #6 DonManfred said: B4X: Dim job As HttpJob job.Initialize("download",Me) Dim url As String = "http://192.168.1.10/images/2.jpg" job.Download(url) works fine here (the link does not work here though but it compiles fine B4A 5.02(1) and the httputils are replaced with the new provided with the okhttp library Click to expand... This fixed the problem. I removed the HttpJob module and I don't have this error. Last edited: Jun 20, 2015 Upvote 0
DonManfred said: B4X: Dim job As HttpJob job.Initialize("download",Me) Dim url As String = "http://192.168.1.10/images/2.jpg" job.Download(url) works fine here (the link does not work here though but it compiles fine B4A 5.02(1) and the httputils are replaced with the new provided with the okhttp library Click to expand... This fixed the problem. I removed the HttpJob module and I don't have this error.