Questions tagged [push]

In distributed version control, push is the action of sending local changes to a remote repository.

5455 questions
2
votes
6 answers

C# MDM Server with Apple, not able to send Push Notification

We are working on a MDM solution for iOS devices. We are already able to install profiles with a MDM-Payload over a website and we already receive PUT requestes sent by the iOS devices containing the PushMagic, a deviceToken and other values as…
user1534860
  • 21
  • 1
  • 3
2
votes
1 answer

How to identify development push token in a production list for APNS?

I have a list of production push token for Apple push notification, with few developement token inside. Is it possible to identify them without send a notification to Apple ?
EricD
  • 587
  • 6
  • 22
2
votes
2 answers

Skype push notification "[person] is calling..." disappears when call ends - how to do that?

If iPhone is locked and somebody calls on Skype, push notification appears. I think it's simple push notification as other app servers send. But when the call ends (and we didn't respond, so the call is missed) push notification disappears from…
Heps
  • 945
  • 9
  • 24
2
votes
1 answer

Sencha Touch 2: Loading pushed data into form

I got some problems loading data into a form which I pushed onSelect. (loading details for a specific list item) onProductSelect: function(_dataView, _record) { Ext.getCmp('products').push({ title: _record.data.name, data:…
d2uX
  • 241
  • 2
  • 14
2
votes
1 answer

post-receive hook permission denied "unable to create file" error

Just got gitolite installed on my webserver and am trying to get a post-receive hook that can point the git dir in apache's direction. This is what my post-receive hook looks like. Got this script from the Using Git to manage a web…
ThomasReggi
  • 55,053
  • 85
  • 237
  • 424
2
votes
2 answers

How to push my code to github fork

I am new to github. I have been working on a code that I fetched from github. Now I completed making my modifications and I want to push my code to github. I would like to create a fork of the original code that I worked on and push my developed…
polerto
  • 1,750
  • 5
  • 29
  • 50
2
votes
1 answer

JavaScript, push function into array

I'm trying to push all function parameters to array, where one parameter is function and i can't do this, because after pushing function to array i have null in this place I have following problem, i have: var someFunction1 = function(someValue,…
Ri100
  • 89
  • 5
2
votes
1 answer

Anyone using XMPP to implement Push Notifications on iOS?

I'm looking for any reference projects or key learning from anyone who has implemented XMPP/Jabber to successfully send notifications to iOS devices (iPhone/iPad). I'm considering using an XMPP server (OpenFire specifically) to provide a single…
Paul Fryer
  • 9,268
  • 14
  • 61
  • 93
2
votes
2 answers

J2ME push registry startup permission

I made an application that uses Push Registry. When I try the application it does not work properly because of the permissions. Then I found out if I sign the application I can reach the always allow option. But when I try application after signing…
Utkan Ozyurek
  • 638
  • 7
  • 20
2
votes
1 answer

PHP Server Sent Event reduce traffic

I just started using SSE in my PHP pages. I can very easy send new data with this code: while(true) { if (isset($_GET["selectedName"]) && $_GET["selectedName"] != "empty") { echo "data:current timestamp for user ".$_GET["selectedName"]."…
Julian F. Weinert
  • 7,474
  • 7
  • 59
  • 107
2
votes
4 answers

Managing website using git + post-receive hook: error pushing changes

Question: How do I push my local commits to my development server if that worktree is not bare? My Situation: I set up git on my development server so that when I push local changes, they are added to a detached working tree (as described here and…
doub1ejack
  • 10,627
  • 20
  • 66
  • 125
2
votes
2 answers

Android push c2dm Not working with a 200 ok reponse

I've been trying to send a push message from my java EE web app, to my Android phone. I've followed and read a lot of tutorial (like this one http://www.vogella.com/articles/AndroidCloudToDeviceMessaging/article.html) I successfully get my…
2
votes
1 answer

Xtify Payload - Server Error

I am attempting to send a push notification to both android and iOS using xtify. I am able to do this, however, the payload information doesn't appear to be working for me. If I remove the payload, the request succeeds, but adding the payload…
tboling1
  • 488
  • 4
  • 13
2
votes
1 answer

Designing real-time web application (Node.js and socket.io)

I want to ask about some good practices. I have a Node.js (Express) web server and socket.io push server (in case technology matters). I can turn both of them into one application but I want them separated (they can communicate with each other if…
freakish
  • 54,167
  • 9
  • 132
  • 169
2
votes
2 answers

Javascript: Objects pushed into array overriding each other?

I have an object that is formatted like this: var telemetry_data = { T36: [ //Date, lat, long [20120516, 25.40294163, -80.46972051], [20120518, 25.40306787, -80.46967025], [20120521, 25.40234592, -80.46980265] ], T43: [ …
petroica
  • 139
  • 1
  • 3
  • 14