notifications

Are push notifications stored somewhere on iphone ?

If yes, how it's possible for the user to re-read them again ? By coding, how do you read them to display them in your app ? ...

Expiry Notification at Intervals -- How do I avoid repeated notices for the same entry?

I am implementing a J2EE application that has an expiry-style license, and I would like to send e-mail notification to different customers as the customer's license approaches expiry. I'd like to be able to do something like notify at, for example, 90/60/30 days until expiry, but obviously I don't want to accidentally send repeated noti...

MPMediaPickerController in one view and the MPMediaPlayback in another view. How to?

Basically I have a three view stack. In the last view I got a MPMediaPickerController that lets the user pick a song from his/her library. The song is to be played later from the first view. How can I tell the player (in the first view) what should be played? One possibility would be to send a notification and include the MPMediaItemCol...

How to configure Mantis so that an administrator is notified of all issues in the system

I want to setup Mantis in a way that it sends all notifications email to the administrator, even if the administrator is not assigned or monitoring a particular project. The administrator should get all the emails for all the activity occurring in the system. I tried to configure the Mantis' Email Notifications screen, but I fail to und...

Best practice or pattern for notification layer/subsystem?

Hi guys, i have quite large ASP.NET MVC2 application - separate repositories in their own projects, using IoC for injecting them into controllers, etc. - standard stuff. And here i need something, that will allow me to "globally" manage events in system and notify the user by few different ways (some events by email, some by internal m...

IO thread alert GUI thread if error occures

I have a client/server question that i am trying to figure out the best solution for. If a client ever gets disconnected from the server, for any reason, i would like a way for the input output thread to alert the gui thread that something went wrong, and thus have the gui thread print an error and gracefully handle it (probably drop ba...

android notification animated icon not working properly

I have an animated icon in the status bar which works at first, but after alittle bit it starts to mess up. it is set to switch between two icons every 2 seconds and works fine at first, but after alittle bit it starts to go fast. it will stay with one icon for about a second and then set the other icon, then right back to the first ic...

Automatic acknowledgement after downloading some content.

PersonA sends a link to download a content(say an ebook) to person B. is there a way to acknowledge personA automatically that the download is completed by PersonB? Thanks Senthil A Kumar ...

OSX window move notification API

How do I know when user starts moving, stops moving and moves a window belonging to another application or the Finder? I know about kAXWindowMovedNotification but it is not what I need because it only reports when mouse is stopped and additionally it notifies about any moves also these which have not been done by user. I cannot find any ...

MPMusicPlayerController: iPod stops sending notifications, when iPod App is terminated in background

I am using a music player property for iPod player controller. // .h @property (nonatomic, retain) MPMusicPlayerController *ipodPlayer; // .m ipodPlayer = [MPMusicPlayerController iPodMusicPlayer]; NSNotificationCenter *notificationCenter = [NSNotificationCenter defaultCenter]; [notificationCenter addObserver:self selector:@selector(...

Checking if a new SMS has been read

I am working on a simple app for the HTC EVO that blinks the alternate notification LED when a new text message is received. I have this part working great via a Broadcast Receiver but I need some way to turn the LED off when the user has read the message(s) using their default SMS app. I'm not sure if it is best to do this in the receiv...

Cancel dynamic notification in Android when the notification is selected

Suppose I am creating an Android application that's like an SMS app. The requirements are as follows: The user can receive multiple notifications, each one having a dynamic ID of type int. When a notification is selected, it loads an activity which displays a corresponding message (the SMS). The single notification that was selected s...

Database Notification

Dear all, Now,Our team using VS2008 C#.net and SQL Server2005.Later,we will upgrade SqlServer 2008 or 2010. One of the problem is we need to get notification from database server to all clients when one of them changed data . My questions are (1)What is the different between sqlserver-notification service,query notification and dot net ...

Notication bar similar to the one used by Stack Overflow

How do I write a notification bar in JavaScript similar to the one that you see on Stack Overflow? In my project they are asking for one just the same as this website and I'm looking to see how I go about coding one up. How can I write the code for this? Any suggestions? ...

Notification LED - color

I'm trying to experiment with LED colors on my Nexus One and i'm having problems with creating any LED-light (color) with notification. LED-light isn't working. I have tested hardware malfunction and that isn't the problem. Here is the code. Notification notification = new Notification(R.drawable.icon, tickerText, System.currentTime...

Modify notification of another app on Android

I'm trying to find out if it is possible to modify the notification of another app (the calendar app from Samsung) from my own app. Specifically I'd like to change the alarm for a calendar event from a one-time sound (which is silent, if the phone is set to vibrate) to a repeating vibrate. Can I even modify the notifications belonging ...

Remove the app badge at a given hour

My app uses badge to count the number of smoked cigarettes in the current day. I would like the app to remove the badge at the midnight, when a new day begins... Is it possible to do that? I mean, doing that while the app is closed! Thanks ...

Notification Resume Activity

I know, there are several questions of this type but I tried everything of it and it still doesnt work. Ok, for my app; I've got an Activity. In this Activity, there are 4 Tabs, and the fourth one contents a list and a record button. When I am pushing record, there is a GPS Listener which starts. After getting a new gps value, it pushs i...

Use a persistent notification to allow the user to return to running Android app

I am developing an app with numerous Activities. I would like to create a persistent notification that (more or less) says, "AppName - Return to AppName" that will be present whenever my background services are running. Creating and disposing of the notification was no problem. Now, the user could be on any of several screens/Activiti...

How to find the process that killed a running java VM

I'm facing a situation where one of my java VMs is being killed by some other process and the java VM exits with an exit status of 143. Is there any way I can find the process which killed my program? I read about Runtime.addShutdownHook but I found it of no use. Though I can find when my process is being killed, I can't find who's killi...