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
6
votes
6 answers

Azure - Notification Hub namespace error

Im trying to set up push notifications with Azure at the moment but every time i go and try to set up a notification hub, it gives me an error saying the "Namespace already exists. Please enter a different name" Does anyone know a solution to this…
ADuggan
  • 501
  • 2
  • 8
  • 20
6
votes
3 answers

Android gradle androidDependencies command errors

So, when I run the androidDependencies command from Android Studio I get the following LONG output. What do all the ERRORS mean? It still builds successfully, should I do something about the errors and if so how do I go about cleaning them…
6
votes
1 answer

Azure Notification Hub: Why is NotificationOutcome NotificationId Property Empty?

Using a Standard Notification Hub, I want to view telemetry for a specific message using the returned NotificationId and either this rest API: https://msdn.microsoft.com/en-us/library/azure/mt608135.aspx or the NotificationHubClient…
6
votes
1 answer

import com.microsoft.windowsazure.messaging.*; is not detected. Which library should i add in android studio?

I am using azure notification hub in my android app. after following all procedures i am getting an error. import com.microsoft.windowsazure.messaging.*; is not detected. and private NotificationHub hub; is not getting declared Am i missing some…
6
votes
3 answers

Android Azure Notification hub unregister

I'm having a problem with unregistering notification hub from Azure. I'm using method unregister() like this : gcm = GoogleCloudMessaging.getInstance(getApplicationContext()); String connectionString = "xxx"; hub = new NotificationHub("xxx",…
6
votes
1 answer

Duplicate Push Notification using Azure Push Notification

We are implementing Push Notification System for iOS & Android using Azure Notification Hub. App registers every time during app launch. Devices are registered for push notification with tags identified by appname_userid. For e.g. Android_1122…
6
votes
2 answers

How to register devices to Azure Notification Hub from server side(with NodeJS sdk) ?

I am developing a windows phone 8.1 App (RT), I am trying to push notification with Azure Notification Hub. I am able to do it with the client side SDK available. But I want to do the device registration, tagging etc. from the server side. I see a…
6
votes
4 answers

Authenticated push notifications without publishing the App to the Windows Phone Store

We are currently developing a Windows Phone 8 application that won't be published to the Windows Phone Store but will be distributed through our Company Portal (Windows Intune Direct Management). Our team would like to add Push Notifications using…
5
votes
1 answer

Azure Notification Hub static instance or recreate

What is the correct way to use the c# Azure Notification Hub Client? We are using this in a very high usage server sending millions of pushes a day. I would like to know if we should recreate the NotificationHubClient every time or if we should keep…
Zapnologica
  • 22,170
  • 44
  • 158
  • 253
5
votes
1 answer

Intermittent NotificationHub delivery failures with a NotificationSystemError: "InvalidToken"

I am running into an issue with NotificationHubs where occasionally notifications silently fail to get delivered to an iOS client. My Notification Hub is setup to use token authentication with APNS (as opposed to the legacy certificate…
lehn0058
  • 19,977
  • 15
  • 69
  • 109
5
votes
2 answers

What is sb protocol and how is works internally?

I have configured a notification hub using Azure portal for implementation of push notifications for mobile apps. On navigating to the Access Policies section, I see couple of policies with names: DefaultListenSharedAccessSignature and…
santosh kumar patro
  • 7,231
  • 22
  • 71
  • 143
5
votes
1 answer

How to get registrationId from Azure notificationhub in iOS

I need registrationId from Azure. Is it possible to get the registrationId from Azure? - (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *) deviceToken { SBNotificationHub* hub =…
5
votes
2 answers

Is Azure Notification Hubs package compatible with .NET Core?

I'm working with a .NET core app, and I see some Azure packages are not compatible, for example NotificationHubs and SendGrid: Package Microsoft.Azure.NotificationHubs 1.0.5 is not compatible with netcoreapp1.0 (.NETCoreApp,Version=v1.0) The…
Primico
  • 2,143
  • 3
  • 24
  • 36
5
votes
2 answers

How to get all installations when using Azure Notification Hubs installation model?

Using NotificationHubClient I can get all registered devices using GetAllRegistrationsAsync(). But if I do not use the registration model but the installation model instead, how can I get all installations? There are methods to retrieve a specific…
Krumelur
  • 32,180
  • 27
  • 124
  • 263
5
votes
1 answer

Azure notification hubs - how to set multiple apps on the same hub

I have a situation where I need to use the same notification hub for several iOS applications. For a given tag - all the applications should receive this push. Each iOS app has a different push notification certificate, so only one of the apps…
1 2
3
55 56