Sunday, April 5, 2015

networking - How is WhatsApp able to receive messages when not in use?


I'm curious about how WhatsApp is able to receive messages when not in use.


I mean, I understand that WhatsApp works using the Internet connection rather than the cellphone network. Imagine that I haven't touched my phone in hours. At that moment, a friend sends me a message on WhatsApp. I get it immediately. Does that mean that WhatsApp is keeping the Internet connection connected at all times? Does that mean that WhatsApp acts as a server, opening ports on the phone? Or maybe a long-running HTTP request?



Answer



At first, I thought this was most likely an instance of Android cloud to device messaging, but it can't be: WhatsApp doesn't declare the necessary permissions, and it works in Eclair (Android 2.1), while cloud to device messaging (and its replacement, Google Cloud Messaging) require at least Froyo (Android 2.2).


However, it is most likely some sort of push notification service. It's impossible to say exactly how it's implemented without access to WhatsApp's source code.


The part about it being able to receive messages when not in use is relatively easy to explain, though. The app almost certainly has a service which runs in the background to check in with the server periodically (or receive the server push, or whatever it does). When you receive a message, the service pops up a notification.



As for the question as to how the server could do a push, here's a possibility (again, I can't verify without source code):



  1. WhatsApp starts and opens two sockets: One to listen on and one to send a message to the server.

  2. WhatsApps starts listening on the first socket.

  3. WhatsApp sends a message containing your phone number and the port of the listening socket to the server and waits for an acknowledgement.

  4. The server records the phone and port numbers in the message and the IP address that the message came from.

  5. The server sends an acknowledgement to the app.

  6. The app receives the acknowledgement and closes the message socket.

  7. A message with your phone number as the destination comes into the server.

  8. The server uses the IP address and port number it has associated with your phone number and uses that information to push the message to your phone.



For this to work, the app would need to monitor the state of the network connection and reset the listening socket / resend the registration message when necessary (if the IP address changes, for example).


No comments:

Post a Comment

samsung galaxy s 2 - Cannot restore Kies backup after firmware upgrade

I backed up my Samsung Galaxy S2 on Kies before updating to Ice Cream Sandwich. After the upgrade I tried to restore, but the restore fails ...