notifications

Want to check Apple push notification Service on my device?

Hello friends, I have created iphone application which support Apple push notification service. I also configured the server on windows which sends my device id to apple server. I gets device ID whenever I launch application. But still i wont get any notification from apple server, where notifications were also send to apple server fr...

Android Timed Notification

I'm writing an app, that lets users subscribe to notification for TV transmissions. Currently the user can choose email, sms or push, but it all feels a bit overkill for a simple timed notification. I wonder if I can tell Android to simply "show this Notification at 11:30"? ...

sms notification

hi all, I am a new iphone application developer. i am making an application which requires an incoming message notification even if the application is closed. can anybody tell me how to do that... Thanks Rachit Taneja ...

What encoding is the device token for APNs in?

Hey everyone, Is it possible to get the Device Token returned from the application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken method? Since I'm not very good at PHP, I'd like for my user to manually enter the token into a program on their computer that is going to be used to send ...

When I call Toast from inside a service -a new tab with the message "Source not found" and "Timer.class" in tab title shows up

Hello, I am using Eclipse and running the App in debug mode. I have a class - AAStartsHere, derived from TabActivity. This derived class launches a service (AAservice). AAService setups a Timer/TimerTask AACallback. From inside this callback I setup a Toast using Notification. When AAcallback calls the Toast, the parameters passed to Toa...

iPhone UI Design: Okay button or no okay button

I am compulsive and like visually clean designs. Theres a pop up in my app that tells the user that there's an error. I made a clear button over the entire pop up (about 200x100 px) so the user can just touch the notification to dismiss it. But i'm afraid the user might not know that you can just touch the pop up to dissmiss and woul...

How can I display a banner on a web page to notify the logged in user they have a new message?

I've been tasked with adding functionality to an existing ASP.net Form Application. Users are authenticated when they log in. I've been asked to program the application so that when the user logs in, they see a special message notifying them that they have a new message(s). I think that StackOverflow implements this functionality extr...

Absolute GMT date on iPhone

I'm trying to get a date that represents noon GMT for a recurring local notification. I need this local notification to fire at the exact moment to anyone using the app. So far, I'm trying this: NSCalendar *calendar = [NSCalendar currentCalendar]; NSDateComponents *dateComps = [[NSDateComponents alloc] init]; [dateComps setHour:12]; [...

Understanding deadlocks with SQL Server query notifications

Hi I'm running into trouble with Query Notifications on SQL Server 2008 sp1. I have a table _sys_Events that multiple writers write entries into, and multiple readers perform SELECT statements with Query Notification to get latest entries immediately (this is done through .Net System.Data.SqlClient.SqlDependency class). Our database is ...

Setting sounds for local notifications on a 3G iPhone running iOS4

Hi I have successfully scheduled local notifications in my app using the code below: Class cls = NSClassFromString(@"UILocalNotification"); if (cls != nil) { UILocalNotification *notification = [[cls alloc] init]; notification.fireDate = self.alarmNotificationDate; notification.timeZone = [NSTimeZone defau...

TopMost Notification Bubble in Windows Mobile 6

Hi, I'm developing an app for Windows Mobile 6 using CF3.5. I need to show a notification to the user, and I want to use the Microsoft.WindowsCE.Notification class. I'm showing the notification from a TopMost form and the Notification pops up below the form, so it's not visible. Is there any way to make the Notification "topmost"? ...

how to notify my Program when database updated ?..

Hi there, I have a C# program that queries the database(SQL Server) for some value. Currently the application queries the database every minutes to make sure that the table is up to date. What I would like to be able to do is that the querie is only done when the database has been changed/updated.How do i notify my program when some t...

iPhone app crashing on local notification

This is weird. My application schedules local notifications whenever it is sent into the background, and while the first notification is being displayed correctly, as soon as the one after that should be fired, the whole application crashes. Yes, in the background. While no code is being executed. No console output is given, I just get ...

Major slowdown using NSInvocationOperation (NSOperation) with NSOperationQueue on iOS 4 (iPhone)

I have a lengthy operation O that is called through a NSInvocationOperation, itself scheduled by adding it to a NSOperationQueue so that it runs asynchronously. That lengthy operation O is invoked in two different cases in my app. In case A, operation O is invoked as a result of tapping some widget in some view. As soon as the widget is...

WebDAV Slide Subscription - Get changes

Hello, how to use the subscription-Method in "org.apache.webdav.lib.WebdavResource" ? In version 2.1 of the jakarta slide-Project there is a new Method "subscribeMethod". I can't find any examples for it. I want to get a notification, when a file on the WebDAV-Server has changed, deleted or is new. Is this possible with a subscription? ...

why I can receive the old app's push notification when the iphone app reinstall?

uninstall the app first, then reinstall, I can receive the push notification normally. here is my analysis: client uninstalls app, but my provider server has the devicetoken. then reinstall,APNS delivers the same devicetoken to iphone,so when a new push item comes to APNS,it successly delivers the item to the client. my app has syn...

How to develop alert system like facebook using PHP and Jquery?

How can I develop an alert system like Facebook's, where User A add User B, User B will get some number in Friend Request Section on the header like in the image below. How can I develop something like that? How can we get numbers like this??how can i get codes in PHP and JQuery? ...

Android: Group notification in status bar but not in notifications list

Does anyone know if there is a way to group a notification in the status bar but not in the list of notifications? I want to show only one icon in the status bar but when the user drags down the "notifications list" it should be several notifications with different intents. As I understood there is only possible to either group both no...

Design pattern for an email notification service which monitors workflow/state

I'm sorry this question is going to be a bit vague because I'm not entirely sure what I'm looking for. Basically in my (Asp.net MVC) web app I have some basic (manually coded) workflow triggered by my various user inputs. I need to send email configurable notifications when certain events happen. For example, there is an update status...

Intents to activity from notification status bar?

I am trying to start an activity from the notification bar but it needs to get an int. From activity to activity I would just put an int into the intent but I can't seem to figure out where to add the extra for the notification bar? Is this possible? If not is there a better way to do it? public void notifyMe() { int icon = andro...