Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a library for notification/alert in .NET?

I need to design a notifications framework written solely in .Net. I was wondering is there were some libraries already available to ease in creating rules for the notifications.

PS: Anything other than SQL Server Notifications please.

Note: Notifications as in Emails and SMS notifications.

like image 667
sajidnizami Avatar asked Dec 03 '08 08:12

sajidnizami


2 Answers

I think it's worth looking to frameworks like Windows Live Alerts: http://dev.live.com/alerts/

like image 180
Sergiu Damian Avatar answered Sep 22 '22 00:09

Sergiu Damian


I'm sort of shopping around for some solutions as well. If understand you correctly, you want to do what is also called "Publish/Subscribe." This can also be done with something called an "Enterprise Service Bus." There are other methods like MSMQ and so forth. There are some articles in Patterns and Practices on doing Publish/Subscribe and building an ESB with WCF.

Here's a blog post discussing rolling your own ESB with WCF:

http://www.iserviceoriented.com/blog/post/Building+Our+Own+ESB+-+Publish+Subscribe+Part+1.aspx

Juval Löwy's book: Programming WCF also has some discussion of doing Publish Subscribe in WCF.

http://www.amazon.com/Programming-WCF-Services-Juval-Lowy/dp/0596526997

like image 43
BobbyShaftoe Avatar answered Sep 21 '22 00:09

BobbyShaftoe