I want to implement push notification for an android app compatible for 2.1. I have gone through the article by Anton Lopyrev. Really Small Message Broker by IBM is ok for me. But the server side of the app is developed in ASP.net. So I have to replaced the drop-in PHP library named S开发者_如何转开发AM
. Is there any way to implement to use MQTT (Really Small Message Broker or Mosquitto)
using ASP.net?
Wonder if you really need to use that at all...
Why not going with Amazon Simple Queue Service instead of trying to make all that work with pieces and bites from a lot of places?
Amazon Simple Queue Service (SQS) and Amazon SNS are both messaging services within AWS, which provide different benefits for developers. Amazon SNS allows applications to send time-critical messages to multiple subscribers through a “push” mechanism, eliminating the need to periodically check or “poll” for updates.
As (you don't say, I'm just assuming) Really Small Message Broker can not be hosted in a Shared Hosted and you will probably have seveal issues on set everything up correctly.
精彩评论