Hi ,
I have a MVC 5 WebApplication newly build , need to access a Azure mobile services ( which is already created ).
Can any one suggest me how to go ahead on this.
I tried in below format
MobileServiceCollection<******, ******> TestItems;
MobileServiceClient MobileService = new MobileServiceClient("https://localhost:59475/");
IMobileServiceTable<<******,> getDate = MobileService.GetTable<******,>();
var list = await getDate.ToListAsync();
but i am getting error saying {"An error occurred while sending the request."}
or
{"The underlying connection was closed: An unexpected error occurred on a send."}
Any help.
Thanks.