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...
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"?
...
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
...
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 ...
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...
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...
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...
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];
[...
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 ...
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...
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"?
...
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...
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 ...
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...
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?
...
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 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?
...
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...
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...
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...