I'm trying to develop a Windows Phone 8 app. I've created a Web Site in a Windows Azure account which is a MVC 4 project with REST endpoints. I've got a SQL database in Azure to store data from the Azure Web Site. Ocassionaly, I want my application to send PUSH notifications to mobile phones. So I've created a Mobile Service and I've linked the SQL database with the Mobile Service's database in order to have got the same data for the web page and the service.
I though that when I send a HTTP POST to the web site, the script in the database from the Azure Mobile Service would be launched but it looks not to be true. Isn't it? Because of that, I would write in the controller of a HTTP POST endpoint the code to send the data to the Mobile Service endpoint in order to launch the Javascript code to send the Push Notification.
Is that the right approach for my goal? Is there any way for sending PUSH notifications from an Azure Web Site or it is only allowed from a Mobile Service?
My last question: Do you know any books or blogs about development in Windows Azure? On the internet there is lots of documentation but principally those are get started tutorials. I've read some books but those are really complex, boring and not really practical.
Really thanks in advance and Happy Christmas for those who are celebrating it.