Here's what I'm doing.
- Install latest Azure SDK (by the date)
- Open Visual Studio 2013
- Create a new Azure Mobile App project. The simple service is created with TodoItem DataObject and 2 simple controllers - TodoItemController and ValuesController
- Do not change anything
- Start the project
The service is started and hosted in local IISExpress on url http://localhost:50993/ (the port may vary). The "This mobile app is up and running" web page is opened in the browser. But http 400 error is returned when I try to invoke some GET-actions: for example http://localhost:50993/api/values or http://localhost:50993/tables/TodoItem.
Any ideas? Is something wrong in my environment or is that me doing something wrong?
Thanks.