Questions tagged [azure-notificationhub]

A Microsoft Azure service which enables very-high-scale push notifications to Windows, Windows Phone, iOS, Android, and future platforms, using either native payloads or templates, and tags to target broadcasts widely or narrowly.

According to MSDN: http://msdn.microsoft.com/en-us/library/jj891130.aspx:

Notification Hubs are an Azure service which "enable you to access an easy-to-use, multiplatform, scaled-out push infrastructure, which simplifies the implementation of push notifications for both consumer and enterprise apps on mobile platforms."

Azure Notification Hubs abstracts the complexities of working with Windows Notification Services, Windows Mobile Notification Services, Apple Push Notification Services, and Google Cloud Messaging, so that a single method call can conceivably target any one device, or all of the devices, regardless of the device platform.

Marketing page with feature descriptions: http://azure.microsoft.com/en-us/services/notification-hubs/

832 questions
0
votes
1 answer

Acknowldegment and Ordering of Push Notification through Azure Notification Hub

Is there a way to track the pending notifications against a tag/registration id in NotificationHub ? Also, is there any ordering on the push notification send through NotificationHub e.g. lets say I send Command 'A' to device first and then Command…
Ashu
  • 1,703
  • 4
  • 16
  • 23
0
votes
1 answer

How to handle limited operands for windows azure service?

I am using windows azure notification hub, and i got this message: Tag expression can not contain more than 6 operands So it restricted me to only 6 tags per request , and I need to send to more than 6 tags . What can I do?
0
votes
1 answer

does azure notification hub work with raspberry pi?

I'm hoping that I can catch some smart raspberry pi hobbyist out there. I am wanting to use azure notification hub to push messages out to a raspberry pi. I'm wondering what options are available and the pro/con of each approach. I know that with…
yamspog
  • 18,173
  • 17
  • 63
  • 95
0
votes
1 answer

How to send a tile push notification for WP8 from Azure notification hub and C# application?

I am trying to send a tile notification to my WP8 app using a C# Winforms app that has Azure service bus functionality. I have set up the app with the channels needed and have successfully been able to send toast notifications to the app. However,…
B-Stewart
  • 677
  • 2
  • 10
  • 27
0
votes
2 answers

Azure Notification Hub and sending pushes to individual users?

I recently migrated an old push notification app to a new Azure Mobile Service. The MPNS API, apparently, has changed. It also automatically created a notification hub. Now instead of being able to define a clear channel URI for the message to be…
Muhwu
  • 1,151
  • 1
  • 10
  • 26
0
votes
1 answer

Azure notification hubs shared access key expiry

From the Azure Portal, on the Configure Tab for a notification hub I am able to generate a primary key and secondary key. I understand these are required to gain programmatic access to the Azure API - allowing my client app to create registrations…
Rob Bowman
  • 7,632
  • 22
  • 93
  • 200
0
votes
2 answers

Error 407 Azure notification hubs

I am trying to configure ios push notifications on Azure Notification hubs. I know I have everything done right because I have done this before and I have a checklist. But for some reason it's failing without any logical explanation. The error I get…
Obi
  • 3,091
  • 4
  • 34
  • 56
0
votes
1 answer

Issue with sending Notification to Windows Store app using Service bus

I use Notification Hubs to send Notifications to IPhone and Windows Store app. The IPhone is working perfectly fine, but there is some issue with Windows Store when sending the notification. Error: The Push Notification System handle for the…
user1932923
  • 354
  • 3
  • 18
0
votes
1 answer

Notification Hubs - Registering Existing Userbase

We are currently have our own implementation of push notifications on our server has the push notification ID's of ~2 million users. However, our system has some issues with this scale so we are considering Notification Hubs as an alternative.…
lolcodez
  • 659
  • 4
  • 9
  • 16
0
votes
1 answer

Why is TemplateName property on MpnsTemplateRegistrationDescription undocumented on MSDN?

I'm using Notification Hubs with the Windows Azure Service Bus .NET SDK version 2.2.4. I'm creating a templated MPNS registration like this: var reg = await _hub.CreateMpnsTemplateRegistrationAsync(deviceToken, MPNS_TILE_TEMPLATE); reg.TemplateName…
krisdyson
  • 3,217
  • 7
  • 43
  • 86
0
votes
2 answers

NotificationHubNotFoundException Windows Phone 8

While I´ve been trying to make the basic notification hub tutorial work on my Windows Phone solution with the following code var channel = HttpNotificationChannel.Find("MyPushChannel3"); if (channel == null) { …
iamnicoj
  • 487
  • 7
  • 13
0
votes
1 answer

Refresh device registration with Azure Notification Hub (device SDK)

I remembered during the Notification Hub preview, we used to call the method RefreshRegistration (or something similar, presumably there's different flavour of this on different device SDK), so that the device registration get refreshed in the…
P.L.
  • 1,498
  • 14
  • 18
0
votes
1 answer

InvalidDataContractException using Azure Notification Hub

I'm pretty much copying this article about using the Windows Azure Notification Hub to send push notifications: http://www.windowsazure.com/en-us/manage/services/notification-hubs/notify-users-aspnet/ Unfortunately, I'm running into an…
James Mundy
  • 4,180
  • 6
  • 35
  • 58
0
votes
1 answer

Send push notification over notification hub in azure mobile services

I'm trying to find out I way to send push notification over notifications hub in azure mobile services to windows phone users. I tried several ways like this. But there's no sent message. hub.mpns.sendToast("PushChannel", template,…
0
votes
1 answer

Azure Mobile Services scripting createNotificationHubService

I was calling a Notification Hub to push a message on insert script of a table just fine, but all of a sudden when I call: var azure = require('azure'); var hub = azure.createNotificationHubService('', ''); I get an…
Joel
  • 15,654
  • 5
  • 37
  • 60