Introduction This is a follow up to my previous 3-post blog series on Learning Azure Notification Hubs. At the time of writing, on the free tier, there is a limit of only 500 active devices per namespace. The basic plan increases this to 200 000 devices for about $10 (USD) a month. While $10 is not… Continue reading Using Multiple Namespaces to Increase Active Devices with Azure Notification Hubs
Category: Notification Hub
Implementing Azure Notification Hubs – Part 2 (Shared and App Projects)
The complete solution for this can be found on my GitHub account. We will start work in the shared project as the classes we create here will be required by both the API and the Xamarin application projects. DTOs In the root directory of the project, create a folder called Dtos which will contain DTO classes that will be… Continue reading Implementing Azure Notification Hubs – Part 2 (Shared and App Projects)
Implementing Azure Notification Hubs – Part 1
Introduction Sending push notifications to devices is a requirement of most applications. Unfortunately implementing this is not as simple as you would expect. Azure offers a service called Notification Hubs which makes implementing this feature easier, but there is still a fair bit of manual work involved. Azure Notification Hubs offers a free tier that… Continue reading Implementing Azure Notification Hubs – Part 1
Using Fiddler to inspect HTTP traffic
I recently ran into a problem where I was trying to make REST calls to Microsoft’s Azure Notification Hub service to register new devices with a custom template registration. According to the documentation as of 2021/08/17, the following XML is required to create a template registration for Windows devices: When I used this, I got a 200 OK response from the… Continue reading Using Fiddler to inspect HTTP traffic