0
votes
2answers
21 views
Sinatra/Rack Sleep until Response Ready (like Exchange ActiveSync)
I'm wanting to do a lightweight push-style HTTP response in my existing Sinatra web app. Is there any mechanism that allows me to not respond to an HTTP request and keep the connection open until I …
1
vote
7answers
176 views
How to push data over the Internet?
I want to push data to a client application. The client app can be thick or a thin. The push has to happen over the Internet. How can this be done?
EDIT:
Is there a way wherein the client app opens a …
3
votes
1answer
66 views
iPhone: how to remove badge after Push Notification?
Hi guys,
What is the code to remove the badge on my app's icon? When I receive push, I need to remove it when a button is clicked!
2
votes
3answers
137 views
Need opinion regarding design/architecture of a web application
I am working on a web application which needs to get data from some local and some non local resources and then display it. As it could take arbitrary amount of time to get the data from these …
4
votes
2answers
118 views
How to send a push notification using Erlang?
I'm trying to send a push notification to APNs using Erlang.
This is the code I came up with so far:
-module(apnstest2).
-export([connect/0]).
connect() ->
application:start(ssl),
…
1
vote
1answer
112 views
Multiple iPhone APN messages, single connection.
I have a strange issue. I'm trying to get Apple Push Notifications working with Python. I can connect and send individual messages without a problem. The issues pop up when I start sending more than …
0
votes
2answers
69 views
After pushViewController, how to disable the backBarButtonItem?
After pushViewController, how to disable the backBarButtonItem, that going back will not be possible?
tnx :)
1
vote
2answers
77 views
git pull with local changes
I think I might be asking something weird/wrong here, but I'm new to git so bear with me!
I have a development clone and a live clone of a git repository, pushing from development and pulling to …
0
votes
2answers
51 views
How long is an APNS token valid for?
With APNS, when a device registers, how long is the token it registers with good for? The entire time the app is installed? I seem to recall a note in the documentation saying it was only good until …
0
votes
1answer
42 views
Server Push vs Server pull in IIS
Hi,
I was thinking of building a chat application in ASP .NET. I was thinking of either using push or pull. I have found that pull is more scalable than push. But does any body know if the web chat …
2
votes
4answers
124 views
Apple Push Notifications - When Registering for Notifications no Callbacks are received at all
I've gone through all the steps as specified, am using a dev certificate with APN enabled and am calling registerForRemoteNotificationTypes: with the right flags in my app delegate.
Still, neither …
0
votes
1answer
27 views
How does push work on ipod touch with respect to auth credentials ?
I installed this instant messenger program called IM+ that keeps your accounts online even when you exit the application (you know... touch: only one app at a time) it accepts push deliveries to …
1
vote
1answer
45 views
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 …
0
votes
3answers
58 views
Examples of Web Sites Using AJAX or Push Technology on Their Home Page (or other useful pages)
I'm looking for a list of links to any examples of well-designed sites you might know that use AJAX and possibly HTTP Streaming to push data to the page or make updates to content of existing HTML …
1
vote
5answers
181 views
Can I use Push Notification for this
My app should post some message to Twitter at the end of each day at the time X. App might not be running at this time X, but it still has to post that message. I don't want to bother user by everyday …
