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