.NET API: Unsupported URI scheme in the gateway URL. Parameter name: gatewayUrl

Greetings,
I’m trying to do a very simple query using the Desktop .NET API for .NET 4.5 in a web app.

            Backendless.InitApp(_applicationid, _dotNetKey, "v1");
            _taxistaDB = Backendless.Persistence.Of<Taxista>();
            var _dataQuery = new BackendlessDataQuery();
            _dataQuery.PageSize = 30;
            var _col = _taxistaDB.Find(_dataQuery);

When I try that, I get the error:
Unsupported URI scheme in the gateway URL. Parameter name: gatewayUrl

I referenced both suplied dll’s and also copied the weborb.config file to the root of the web app (and also tried putting it in the bin folder).

Any help would be greatly appreciated, thanks,
Geo

Could you please try to add the following after Backendless.InitApp call:

Backendless.URL = “http://api.backendless.com

Please let me know if it changes anything.

Regards,Mark

Thanks Mark, that did it!

That looks like an old .NET SDK. This issue was fixed.