Questions tagged [pushsharp]

It is a server-side library for sending Push Notifications to iOS/OSX (APNS), Android (GCM) and Windows (WNS).

PushSharp is a server-side library for sending Push Notifications to iOS/OSX (APNS), Android (GCM) and Windows (WNS).

261 questions
0
votes
1 answer

PushSharp: 'DeviceSubscriptionChanged', what should I do?

I'm using the PushSharp library I'm handling this event right now: DeviceSubscriptionChanged My question is if the notification has been sent to the new Token and the only thing I should do is to update the new token replacing the old one. Or, on…
rolo1091
  • 159
  • 1
  • 13
0
votes
0 answers

Apns feedback return incorrect device token

I bulid up a notification service with PushSharp. Recently, I got some feedback told that some device token were expired(from Device Subscription Event of PushSharp). But the app on those devices are not removed. Does anyone experience same…
KWC
  • 1
0
votes
1 answer

Do PushSharp support windows phone 8.1 push notification?

In the documentation of PushSharp (Nuget package WP8 is mentioned but not WP8.1. So PushSharp support WP8.1 or not?
ViBi
  • 515
  • 7
  • 19
0
votes
1 answer

GCM Pushing The Same Message Multiple Times (PushSharp)

Problem: I'm developing an android app with Xamarin that uses PushSharp. I am using GCM to send messages to the clients so I can update certain things if the app is open. GCM seems to be sending the same message to the same device multiple…
0
votes
2 answers

How to send multiple Push notifications at a time Using Push sharp library for Android?

I am using Push Sharp Library to send push notifications to android devices. Is there any method to broadcast all news at a single shot? instead of sending each news to each device separately? IList deviceList = new…
Avn
  • 1
  • 1
  • 3
0
votes
2 answers

Push sharp: Sending same message again and again

I am new to Push Sharp. I am trying to send messages to Android devices using Push Sharp. It works great but the problem is that Push Sharp is sending same message again and again. My Code is: AndroidPushBroker = new PushBroker(); var googleKey =…
Sumit
  • 2,932
  • 6
  • 32
  • 54
0
votes
1 answer

PushSharp "Notification send timed out" issue

I am trying to use PushSharp to send notification to my mobile devices using Google Gcm. I downloaded the sample application from github depending upon that I have written my sample code. below is my sample code. var googleKey =…
Sumit
  • 2,932
  • 6
  • 32
  • 54
0
votes
0 answers

A call to sspi failed while connecting to APN feedback service

I am trying to query Apple's feedback service in C# to get the device lists. But it throws: Unknown exception: System.ComponentModel.Win32Exception (0x80004005): An unknown error occurred while processing the certificate. The error messgage…
HSharma
  • 385
  • 2
  • 18
0
votes
1 answer

Unable to get all events when sending messages using PushSharp

I send push notifications using PushSharp. I am facing a problem while receiving the responses in the delegate methods as mentioned in Redth documentation on GitHub. So, of the say 10 GCM Registration Ids that I send a particular message, I receive…
0
votes
1 answer

Push Notifications Not Arriving

I am developing an android app using Xamarin and for push notifications I am using PushSharp. I am having some trouble with receiving push notifications while the app is not running (after a reboot for example). Here is the Service…
Amit Raz
  • 5,370
  • 8
  • 36
  • 63
0
votes
1 answer

pushSharp in vb.net for android

I follow the wiki of the PushSharp project and i write this code to send a notification to my device. https://github.com/Redth/PushSharp/wiki/How-to-Configure-&-Send-GCM-Google-Cloud-Messaging-Push-Notifications-using-PushSharp Imports…
Sagon nicolas
  • 198
  • 3
  • 23
0
votes
1 answer

Push sharp - The maximum number of Send attempts was reached

I am getting this exception: The maximum number of Send attempts to send the notification was reached! (only for apple notification) many times every day and keeps blocking the notifications for a period of time, then it continue working. I am not…
Mostafa
  • 113
  • 13
0
votes
1 answer

Specific message makes Push Sharp ApplePushService stop working

I am implementing push notifications using push sharp and I have 2 types of messages I am sending RecomendationLiked and NewFollower, I can send RecomendationLiked messages as much as I want and everything works fine but sending a single NewFollower…
Amit Raz
  • 5,370
  • 8
  • 36
  • 63
0
votes
0 answers

PushSharp for APNS works on local server but not on azure

I am using push sharp in a ASP.NET web api server. on my local computer everything works like a charm for GCM and APNS but once uploaded to azure only the GCM messages work. the APNS is not working, not throwing exceptions nothing. I have traces in…
Amit Raz
  • 5,370
  • 8
  • 36
  • 63
0
votes
1 answer

NuGet reference works in dev, fails in production

I am using PushSharp to deliver mobile push messages, it is dependent on Newtonsoft.Json.dll. I have installed Newtonsoft.Json.dll through NuGet as well because I use it for other things too. A few days ago I updated the Newtonsoft.Json.dll to v…
Mike_G
  • 16,237
  • 14
  • 70
  • 101