active questions tagged push - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T06:59:02Z http://stackoverflow.com/feeds/tag/push http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1936325/how-to-create-http-server-push-also-known-as-http-streaming-with-php 0 How to create HTTP server push (also known as HTTP streaming) with PHP? Ole Jak 2009-12-20T16:51:22Z 2009-12-20T16:57:30Z <p>How to create HTTP server push (also known as HTTP streaming) with PHP (better streaming video)?</p> <p>Tuts Libs are vary welcome</p> http://stackoverflow.com/questions/1914579/set-up-git-to-pull-and-push-all-branches 2 Set up git to pull and push all branches becomingGuru 2009-12-16T13:09:52Z 2009-12-16T14:38:09Z <p>I'd like to push and pull all the branches by default, including the newly created ones.</p> <p>Is there a setting that I can define for it?</p> <p>Otherwise, when I add a new branch, locally and I want to pull it from the server, what is the simplest way to do it?</p> <p>I created a new branch with the same name and tried to pull but it doesn't work. Asks me for all the remote config of the branch. How do I set it.</p> http://stackoverflow.com/questions/1911297/avoiding-union-by-join 2 Avoiding union by join? Nicolas 2009-12-15T23:44:14Z 2009-12-16T00:23:51Z <p>Hi, </p> <p>My problem is on Oracle, but is probably database independent (?).</p> <p>I have the following tables:</p> <p><strong>aa</strong></p> <pre><code>vid cb --- -- 1 10 2 15 </code></pre> <p><strong>bb</strong></p> <pre><code>vid cb --- -- 3 25 4 24 </code></pre> <p>*<em>rep</em></p> <pre><code>repid vid p ----- --- -- 99 1 aa 99 2 aa 99 3 bb 99 4 bb </code></pre> <p>The column p indicates in which table to get the row. In reality, aa and bb are much more different, and p does not match to the table name, but gives a way to get there. The example is just a simplication where I have a problem. Note than in reality, there are more than 2 tables aa and bb (there are 6). I want a query that returns this:</p> <pre><code>repid vid p cb ----- --- -- -- 99 1 aa 10 99 2 aa 15 99 3 bb 25 99 4 bb 24 </code></pre> <p>The following works: (a)</p> <pre><code>select rep.vid, rep.p, cb from ( select 'aa' as p,vid,cb from aa union all select 'bb' as p, vid,cb from bb) u,rep where rep.p=u.p and rep.vid=u.vid </code></pre> <p>(b)</p> <pre><code>select rep.vid, rep.p, decode(rep.p, 'aa', (select cb from aa where vid=rep.vid), 'bb', (select cb from bb where vid=rep.vid)) cb from rep </code></pre> <p>But I would like to use the query in a view, on which there can be predicate pushing.</p> <p>So question 1 is: would the following allow predicate pushing. Question 2: (even if yes for question 1) is there a way to do this without union, but with joins. Question 3: Or just simply, a better way?</p> <p>Script to create the data:</p> <pre><code>create table bb (vid number(1), cb number(2)); create table aa (vid number(1), cb number(2)); create table rep(rid number(2), vid number(1), p varchar2(2)); insert into rep (rid,vid,p) values (99, 4,'bb'); insert into rep (rid,vid,p) values (99, 3,'bb'); insert into rep (rid,vid,p) values (99, 2,'aa'); insert into rep (rid,vid,p) values (99, 1,'aa'); insert into bb (vid,cb) values (4,24); insert into bb (vid,cb) values (3,25); insert into aa (vid,cb) values (2,15); insert into aa (vid,cb) values (1,10); commit; </code></pre> http://stackoverflow.com/questions/1899659/why-mercurial-doesnt-authenticate-first-before-push-data 1 why Mercurial doesn't authenticate first before push data? Benny 2009-12-14T08:30:07Z 2009-12-14T15:49:21Z <p>I have a big size clone to push to google code, and it takes a long time for the authenticate dialog to show up after the push is fired up, so does TortoiseHg push data first authenticate second? if so, that's stupid.</p> http://stackoverflow.com/questions/1898300/getting-errors-using-apns-php 0 Getting errors using APNS PHP Bryan 2009-12-14T00:06:48Z 2009-12-14T00:06:48Z <p>heres the code I'm using</p> <pre><code>&lt;?php </code></pre> <p>$deviceToken = 'my device key'; // not putting in for security</p> <p>$payload['aps'] = array('alert' => 'This is the alert text', 'badge' => 1, 'sound' => 'default'); $payload = json_encode($payload);</p> <p>$apnsHost = 'gateway.sandbox.push.apple.com'; $apnsPort = 2195; $apnsCert = 'apns-dev.pem';</p> <p>$streamContext = stream_context_create(); stream_context_set_option($streamContext, 'ssl', 'local_cert', $apnsCert);</p> <p>$apns = stream_socket_client('ssl://' . $apnsHost . ':' . $apnsPort, $error, $errorString, 2, STREAM_CLIENT_CONNECT, $streamContext);</p> <p>$apnsMessage = chr(0) . chr(0) . chr(32) . pack('H*', str_replace(' ', '', $deviceToken)) . chr(0) . chr(strlen($payload)) . $payload; fwrite($apns, $apnsMessage);</p> <p>socket_close($apns); fclose($apns); ?></p> <p>and I get these errors</p> <pre><code>Warning: stream_socket_client() [function.stream-socket-client]: Unable to set private key file `apns-dev.pem' in /home/bryan/sendpush.php on line 14 </code></pre> <p>Warning: stream_socket_client() [function.stream-socket-client]: failed to create an SSL handle in /home/bryan/sendpush.php on line 14</p> <p>Warning: stream_socket_client() [function.stream-socket-client]: Failed to enable crypto in /home/bryan/sendpush.php on line 14</p> <p>Warning: stream_socket_client() [function.stream-socket-client]: unable to connect to ssl://gateway.sandbox.push.apple.com:2195 (Unknown error) in /home/bryan/sendpush.php on line 14</p> <p>Warning: fwrite(): supplied argument is not a valid stream resource in /home/bryan/sendpush.php on line 17</p> <p>Warning: socket_close() expects parameter 1 to be resource, boolean given in /home/bryan/sendpush.php on line 19</p> <p>Warning: fclose(): supplied argument is not a valid stream resource in /home/bryan/sendpush.php on line 20</p> <p>thnx, Bryan</p> http://stackoverflow.com/questions/125272/using-mercurial-whats-the-easiest-way-to-commit-and-push-a-single-file-while-le 14 Using mercurial, what's the easiest way to commit and push a single file while leaving other modifications alone? Ted Naleid 2008-09-24T03:33:09Z 2009-12-11T09:43:49Z <p>I'm relatively new to Mercurial and my team is trying it out right now as a replacement for Subversion. </p> <p>How can I commit and push a single file out to another repository while leaving other modifications in my working directory uncommitted (or at least not pushed to the other repository)?</p> <p>This happens for us with database migrations. We want to commit the migration to source control so a DBA can view and edit it while we're working on the code modifications to go along with that database migration. The changes aren't yet ready to go so we don't want to push all of them out.</p> <p>In subversion, I'd simply do:</p> <pre><code>svn add my_migration.sql # commit only the migration, but not the other files I'm working on svn commit -m "migration notes" my_mygration.sql </code></pre> <p>and continue working locally.</p> <p>This doesn't work with mercurial as when I'm pushing it out to the other repository, if there are changes to it that I haven't pulled down, it wants me to pull them down, merge them, and commit that merge to the repository. Commits after a merge don't allow you to omit files so it forces you to commit everything in your local repository.</p> <p>The easiest thing that I can figure out is to commit the file to my local repository, clone my local repository, fetch any new changes from the actual repository, merge them and commit that merge, and them push my changes out.</p> <pre><code>hg add my_migration.sql hg commit -m "migration notes" my_migration.sql cd .. hg clone project project-clone cd project-clone hg fetch http://hg/project hg push http://hg/project </code></pre> <p>This works, but it feels like I'm missing something easier, some way to tell mercurial to ignore the files already in my working directory, just do the merge and send the files along. I suspect mercurial queues can do this, but I don't fully grok mq yet.</p> <p>Thanks to Josh Matthews below, the shelve command is exactly what I'm looking for. I didn't see any great install instructions with some googling, so here is the combined stuff I used to get it working:</p> <p>Get it with:</p> <pre><code>hg clone http://freehg.org/u/tksoh/hgshelve/ hgshelve </code></pre> <p>The only file (currently) in the project is the hgshelve.py file.</p> <p>Modify your ~/.hgrc to add the shelve extension, pointing to where you cloned the repo:</p> <pre><code>[extensions] hgshelve=/Users/ted/Documents/workspace/hgshelve/hgshelve.py </code></pre> <p>Then you can <code>hg shelve</code> and <code>hg unshelve</code> to temporarily store changes away. It lets you work at the "patch hunk" level to pick and choose the items to shelve away. It didn't appear to shelve a file had listed for adding, only files already in the repo with modifications.</p> http://stackoverflow.com/questions/1544471/apple-push-notifications-when-registering-for-notifications-no-callbacks-are-re 2 Apple Push Notifications - When Registering for Notifications no Callbacks are received at all Ben Jackson 2009-10-09T15:22:51Z 2009-12-09T06:13:14Z <p>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.</p> <p>Still, neither application:didRegisterForRemoteNotificationsWithDeviceToken: nor application:didFailToRegisterForRemoteNotificationsWithError: are being called. It looks like the registration request just gets stuck in transit. </p> <p>What am I doing wrong?</p> http://stackoverflow.com/questions/1853613/sinatra-rack-sleep-until-response-ready-like-exchange-activesync 0 Sinatra/Rack Sleep until Response Ready (like Exchange ActiveSync) NilObject 2009-12-05T21:58:25Z 2009-12-06T10:58:56Z <p>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 wake up the connection at a future time?</p> http://stackoverflow.com/questions/1815366/how-to-push-data-over-the-internet 1 How to push data over the Internet? PK 2009-11-29T12:14:31Z 2009-12-01T09:28:57Z <p>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?</p> <p><strong>EDIT:</strong> Is there a way wherein the client app opens a connection to the server, keeps it alive for its lifetime and then continues receiving data over that connection. Can I build something like this? ANY help's appreciated.</p> <p><strong>Updates:</strong> My thick client will be in Wpf and my thin client will be a silverlight app. I want to have minimal latency. Also for certain categories of data the frequency of updates will be more than 10 per second. I am okay building such a solution if something off the shelf doesn't exist. I just want some pointers/ideas to get started. </p> http://stackoverflow.com/questions/1803344/iphone-how-to-remove-badge-after-push-notification 3 iPhone: how to remove badge after Push Notification? obliviux 2009-11-26T12:13:18Z 2009-11-26T12:18:04Z <p>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!</p> http://stackoverflow.com/questions/1777977/need-opinion-regarding-design-architecture-of-a-web-application 2 Need opinion regarding design/architecture of a web application gary 2009-11-22T06:12:05Z 2009-11-22T23:08:24Z <p>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 resources I am thinking of using the actors concept so that each actor is responsible for getting data from the respective resource. The request thread will wait for each actor to finish its task and then use ajax to update only the portion of the web page that is dependent on that data. This way user will start seeing the data as soon as it is received rather than wait for all of them to finish and then get a first look at the data.</p> <p>I am planning to look into scala/lift framework for this. I have read some articles on the web for scala/lift and want to explore if this is the correct way to approach this problem and also if scala/lift is good platform of choice. I have worked in Java and C# previously. Any opinions, comments, suggestions are welcome.</p> <p>Thanks, gary</p> http://stackoverflow.com/questions/1737404/how-does-push-work-on-ipod-touch-with-respect-to-auth-credentials 0 How does push work on ipod touch with respect to auth credentials ? Stefano Borini 2009-11-15T12:17:50Z 2009-11-22T15:19:05Z <p>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 report you have a message.</p> <p>I am kind of puzzled on how they can keep me logged in and send me a push notification that someone is messaging me. I noted the same happens for mail. If I receive a mail, even if I don't have mail open, a badge appears near the icon.</p> <p>My main concern is the password. How does push work? does it mean that apple or the company behind IM+ stores my email and instant messenger passwords to keep me logged in and push me a notification when I have something new ?</p> <p><em>Edit</em>: ok... the tumbleweed is a bit too much for such a question.</p> http://stackoverflow.com/questions/1749139/how-long-is-an-apns-token-valid-for 0 How long is an APNS token valid for? Max 2009-11-17T14:08:32Z 2009-11-20T23:49:47Z <p>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 sync/reset, but looking at the docs again I can't find that note (and it hasn't held true in my (admittedly non-extensive) testing). Can anyone confirm how long each token is valid for?</p> http://stackoverflow.com/questions/1768222/server-push-vs-server-pull-in-iis 0 Server Push vs Server pull in IIS Prashant 2009-11-20T03:48:02Z 2009-11-20T03:51:24Z <p>Hi,</p> <p>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 messenger like gtalk, yahoo etc use pull or push ?. </p> <p>Thanks.</p> http://stackoverflow.com/questions/1419187/apple-push-notification-in-erlang-or-improved-in-ruby 2 Apple Push Notification in Erlang (or improved in Ruby?) unknown (google) 2009-09-14T00:14:36Z 2009-11-19T18:11:59Z <p>I currently have an Apple Push Notification running on my server in Ruby. I'd like to get one going in Erlang as I'd like to use a supervisor to keep watch over it. Does anyone have any code that they could help me with? </p> <p>Here's my Ruby code. One thing I do not like about this current implementation is that it does not seem to stay connected - it disconnects 2-3 times a day, and it seems after I reconnect that the first push will not go through: </p> <pre><code>context = OpenSSL::SSL::SSLContext.new context.cert = OpenSSL::X509::Certificate.new(File.read(cert)) context.key = OpenSSL::PKey::RSA.new(File.read(cert)) def connect_sockets(server, context) sock = TCPSocket.new(server, 2195) ssl = OpenSSL::SSL::SSLSocket.new(sock,context) ssl.connect return sock, ssl end sock, ssl = connect_sockets(server, context) # this is called to initially connect and also reconnect whenever disconnected. </code></pre> <p>If Erlang Push isn't doable then I wouldn't mind sticking to my Ruby one as long as I can keep my connections alive, and perhaps supervise it through Erlang. Does anyone know if any of this is possible? </p> http://stackoverflow.com/questions/1759101/multiple-iphone-apn-messages-single-connection 1 Multiple iPhone APN messages, single connection. Sangraal 2009-11-18T21:08:12Z 2009-11-19T00:42:04Z <p>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 one message, but it's more bizarre than even that.</p> <p>I'm testing with multiple devices... some iPhones and some iPod Touches. I can send multiple messages to the iPhones without a hitch, but if I have an iPod Touch device id in the list, any message that goes after will fail. </p> <p>So if I send 4 messages in sequence like this:</p> <p>1 - iPhone<br/> 2 - iPhone<br/> 3 - ipod Touch<br/> 4 - iPhone<br/></p> <p>1 and 2 will be delivered, 3 and 4 fail. </p> <p>Using the same device ID's, if I move any of the iPod Touch device ID's to be the first message, all messages will fail. Likewise, if I only send to iPhones, all messages will succeed. </p> <p>Here's the code I'm testing with, in it's current state, I would only get the first two messages, the last two will fail every time.</p> <pre><code>import struct, ssl, json, sys, time, socket, binascii from optparse import OptionParser class PushSender(object): def __init__(self, host, cert, key): self.apnhost = (host, 2195) self.sock = ssl.wrap_socket(socket.socket(socket.AF_INET, socket.SOCK_STREAM), keyfile = key, certfile = cert, do_handshake_on_connect=False) self.sock.connect(self.apnhost) while True: try: self.sock.do_handshake() break except ssl.SSLError, err: if err.args[0] == ssl.SSL_ERROR_WANT_READ: select.select([self.sock], [], []) elif err.args[0] == ssl.SSL_ERROR_WANT_WRITE: select.select([], [self.sock], []) else: raise def send_message(self, token, message): payload = {'aps':{'alert':message}} token = binascii.unhexlify(token) payloadstr = json.dumps(payload, separators=(',',':')) payloadLen = len(payloadstr) fmt = "!BH32sH%ds" % payloadLen notification = struct.pack(fmt, 0, 32, token, payloadLen, payloadstr) self.sock.write(notification) self.sock. def close(self): self.sock.close() def main(): parser = OptionParser() parser.add_option("-c", "--certificate", dest="cert", metavar="FILE", help="Certificate file", ) parser.add_option("-p", "--privatekey", dest="key", metavar="FILE", help="Key file", ) parser.add_option("--host", help="apn host", dest='host') (options, args) = parser.parse_args() sender = PushSender(options.host, options.cert, options.key) iphone1 = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" print 'Sending iPhone #1 a message.' print sender.send_message(iphone1,'Hey iPhone #1.') iphone2 = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" print 'Sending iPhone #2 a message.' print sender.send_message(iphone2,'Hey iPhone #2.') ipod1 = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" print 'Sending iPod #1 a message.' print sender.send_message(ipod1,'Hey iPod #1.') iphone3 = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" print 'Sending iPhone #3 a message.' print sender.send_message(iphone3,'Hey iPhone #3.') sender.close() if __name__=="__main__": main() </code></pre> <p>Any help would be appreciated...</p> http://stackoverflow.com/questions/1757171/how-to-send-a-push-notification-using-erlang 4 How to send a push notification using Erlang? raz0r 2009-11-18T16:17:12Z 2009-11-18T17:57:20Z <p>I'm trying to send a push notification to APNs using Erlang. This is the code I came up with so far:</p> <pre><code>-module(apnstest2). -export([connect/0]). connect() -&gt; application:start(ssl), ssl:seed("someseedstring"), Address = "gateway.sandbox.push.apple.com", Port = 2195, Cert = "/path/to/Certificate.pem", Key = "/path/to/Key.unenc.pem", Options = [{certfile, Cert}, {keyfile, Key}, {mode, binary}], Timeout = 1000, {ok, Socket} = ssl:connect(Address, Port, Options, Timeout), Token = "195ec05a962b24954693c0b638b6216579a0d1d74b3e1c6f534c6f8fd0d50d03", Payload = "{\"aps\":{\"alert\":\"Just testing.\",\"sound\":\"chime\", \"badge\":10}}", TokenLength = length(Token), PayloadLength = length(Payload), Packet = [&lt;&lt;0:8, TokenLength, Token, PayloadLength, Payload&gt;&gt;], ssl:send(Socket, list_to_binary(Packet)), ssl:close(Socket). </code></pre> <p>The code doesn't take advantage of Erlang's concurrency but is just a prototype. I only want to test if I can send the push in the most simple way.</p> <p>I think the problem is in the packet being sent to the APNs. This is the binary format of a push notification:</p> <p><img src="http://developer.apple.com/IPhone/library/documentation/NetworkingInternet/Conceptual/RemoteNotificationsPG/Art/aps%5Fprovider%5Fbinary.jpg" alt="alt text"></p> <p>How should I create such a packet in Erlang? Could someone please take a look at my code and tell me where the problem is?<br /> Also I used Erlang's SSL application to create the connection and send the data and I don't know if this is the problem or the packet.<br /> Thanks!</p> http://stackoverflow.com/questions/22340/wcf-push-to-client-through-firewall 2 WCF push to client through firewall? Sire 2008-08-22T13:27:53Z 2009-11-18T11:17:25Z <blockquote> <p>See also <a href="http://stackoverflow.com/questions/1700917/how-does-a-wcf-server-inform-a-wcf-client-about-changes-better-solution-then-si">How does a WCF server inform a WCF client about changes? (Better solution then simple polling, e.g. Coment or long polling)</a></p> </blockquote> <p>I need to use push-technology with WCF through client firewalls. This must be a common problem, and I know for a fact it works in theory (see links below), but I have failed to get it working, and I haven't been able to find a code sample that demonstrates it.</p> <p>Requirements: </p> <ul> <li>WCF</li> <li>Clients connects to server through tcp port 80 (netTcpBinding).</li> <li>Server pushes back information at irregular intervals (1 min to several hours).</li> <li>Users should not have to configure their firewalls, server pushes must pass through firewalls that have all inbound ports closed. TCP duplex on the same connection is needed for this, a dual binding does not work since a port has to be opened on the client firewall.</li> <li>Clients sends heartbeats to server at regular intervals (perhaps every 15 mins) so server knows client is still alive.</li> <li>Server is IIS7 with WAS.</li> </ul> <p>The solution seems to be duplex netTcpBinding. Based on this information:</p> <p><a href="http://blogs.msdn.com/drnick/archive/2006/05/01/configuring-wcf-for-nats-and-firewalls.aspx" rel="nofollow">WCF through firewalls and NATs</a></p> <p><a href="http://blogs.msdn.com/drnick/archive/2006/10/20/keeping-connections-open-in-iis.aspx" rel="nofollow">Keeping connections open in IIS</a></p> <p>But I have yet to find a code sample that works.. I've tried combining the "Duplex" and "TcpActivation" samples from Microsoft's WCF Samples without any luck. Please can someone point me to example code that works, or build a small sample app. Thanks a lot!</p> http://stackoverflow.com/questions/1359818/iphone-push-notifications-custom-sound-no-vibrate-in-silent-mode 1 iPhone Push Notifications Custom Sound, no Vibrate in silent mode? Redth 2009-08-31T23:14:36Z 2009-11-17T00:46:15Z <p>So, I have Push Notifications working fine to my app with Custom Sounds. However, when my iPhone is in silent mode, and I send a push notification with a custom sound, the sound obviously does not play, but there is also no vibration.</p> <p>If I send a push notification with a sound="chime" or something that doesn't exist like that, the iPhone's SMS notification sound plays as expected, and in silent phone, it vibrates, as expected.</p> <p>What am I doing wrong here?</p> http://stackoverflow.com/questions/1743830/after-pushviewcontroller-how-to-disable-the-backbarbuttonitem 0 After pushViewController, how to disable the backBarButtonItem? donodare 2009-11-16T18:02:39Z 2009-11-16T18:25:07Z <p>After pushViewController, how to disable the backBarButtonItem, that going back will not be possible?</p> <p>tnx :)</p> http://stackoverflow.com/questions/1708248/feedback-service-for-push-notification 1 Feedback service for Push notification Davidson Samuel 2009-11-10T14:11:05Z 2009-11-16T17:48:54Z <p>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...</p> <p>regards, DD. </p> <p> <p>$ctx = stream_context_create(); stream_context_set_option($ctx, 'ssl', 'local_cert', 'ck.pem');</p> <p>// Set time limit to indefinite execution set_time_limit (0); </p> <p>// Set the ip and port we will listen on $address = 'ssl://feedback.sandbox.push.apple.com'; $port = 2196; </p> <p>// Create a TCP Stream socket $sock = socket_create(AF_INET, SOCK_STREAM, SOL_TCP); echo "PHP Socket Server started at " . $address . " " . $port . "\n";</p> <p>// Bind the socket to an address/port socket_bind($sock, $address, $port) or die('Could not bind to address'); // Start listening for connections socket_listen($sock); </p> <p>//loop and listen</p> <p>while (true) { /* Accept incoming requests and handle them as child processes */ $client = socket_accept($sock); </p> <pre><code>// Read the input from the client – 1024 bytes $input = socket_read($client, 1024); </code></pre> <p>}</p> <p>// Close the client (child) socket socket_close($client); </p> <p>// Close the master sockets socket_close($sock);</p> <p>?></p> http://stackoverflow.com/questions/1733910/git-pull-with-local-changes 1 git pull with local changes Jasper Tandy 2009-11-14T10:35:30Z 2009-11-14T12:58:36Z <p>I think I might be asking something weird/wrong here, but I'm new to git so bear with me!</p> <p>I have a development clone and a live clone of a git repository, pushing from development and pulling to live. I'm having a problem in that configuration files need to be changed once they get to the live working copy. This was all working fine until I changed the structure of one of my configuration files - when I went to pull it down, there were 2 problems:</p> <ol> <li>my configuration file wasn't up-to-date, so the changes couldn't be pulled to that particular file (I was expecting that things would just be merged)</li> <li>I then tried to git pull again, and saw that everything was up-to-date, when viewing the file showed that it clearly wasn't up-to-date.</li> </ol> <p>There's probably something fundamental I'm not understanding about how git works - is it best to create a live branch for modifying configuration files, then merging after pulling to master, or is there a way around this I'm not seeing?</p> <p>Thanks</p> http://stackoverflow.com/questions/1527113/can-i-use-push-notification-for-this 1 Can I use Push Notification for this Aler 2009-10-06T17:56:22Z 2009-11-12T08:08:44Z <p>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 asking to do this task.</p> <p>Can I use Push Notification to <strong><em>silently (without any alert view popup, sound or anything else)</em></strong> do some task in my app in some constant time everyday even if it's not running?</p> <p>thx</p> http://stackoverflow.com/questions/1714663/examples-of-web-sites-using-ajax-or-push-technology-on-their-home-page-or-other 0 Examples of Web Sites Using AJAX or Push Technology on Their Home Page (or other useful pages) purefusion 2009-11-11T11:42:28Z 2009-11-11T11:48:39Z <p>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 elements. </p> <p>Ideal examples would be sites that update somewhat frequently (every 10-90 seconds) rather than very frequently (every 1-5 seconds) nor just occasionally (beyond 90 seconds). Subject matter is not important as long as it's clean. I just want to demonstrate the concept using well-executed examples.</p> <p>Samples might include: * Counters, such as live visitor or goal/progress trackers * Timers/Countdowns that might reset periodically * Data updates such as live headlines, posts, blog comments or others * Any other AJAX/COMET examples you have seen that are really well done</p> <p>I do like Digg's Labs demos, but they are all Flash. I would like only non-flash examples though.</p> <p>Thanks!</p> http://stackoverflow.com/questions/1708457/can-a-native-blackberry-application-not-midlet-use-midp-push-registry 0 Can a native Blackberry application (not MIDlet) use MIDP Push Registry? Kiran Kuppa 2009-11-10T14:43:05Z 2009-11-10T14:43:05Z <p>If I am writing a MIDlet, and if the device supports SMS push registration (i.e. supports WMA 1.1 spec), I will be able to send push messages to the application that is installed on the phone and is listening to SMS messages at the assigned port. </p> <p>However, if I am writing a Blackberry application, can I still go ahead and use the procedure that applies to MIDP 2.0 devices. If so, can I specify static SMS push registration in JAD file, as we do for a MIDlet? Would the appropriate JAD property be still specified as MIDlet-Push-1:{}?</p> <p>Another question, that is not totally unrelated is- are there any bulk SMS providers that allow SMS bearers specify the destination ports that can be integrated with this kind of a solution?</p> <p>Thanks</p> http://stackoverflow.com/questions/1700239/how-to-do-push-from-clone-repository-to-remote-server-respository-using-http-ssh 1 How to do push from clone repository to Remote server respository using http/ssh protocol? praveen 2009-11-09T10:34:16Z 2009-11-09T19:57:43Z <p>I have following windows configuration:</p> <p>Windows machine "A" has mercurial repository. hg server is running on "A" http</p> <p>I created clone of "A" on windows machine "B" After adding and commitng my changes in to clone, I want to push these changes to machine "A". Tried TortoiseHg: synchronize -> Push option, but getting below error:</p> <pre><code>pushing to http://praveen@IP Addr:8001/ searching for changes 1 changesets found ssl required [command returned code 1] </code></pre> <p>Then I did below changes in the machine "A" /.hg/hgrc file </p> <pre><code> [web] push_ssl = False allow_push = * </code></pre> <p>and again I tried hg push from machine "B" but getting same error.</p> <p>can anyone solve my problem.</p> <p>Thanks in Advance.</p> <p>Praveen</p> http://stackoverflow.com/questions/1460304/problem-registering-push-notifications-help 0 Problem registering Push Notifications. HELP!!! unknown (google) 2009-09-22T14:03:18Z 2009-11-07T11:04:56Z <p>Hello, I've recently started developing iphone applications for a project at school and I've been having some problems testing push notifications. I've read I need to get some SSL certificate from the program portal, but I cannot find the link AppID where I am supposed to get them. Is it really necesary even though I am just starting out making some tests in XCode? What else do I need to run push notifications? I've started coding the client side, but I cannot register for remote notifications. (I run registerForRemoteNotificationTypes:..., but it cannot register) I think it is because I don´t have the certificates, but I really don´t know.</p> <p>Thanks!!</p> http://stackoverflow.com/questions/1654596/push-different-views-from-a-top-level-table-view-in-iphone-sdk 0 Push different views from a top-level table view in iPhone SDK Maxwell Segal 2009-10-31T14:47:37Z 2009-10-31T16:18:16Z <p>I have a grouped tableview that then tries to push a new view depending on which cell is selected. The issue is, that cells drill-down to views that are not necessarily tables - thus using coding examples from the reference books available is not that helpful - the views I'm trying to push are webview, tableview, textview etc.</p> <p>I have obviously set up the views's "h" and "m" files incorrectly, or perhaps the XIB files, and need a little advice.</p> <p>I'm pushing the new view's controller and NIB from rootviewcontroller - is this correct? The top-level view is a UITableView but this view below which I'm calling is a UIView - text entry screen??</p> <p><code><pre> tyresController = [[TyresViewController alloc] initWithNibName: @"TyresView" bundle: nil]; tyresController.title = @"Tyre pressures"; [self.navigationController pushViewController: tyresController animated: YES]; [tyresController release]; </pre></code> When the cell is selected the program crashes. Here's the view's header -</p> <p><code><pre> #import </p> <p>@interface TyresViewController : UIViewController { IBOutlet TyresViewController *tyresController; IBOutlet UIView *tyresView; }</p> <p>-(void) save: (id) sender; @end </pre></code> AND TyresViewController.m file -</p> <p><code><pre> #import "TyresViewController.h" @implementation TyresViewController </pre></code> <hr /></p> <p>Thanks in advance Maxwell</p> http://stackoverflow.com/questions/1649284/live-updates-in-website-streamerapi 0 Live updates in website? (streamerapi) Miau 2009-10-30T11:30:14Z 2009-10-30T11:46:25Z <p>hi all:</p> <p>I was in <a href="http://finance.yahoo.com/" rel="nofollow">http://finance.yahoo.com/</a> and checked the europe tab ( markets are open here atm) you ll see trades updating <strong>live</strong>, I went to firebug to the Net tab and there was no updates... so I wonder how are they doing that? I can see there is a streamerapi.finance.yahoo.com that actually makes fiddler throw an error.</p> <p>Anyone knows anything else about this live update?</p> <p>Really interested in this, would really like to know if they are constantly polling , the updates seem to happen at irregular intervals</p> <p>found some info <a href="http://blog.underdog-projects.net/tag/streaming-api/" rel="nofollow">here</a> Please note my interest is on the seeminly <strong>push</strong> aspect of it ( ie view is updated when there is new information)</p> <p>Cheers</p> http://stackoverflow.com/questions/1627414/net-apple-push-notification-service-provider 1 .Net Apple Push Notification service Provider? jtrim 2009-10-26T21:24:09Z 2009-10-27T04:04:45Z <p>I started to write a provider for APNs in .Net today, and it seems I've hit a brick wall...</p> <p>Everything I'm finding about securing sockets says that a System.Net.Sockets.Socket cannot implement SSL. I'm fairly new to raw sockets programming...does anyone know of a way to connect a raw socket to a server over SSL?</p>