Using Backendless with Visual Studio 2017 Xamarin mobile app development -


i trying display image backendless website (where stored files backend) mobile app developing visual studio 2017 (just learning). error:

unhandled exception: system.net.webexception: timeout exceeded getting exception details

here's code detail activity in vs:

private void binddata() { ggbndnametextview.text = selectedggbnd.name; shortdescriptiontextview.text = selectedggbnd.shortdescription; descriptiontextview.text = selectedggbnd.description; pricetextview.text = "price: " + selectedggbnd.price;  var imagebitmap = imagehelper.getimagebitmapfromurl("https://api.backendless.com/d4758aef-fac2-6635-ffee-56578cc76a00/0260c596-b0bd-ae91-ffa7-25ccfb7f5a00/files/files" + selectedggbnd.imagepath + ".jpg"); ggbndimageview.setimagebitmap(imagebitmap); } 

note: link after imagehelper link of root folder backendless website, icons , images stored.

now here's part of code repository in vs:

new ggbnd() { ggbndid = 1, name = "ic-namebd", shortdescription = "description here-to later gb001", description = "detailed description here-to gb001", imagepath = "ggbnd1", available = true, preptime= 10, members = new list<string>(){"mgb01", "lmx201", "lmx202", "lmx203", "lmx09"}, price = 5000, isondemand = true }, 

the image filename "ggbnd1" uploaded in root directory/url above. thank in advance -paul


Comments

Popular posts from this blog

resizing Telegram inline keyboard -

command line - How can a Python program background itself? -

php - "cURL error 28: Resolving timed out" on Wordpress on Azure App Service on Linux -