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

Azure Notification Hub: Sending Messages to Non Registered Devices

I am using Notification Hub (inbox messages) and during my testing notice that even if we send the message to a tag which is not registered with Hub we get successful response from hub where as I was looking for an error response. Is there a way to…
Ashu
  • 1,703
  • 4
  • 16
  • 23
0
votes
1 answer

Azure Notifications to WP and iOS

My app uses an Azure Notification Hub to send messages to both Windows Phone and iOS devices. The problem is that they work if one is called, but it doesn't work if both are called. For example, If I send a message to an iOS device from my iOS…
0
votes
1 answer

azure-android notification hub valid documentation

I am having problems with the implementation of the notification hub in azure-android. I've tried various methods available on the internet, but I still have not managed to make it. There are comments in the articles that I read stating that the…
0
votes
1 answer

Azure Notification Hub - Limit on registrations

What is the limit on registrations to cause a 403 for register create/update? According to the documentation, registration create/update (http://msdn.microsoft.com/en-us/library/azure/dn223265.aspx) may return a 403. So there must be some kind of…
lpic
  • 560
  • 1
  • 7
  • 20
0
votes
1 answer

Can we connect azure event hub with azure notification hub?

I sent the message from windows form application to azure event hub. After I using data stream analytics for some real time operation and get data from event hub. After that operation I sent result message to event hub. Now I want to display the…
0
votes
1 answer

sending notifications to selected multiple users

In my app I have a user hierarchy in form of a tree of users A user can send a notification to all its subordinates, including indirect. What is the best way to achieve this with Azure Notification Hub? I see I can choose between either registration…
WriteEatSleepRepeat
  • 3,083
  • 3
  • 33
  • 56
0
votes
1 answer

azure notification hub how to send tag array

i am want to send a bunch of notification to users in rapidly changing groups. hence the broadcast model doesnt work as the updating of registration tags will be excessive. so i figured i can just send to a 'group of tag'. where each tag is a…
lpic
  • 560
  • 1
  • 7
  • 20
0
votes
1 answer

Azure Notificationhub - PN send working in sandbox but not in production

I am using Azure NotificationHub for sending PN to iOS devices. I was able to send PN successfully till I was using sandbox mode. But post moving to Production, the send is not working. Anyone facing this same issue ??
Ankit
  • 6,388
  • 8
  • 54
  • 79
0
votes
1 answer

Windows Azure notification hub registration ID and token location?

I am using Windows Azure notification hub to send notifications to the users in my Android application. I have some kind of a chat in my application, and I would like to send notifications only to specific users. I suppose that I have to specify…
0
votes
1 answer

Windows Azure notification hub, my app doesn't receive notifications

My application doesn't seem to receive the notifications i send to it, using the debug mode inside the azure site, sending test notifications, i allso tried sending the notifications through some .net code which didn't work either, seems like my…
0
votes
1 answer

Windows Store App Push Notifications via Azure Service Bus

I'm trying to send a push notification to my Windows Store App developed in my laptop using VS 2013 Express. It's been few days now but I cannot figure out why I get "The Token obtained from the Token Provider is wrong" error. I use Windows Azure…
0
votes
1 answer

azure push notification on table row update

I have a table in azure, MyTableoFruitPrices, it contains many data. This table is (clearly) of fruit prices and each user can subscribe to only one (and only one) fruit price change notification. How does one achieve this in azure ? Buzz
Bz Burr
  • 93
  • 1
  • 1
  • 8
0
votes
1 answer

Windows Azure Service Bus Notification Hub Only Receiving Portion of Notifications

I have an ASP.NET MVC Controller method similar to below: public JsonResult GenerateNotifications() { Task.Factory.StartNew(() => MyService.GenerateNotifications()); return Json(new { success = true },…
0
votes
1 answer

Azure Notification Hub Register iOS Device Always Returns Unauthorized

Early on in developing an iOS app with Xamarin, another developer and I got push notifications working for it using the Azure Messaging Component. It's a few months later now, and sometime between then and now, the push notifications stopped…
smlync
  • 369
  • 9
  • 15
0
votes
2 answers

Azure Notification Hub: notifications not showing up if sent to group

I have a trouble making notification hub to work. If I send notification to tag that has only one registration associated with it, then everything's fine. Here's source: var alert = "{\"aps\":{\"alert\":\"some message(targeted)\"},\"inAppMessage\":…