|
Hello,
I'm looking for a way to get real time notification from a server in an iPhone App. I don't want to use Apple Push Notification as I have many notifications. My web service is coded in PHP, and I haven't figured out an easy way to implement this...
Started by Martin on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
If you need the notification to happen even if the user has.
This will only work while you're app is running.
|
|
I can't figure out but for some reason Nagios doesn't send me an alert on some of the services that I monitor, I was wondering if someone can help me out a bit.
this is service
define service { hostgroup_name nrpe-disk service_description disk use alarm...
Started by alexus on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at serverfault):
Disk register 1 }
perhaps *notification_failure_criteria* can help you
Do you really have a *notification_period* called 247 or rather 24x7 ?
You get a correct feedback from your command (so { host_name service_description disk notification....
|
|
Which of the following exception notification solutions is the best?
Exceptional Hoptoad exception_notification exception_logger
Started by Horace Loeb on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Not a massive fan of hoptoad, it's too easy to ignore messages... .
On a high traffic site we use an internal messaging queue for errors, then pump those back up to hoptoad .
I use hoptoad and have had nothing but a positive experience, I highly recommend it .
|
Ask your Facebook Friends
|
I know you can register to have alerts or not when you call the push notification API. However my problem is that I want a certain class of actions to have an alert notification while no alert notification for other class of action?
So for example, an...
Started by erotsppa on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You can send a blank notification that has the effect of cancelling any previous push notification (....
Update: I don't think that quite answers your question.
notification, look at The Notification Payload in the Apple docs.
|
|
I've been reading the docs for django-notification , and they seem to cover creating notifications just fine, but not how to display them to users. Is there a good reference for this out there, and my Google-fu has just failed me? If not, can someone ...
Started by Hank Gay on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
In particular, there is a notification.
For figuring out how the authors are using django-notification .
|
|
My oncall rotation defines time periods based a persons geo graphic location. But our escalations need to go out to the entire team regardless of when they occur. Currently the only way I've found to configure this in nagios is to create two contacts ...
Started by Stick on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at serverfault):
Host.example.com service_description this service first_notification 1 last_notification 1 serviceescalation{ hostname host.example.com service_description this service first_notification 1 last_notification 1 notification....
|
|
Is there any way to use an image that I'm generating on the fly as a Notification icon?
Started by fiXedd on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
RemoteViews contentView = new RemoteViews(context.getPackageName(), R.layout.custom_notification_layout.
|
|
I want to put the notification in the tab bar of the app to show the number of item selected for the shopping list. Is there any way to add the notification in the tab bar of app.
Started by uttam on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You mean the badge? Do something like (where self is a UIViewController ):
[[self tabBarItem] setBadgeValue:@"42"];
You can set the badgeValue property on a UITabBarItem to present the user with a small red badge on that item. .
|
|
A Checkbox found in the Ringer Volume settings that allows you to set a separate Notification volume and incoming call volume
Is there a way to Check/Uncheck the Check box for Notification volume programatically.
Thanks.
Started by Vinayak.B on
, 3 posts
by 2 people.
Answer Snippets (Read the full thread at stackoverflow):
There is a hidden but editable preference in the Settings.System class... .
I don't recall seeing an API to do this, but you could try altering the notification (or ringer AudioManager.adjustStreamVolume(STREAM_NOTIFICATION, ADJUST_RAISE, 0) .
|
|
Example: When memory gets low, the System sends an UIApplicationDidReceiveMemoryWarningNotification notification. That's all apple says in his doc at that point. But where does this notification come from, and to which method is it sent? Or where and ...
Started by Thanks on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
An object that wants to get informed about this notification registers itself to the notification center by telling which notification it....
It is sent to the notification center, where all notifications are centralized.
|