Open GoogleCodeExporter opened 8 years ago
I see what you mean, we'll get around to fixing this.
Original comment by jond...@gmail.com
on 15 Nov 2010 at 12:08
Hello,
The Noificatin service works fine in my local machine (deployed in IIS)but when I was put the same on windows server 2008, I got the success while sending the notification but notification did not appears on device. Any help really greatful to me.
Thanking you in advance.
Original comment by shreemah...@gmail.com
on 8 Apr 2011 at 10:03
Hello, what about moving the NotificationSuccess call into the try block.
This way, there will be no send in case of exception and no re-send of the
malformed notification.
try
{
apnsStream.Write(notification.ToBytes());
string txtAlert = string.Empty;
if (this.NotificationSuccess != null)
this.NotificationSuccess(this, notification);
}
catch (BadDeviceTokenException btex)
{
if (this.BadDeviceToken != null)
this.BadDeviceToken(this, btex);
}
catch (NotificationLengthException nlex)
{
if (this.NotificationTooLong != null)
this.NotificationTooLong(this, nlex);
}
sent = true;
Original comment by sebasbo...@gmail.com
on 5 May 2011 at 1:20
Original issue reported on code.google.com by
rajes...@gmail.com
on 19 Jul 2010 at 5:38