Is there a library for notification/alert in .NET? - Stack Overflow most recent 30 from stackoverflow.com2009-11-22T19:52:17Zhttp://stackoverflow.com/feeds/question/336526http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/336526/is-there-a-library-for-notification-alert-in-net2Is there a library for notification/alert in .NET?sajid.nizami2008-12-03T08:48:54Z2008-12-03T12:35:42Z
<p>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. </p>
<p>PS: Anything other than SQL Server Notifications please. </p>
<p>Note: Notifications as in Emails and SMS notifications. </p>
http://stackoverflow.com/questions/336526/is-there-a-library-for-notification-alert-in-net/336532#3365320Answer by Vilx- for Is there a library for notification/alert in .NET?Vilx-2008-12-03T08:50:57Z2008-12-03T08:50:57Z<p>What do you mean with "notifications"? There are "events" in .NET you know...</p>
http://stackoverflow.com/questions/336526/is-there-a-library-for-notification-alert-in-net/336571#3365710Answer by BobbyShaftoe for Is there a library for notification/alert in .NET?BobbyShaftoe2008-12-03T09:13:56Z2008-12-03T09:13:56Z<p>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.</p>
<p>Here's a blog post discussing rolling your own ESB with WCF:</p>
<p><a href="http://www.iserviceoriented.com/blog/post/Building+Our+Own+ESB+-+Publish+Subscribe+Part+1.aspx" rel="nofollow">http://www.iserviceoriented.com/blog/post/Building+Our+Own+ESB+-+Publish+Subscribe+Part+1.aspx</a></p>
<p>Juval Löwy's book: Programming WCF also has some discussion of doing Publish Subscribe in WCF.</p>
<p><a href="http://rads.stackoverflow.com/amzn/click/0596526997" rel="nofollow">http://www.amazon.com/Programming-WCF-Services-Juval-Lowy/dp/0596526997</a></p>
http://stackoverflow.com/questions/336526/is-there-a-library-for-notification-alert-in-net/336639#3366390Answer by Mike Two for Is there a library for notification/alert in .NET?Mike Two2008-12-03T09:34:16Z2008-12-03T09:34:16Z<p>does this <a href="http://stackoverflow.com/questions/40177/notification-api-for-windows">http://stackoverflow.com/questions/40177/notification-api-for-windows</a> help?</p>
http://stackoverflow.com/questions/336526/is-there-a-library-for-notification-alert-in-net/336945#3369452Answer by Sergiu Damian for Is there a library for notification/alert in .NET?Sergiu Damian2008-12-03T12:20:44Z2008-12-03T12:20:44Z<p>I think it's worth looking to frameworks like Windows Live Alerts: <a href="http://dev.live.com/alerts/" rel="nofollow">http://dev.live.com/alerts/</a></p>