dibesw Active Member Licensed User Longtime User Aug 21, 2014 #1 How can I download file from Client PC? (like this) B4X: DownloadService.URL = "http://192.168.1.13/images/ppp.png" If I try this I have file not found. Which is correct istruction? THANKS.
How can I download file from Client PC? (like this) B4X: DownloadService.URL = "http://192.168.1.13/images/ppp.png" If I try this I have file not found. Which is correct istruction? THANKS.
Erel B4X founder Staff member Licensed User Longtime User Aug 21, 2014 #2 Don't use DownloadService. Use HttpUtils2 instead. If the url doesn't work then the problem is most likely on your server. You can try to access it from the device browser. Upvote 0
Don't use DownloadService. Use HttpUtils2 instead. If the url doesn't work then the problem is most likely on your server. You can try to access it from the device browser.
dibesw Active Member Licensed User Longtime User Aug 21, 2014 #3 Yes, but which is correct istruction? file://192.168.1.13/dir/ppp.png or http://192.168.1.13/dir/ppp.png or other? If I type (in web broser) file://192.168.1.13/c/amedeo/amedeo/ppp.jpg I see the image. but I use this istruction in download I have an error "not found" Last edited: Aug 21, 2014 Upvote 0
Yes, but which is correct istruction? file://192.168.1.13/dir/ppp.png or http://192.168.1.13/dir/ppp.png or other? If I type (in web broser) file://192.168.1.13/c/amedeo/amedeo/ppp.jpg I see the image. but I use this istruction in download I have an error "not found"
Erel B4X founder Staff member Licensed User Longtime User Aug 22, 2014 #4 It should be http. However you should have a http server running there and configured correctly. Upvote 0
dibesw Active Member Licensed User Longtime User Aug 22, 2014 #5 OK, I solve it using SMB library Thanks Upvote 0