0

i m developing one application in that one user create one task and that notify to other users which are connected to that user so windows azure provide any notification service to implement this functionality?

user552300
  • 47
  • 1
  • 4

2 Answers2

1

Azure does not provide a mail relay service, but it does support the SMTP protocol and sending e-mail through external services ; here are a few options:

tomconte
  • 1,008
  • 8
  • 12
1

This question is suspiciously similarly phrased to this one. The answer is, there are no notification services that would provide the functionality you seek out of the box.

It also links to the following answers:

As for the notification service it depends on what you mean by notification. If you want to also pop-up a message, e.g. for chat, or a response to a query, your best bet would be to implement a storage-backed (e.g. Session store with a session state provider, or Azure Tables, even Azure SQL would do) and either print waiting notifications on each page refresh, or better yet, do that with an Ajax call. Take a look at his Stack Overflow question for some suggestions.

On a side note, if you mean notification of services, e.g. a mailer, or something else, that should fire when a user performs certain actions, you can implement the basic functionality using Azure Queues, or Azure AppFabric if you need more advanced stuff.

Community
  • 1
  • 1
Anže Vodovnik
  • 2,304
  • 16
  • 25