I am new to Azure and try to connect my existing HTML5/JS DevExtreme app to the new Azure App Service i created. That worked fine with the "old" Azure Mobile Service and i found a lot of samples for doing that. There is even no Quick Start sample in Azure.
I added the following lines of code to my app:
index.html:
<script src="https://ajax.aspnetcdn.com/ajax/mobileservices/MobileServices.Web-1.2.7.min.js"></script>
home.js:
var _client = new WindowsAzure.MobileServiceClient("https://myapp.azurewebsites.net/");
How can i do that using the new Azure App Service? I even get no error message when using the code above but data inserts in my Azure SQL database table are not working.
Thanks for helping!