up vote 2 down vote favorite
1
share [g+] share [fb]

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.

link|improve this question

71% accept rate
feedback

4 Answers

up vote 1 down vote accepted

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

link|improve this answer
feedback

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

link|improve this answer
feedback

What do you mean with "notifications"? There are "events" in .NET you know...

link|improve this answer
I don't think that's what he's talking about :) – Torbjørn Dec 3 '08 at 9:10
Me neither, but what is it then? – Vilx- Dec 3 '08 at 9:51
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.