notifications

OracleCommand execution blocks if has OracleDependency

I have the following code: OracleConnection conn = new OracleConnection(connString); OracleCommand command = new OracleCommand("select * from testtable", conn); conn.Open(); OracleDependency.Port = 2010; OracleDependency dependency = new OracleDependency(command); command.AddRowid = true; command.Notification.IsNotifiedOnce = false; de...

Sending Notification in Modal Popup to Users

Hi everyone, This question can be little different than you expect. I am wondering how would I show notification modal popup on a user's browser window whenever they come online and whichever the website they connect, and suppose I am the internet provider of these users. They don't have to download anything to their computer and they c...

Automatic Email Notifications

Hello, I wrote an asp.net program that is designed to retrieve user data. The process, in which the user can log in to the system and input his data, has a Start Date and an End Date where the user is not allowed to log in before the start date or after the end date. I want to send an email notification to the users to log in to the sy...

NSManagedObjectContextObjectsDidChangeNotification userInfo Dictionary.

I am using the NSManagedObjectContextObjectsDidChangeNotification notfication in my app, I already now how to use it. As I have used the below code to add the observer … - (void) awakeFromNib { NSNotificationCenter *nc; nc = [NSNotificationCenter defaultCenter]; [nc addObserver:self selector:@selector(syncKVO:) name:N...

PHP Calendar - How to make it send an email notification for new events?

I'm using http://phpcodeworks.com/pec/index for a nice User Generated Calendar but it doesn't have the function of sending an email to me when someone posts an event. I'd really like this feature and I really like this calendar. It's all open source, so you'll be able to play with the code and look at it all. ...

Add a notification icon at the status bar in BlackBerry JDE 4.5.0

I'm writing a Java application in BlackBerry JDE 4.5 that will start listening for some event at the start up. I want to display a small icon at the status bar. I know its support in version 4.6.0 of the BlackBerry API set with ApplicationIcon, ApplicationIndicator and ApplicationIndicatorRegistry classes but which classes are there in...

iPhone/iPod Touch sync notifications

I know that it's possible to add an observer for notifications with the com.apple.iTunes.playerInfo identifier, but this only seems to include events for music related events. I also know I can find out when iTunes closes by adding an observer for NSWorkspaceDidTerminateApplicationNotification. But is there an NSNotification for the st...

Feedback service for Push notification

Hi, I wrote the below script to read the feedback data. But, for some reasons, I am not receiving any data from the server. Can you kindly let me know whats wrong with the script. Also, if you have any working php script for feedback service, can you kindly share it... regards, DD. $ctx = stream_context_create(); stream_context_set...

Where register an object as Notification listener? - Maximize performance!

Hello, there is a better place where an object can be registered to a Notification Center? In other words, for a matter of performance, it's a good practice to register an object as Notification listener in the init(), awakeFromNib() or other event handler? Thanks! ...

Notification when laptop is switch on (boot)

Hi I need to know, is that possible to get a notification through email whenever my laptop is switched on or is connected to internet ? An alternative is to get notification when set service 'Starts' on system boot. Need C# code for this service. Thanks & regards Khushi ...

close previous jGrowl notifications before showing a new one.

I have a simple app that executes $.jGrowl("loading");. Then the data is displayed $.jGrowl("blah blah blah data goes here"); after crunching data which can take 1 -5 seconds. I've seen a post that mentions using the default.pool to only display one message at a time. The format I want is: Show box 1 crunch data close box 1 show b...

Mediaplayer: Is it possible to distinguish finish from 'Done' with myMovieFinishedCallback?

I am using the MediaPlayer framework to play a movie on the iPhone. There is a notification:- myMovieFinishedCallback to capture the end of play, but there doesn't appear to be any way to distinguish between the player coming to the end of the movie, and the user pressing 'Done' to terminate mid-play. Is it possible to tell the cond...

Android SMS intercept without notification icon or WAP-PUSH messages

Is there a way to intercept an SMS with BroadcastReceiver as for example here but without showing any notifications to the user and immediately deleting the message that contains for example some keyword EDIT: What I need is to have some communication between android phones, one to one, and I thought that sending SMS messages would s...

3 notifications instead of one

I'm developing simple MVC app in Cocoa/Objective-C. I have a strange issue (or misunderstanding) with notifications and KVO. I have AppController object in MainMenu.xib, hence I implement awakeFromNib method where I register for NSImageView changing its image property. I add self as an observer in the following way: // options:3 equals...

Google Code email notification

I have a question with regards Google Code svn repositories. Is there a way no be notified by email when someone on your team does a commit ? I have been looking around, but I can't find the way to activate this option (if it exists). Thanks for any help given. ...

Android: Callback for an application launch

Is there a way I can be notified of an application launch and termination in Android? I mean, more like subscribing to the Activity Manager and then determining which applications have been started and stopped... ...

in what circumstances will a notification NOT post?

I just dont understand, I have used notifications a trillon times, but today I cant seem to get notifications to send from a particular object. This is in a view controller... - (void)buttonPressed:(UIButton*)sender { NSLog(@"buttonPressed"); [[NSNotificationCenter defaultCenter] postNotificationName:@"test" object:self]; } and this i...

problem with alert email in TFS and power tools

Hi I have a problem with TFS and email notifications. I can not receive any email from TFS server for work item tracking. I correctly have configured web.config in ...\Web Services\Services in TFS server. and I am useing power tools for alert. but when I set an alert to notify me for an item,any event haven't happened yet. I have checked...

"Alert Management System" in Java to support alerts from cross-technology applications

Where Alert Management System roughly fits into this definition: "A system designed to screen events, build profiles associated with the events, and send alerts based upon the profiles and events" So, the current setup is like this: There are multiple applications built in different technologies (Java, .Net, Perl, Python, VB) and they d...

Where can I find information about Inotifier ?

I am looking for documentation/tutorial for Inotifier as I need to implement file notification logic in PHP. ...